/* ============================================================
   Rise Shine Explore — Premium Redesign
   Palette: Forest #1B3A2D · Gold #C9A84C · Blush #E8C4B8
            Terracotta #B85C38 · Cream #FDF8F3 · Plum #3D1F35
   Fonts: Cormorant Garamond (headings) · Lato (body)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --forest:           #1B3A2D;
  --forest-mid:       #2A4A3D;
  --forest-light:     #3D6B58;

  --gold:             #C9A84C;
  --gold-light:       #E8D5A0;
  --gold-pale:        rgba(201, 168, 76, 0.13);
  --gold-dark:        #A8893A;

  --blush:            #E8C4B8;
  --blush-dark:       #D4A090;

  --terracotta:       #B85C38;
  --terracotta-dark:  #8B4228;
  --terracotta-light: #D4875A;

  --cream:            #FDF8F3;
  --cream-dark:       #F2EAE0;
  --cream-deeper:     #E8DDD2;

  --plum:             #3D1F35;
  --plum-light:       #5A3050;
  --plum-pale:        rgba(61, 31, 53, 0.08);

  --white:            #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  --nav-height:    76px;
  --section-pad:   clamp(72px, 9vw, 136px);
  --container-max: 1200px;
  --container-pad: clamp(20px, 5vw, 64px);

  --shadow-sm:  0 2px 12px rgba(27, 58, 45, .08);
  --shadow-md:  0 6px 28px rgba(27, 58, 45, .13);
  --shadow-lg:  0 12px 56px rgba(27, 58, 45, .18);
  --shadow-xl:  0 24px 80px rgba(27, 58, 45, .24);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, .28);

  --radius-sm:  3px;
  --radius-md:  10px;
  --radius-lg:  24px;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.35s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--forest);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  color: var(--forest);
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.2rem); }
h3 { font-size: clamp(1.7rem, 3vw, 2.8rem); }
h4 { font-size: clamp(1.3rem, 2vw, 2rem); }
p  { font-size: 1rem; line-height: 1.82; opacity: .8; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.22rem); line-height: 1.78; opacity: .88; }

/* ---- Layout ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.section      { padding: var(--section-pad) 0; }
.section--alt { background: var(--cream-dark); }
.section--dark {
  background: var(--forest);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4  { color: var(--cream); }
.section--dark p   { color: var(--cream); opacity: .68; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(52px, 7vw, 100px);
}
.section-header h2 { margin-bottom: 20px; }
.section-header p  { font-size: 1.1rem; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(253, 248, 243, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, .15);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 4px 32px rgba(27, 58, 45, .16), 0 1px 0 rgba(201,168,76,.18);
}

.nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--forest);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.nav__logo .tilde { color: var(--gold); margin: 0 6px; font-style: italic; }
.nav__logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: .78rem;
  letter-spacing: .07em;
  color: var(--forest);
  opacity: .58;
  transition: all var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover,
.nav__links a.active { opacity: 1; color: var(--forest); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__lang {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--forest);
  background: transparent;
  border: 1.5px solid var(--gold);
  padding: 6px 16px;
  border-radius: 30px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav__lang:hover {
  background: var(--gold);
  color: var(--forest);
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(201,168,76,.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 85% 15%, rgba(201,168,76,.10) 0%, transparent 50%),
    linear-gradient(158deg, rgba(27,58,45,0.64) 0%, rgba(37,62,53,0.56) 35%, rgba(61,31,53,0.70) 70%, rgba(44,21,40,0.74) 100%),
    url("../images/oahu/oahu-01.jpg") center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(201,168,76,.06) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 65%, rgba(201,168,76,.06) 0 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(transparent, rgba(27,58,45,.06));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px var(--container-pad) 110px;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0;
  opacity: .9;
}
/* Gold line under eyebrow */
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-top: 14px;
  margin-bottom: 28px;
  opacity: .7;
}

/* Staggered cinematic title */
.hero__title {
  font-family: var(--font-heading);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 28px;
  max-width: 900px;
}
.hero__title .line { display: block; }
.hero__title .line--italic {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  color: var(--gold-light);
  opacity: .95;
}
.hero__title .line--bold {
  font-style: normal;
  font-weight: 600;
  font-size: clamp(5.2rem, 11vw, 10.5rem);
  color: var(--cream);
  letter-spacing: -.01em;
  line-height: .92;
}
.hero__title .line--light {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  color: var(--blush);
  opacity: .88;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 22px;
  opacity: .8;
  letter-spacing: .04em;
}
.hero__desc {
  max-width: 500px;
  color: var(--cream);
  opacity: .65;
  font-size: 1rem;
  margin-bottom: 52px;
  line-height: 1.82;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(201,168,76,.45);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(201,168,76,.3), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1;
}

/* Gold primary — main CTA */
.btn--primary {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* Gold outline — on dark backgrounds */
.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, .5);
}
.btn--outline:hover {
  background: rgba(201,168,76,.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* Forest outline — on light backgrounds */
.btn--outline-brown {
  background: transparent;
  color: var(--forest);
  border-color: rgba(27, 58, 45, .35);
}
.btn--outline-brown:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Sage / forest fill — kept for variety */
.btn--sage {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn--sage:hover {
  background: var(--forest-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Terracotta ghost — on light backgrounds */
.btn--ghost {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn--ghost:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184,92,56,.32);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: .38;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

/* ---- Intro Strip ---- */
.intro-strip {
  background: var(--gold);
  padding: 38px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.intro-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(253,248,243,.12) 50%, transparent 100%);
  pointer-events: none;
}
.intro-strip__text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  color: var(--forest);
  font-style: italic;
  letter-spacing: .06em;
  position: relative;
  z-index: 1;
}
.intro-strip__text .dot { opacity: .45; margin: 0 16px; font-style: normal; }

/* ---- Pillars ---- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: clamp(52px, 6vw, 88px) clamp(36px, 4vw, 60px);
  text-align: center;
  background: var(--white);
  border-top: 4px solid var(--gold);
  border-right: 1px solid rgba(201,168,76,.14);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar:last-child { border-right: none; }
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

/* Watermark letter — per pillar class */
.pillar--rise::before,
.pillar--shine::before,
.pillar--explore::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 10rem;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  opacity: .08;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.pillar--rise::before    { content: 'R'; }
.pillar--shine::before   { content: 'S'; }
.pillar--explore::before { content: 'E'; }

.pillar__letter {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
  position: relative;
}
.pillar--rise    .pillar__letter { color: var(--terracotta); }
.pillar--shine   .pillar__letter { color: var(--gold-dark); }
.pillar--explore .pillar__letter { color: var(--forest); }

.pillar__word {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  position: relative;
  color: var(--forest);
}
.pillar p { font-size: .92rem; max-width: 260px; margin: 0 auto; position: relative; }

/* ---- Feature Block ---- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.feature--reverse { direction: rtl; }
.feature--reverse > * { direction: ltr; }

.feature__visual {
  overflow: hidden;
  min-height: 420px;
  position: relative;
}
.feature__visual::after {
  content: none;
}
.feature__placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__placeholder svg { opacity: .18; }
.feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 6vw, 100px) clamp(44px, 5vw, 84px);
  background: var(--cream-dark);
}
.feature__content h2 { margin-bottom: 24px; }
.feature__content p  { margin-bottom: 14px; }
.feature__content .btn { align-self: flex-start; margin-top: 32px; }

/* ---- Retreat Cards ---- */
.retreat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.retreat-grid > article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 16px);
}
.retreat-card {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.retreat-card::before { content: none; }

.retreat-card__image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 4px;
}
.retreat-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.retreat-card__image .retreat-card__icon {
  display: none;
}
.retreat-card:hover .retreat-card__image img {
  transform: scale(1.04);
}

.retreat-card__info {
  padding: 16px 0 0;
  text-align: center;
}
.retreat-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 6px;
  font-weight: 500;
}
.retreat-card__date {
  font-family: var(--font-body);
  font-size: .95rem;
  color: #555;
  font-weight: 400;
}

/* ---- Quote Section ---- */
.quote-section {
  padding: var(--section-pad) var(--container-pad);
  background: var(--plum);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(201,168,76,.06) 0%, transparent 50%);
  pointer-events: none;
}
/* Large decorative opening quote */
.quote-section blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: var(--cream);
  font-style: italic;
  font-weight: 300;
  max-width: 860px;
  margin: 0 auto 32px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.quote-section blockquote::before {
  content: '\201C';
  font-size: 9rem;
  color: var(--gold);
  opacity: .35;
  position: absolute;
  top: -32px;
  left: -10px;
  line-height: 1;
  font-family: var(--font-heading);
  pointer-events: none;
}
.quote-section blockquote::after {
  content: '\201D';
  font-size: 9rem;
  color: var(--gold);
  opacity: .35;
  position: absolute;
  bottom: -60px;
  right: -10px;
  line-height: 1;
  font-family: var(--font-heading);
  pointer-events: none;
}
.quote-section cite {
  font-size: .68rem;
  color: var(--gold-light);
  letter-spacing: .24em;
  text-transform: uppercase;
  font-style: normal;
  position: relative;
  z-index: 1;
  opacity: .85;
}
.quote-section cite::before {
  content: '— ';
  opacity: .6;
}

/* ---- CTA Band ---- */
.cta-band {
  padding: var(--section-pad) var(--container-pad);
  text-align: center;
  background: linear-gradient(135deg, var(--terracotta) 0%, #7A2E40 55%, var(--plum) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201,168,76,.1) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 {
  color: var(--cream);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.cta-band p {
  max-width: 540px;
  margin: 0 auto 40px;
  font-size: 1.06rem;
  color: var(--cream);
  opacity: .8;
  position: relative;
  z-index: 1;
}
.cta-band .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---- Page Hero ---- */
.page-hero {
  padding: calc(var(--nav-height) + 80px) var(--container-pad) 80px;
  background:
    radial-gradient(ellipse 70% 60% at 90% 50%, rgba(201,168,76,.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(184,92,56,.08) 0%, transparent 50%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-bottom: 1px solid rgba(201,168,76,.18);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--container-pad);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.page-hero__inner { max-width: var(--container-max); margin: 0 auto; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero .lead { max-width: 640px; }

/* ---- Ornamental Divider ---- */
.ornamental-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 52px 0;
}
.ornamental-divider::before,
.ornamental-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.35), transparent);
}
.ornamental-divider span {
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  opacity: .65;
  white-space: nowrap;
}

/* ---- Brand Story ---- */
.brand-story { max-width: 860px; margin: 0 auto; }
.brand-pillar { margin-bottom: 68px; display: grid; grid-template-columns: 88px 1fr; gap: 36px; align-items: start; }
.brand-pillar__letter {
  font-family: var(--font-heading);
  font-size: 6rem;
  font-style: italic;
  font-weight: 300;
  line-height: .88;
  color: var(--terracotta);
}
.brand-pillar--shine .brand-pillar__letter  { color: var(--gold-dark); }
.brand-pillar--explore .brand-pillar__letter { color: var(--forest); }

.brand-pillar__title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--forest);
}
.brand-pillar__desc { font-size: 1.02rem; line-height: 1.82; }

.signature {
  text-align: center;
  padding: 52px 0 0;
  border-top: 1px solid rgba(201,168,76,.22);
}
.signature__text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-style: italic;
  color: var(--forest);
  font-weight: 300;
}
.signature__sub {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .48;
  margin-top: 12px;
  display: block;
  color: var(--forest);
}

/* ---- Team Cards ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 52px;
}
.team-card { text-align: center; }
.team-card__avatar {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(201,168,76,.1);
  position: relative;
  transition: all var(--transition);
}
.team-card:hover .team-card__avatar {
  box-shadow: var(--shadow-xl), 0 0 0 12px rgba(201,168,76,.14);
  transform: translateY(-4px);
}
.team-card__avatar-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card__initials {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-style: italic;
  color: rgba(253,248,243,.75);
  font-weight: 300;
  letter-spacing: .06em;
  user-select: none;
}
.team-card__name {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
  margin-bottom: 6px;
  color: var(--forest);
}
.team-card__role {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: block;
}
.team-card__location {
  font-size: .82rem;
  color: var(--forest-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: .8;
}
.team-card__location svg { flex-shrink: 0; }
.team-card__bio { font-size: .92rem; line-height: 1.8; max-width: 340px; margin: 0 auto; }

/* ---- Gallery ---- */
.gallery-notice {
  background: var(--cream-dark);
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 40px;
}
.gallery-notice p { font-size: .92rem; opacity: .8; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.tall   { grid-row: span 2; }

.gallery-item__bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: top;
  transition: transform .65s var(--ease-out);
}
.gallery-item__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.gallery-item:hover .gallery-item__bg { transform: scale(1.06); }
.gallery-item__icon { font-size: 2.8rem; opacity: .18; }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item__overlay { background: rgba(27,58,45,.18); }

.gallery-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 14px;
  background: linear-gradient(transparent, rgba(27,58,45,.65));
  color: rgba(253,248,243,.92);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ---- Contact ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
}
.contact-info__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 14px;
  color: var(--forest);
}
.contact-info__intro { margin-bottom: 40px; font-size: 1.02rem; }

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}
.contact-info__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-deeper);
  border: 1px solid rgba(201,168,76,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.contact-info__item:hover .contact-info__icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}
.contact-info__text { padding-top: 4px; }
.contact-info__text strong {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.contact-info__text span { font-size: .92rem; opacity: .8; line-height: 1.65; }
.contact-info__text a { transition: color var(--transition); opacity: .8; font-size: .92rem; }
.contact-info__text a:hover { color: var(--terracotta); opacity: 1; }

/* ---- Form ---- */
.form-wrap {
  background: var(--white);
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}
.form-wrap h3 { margin-bottom: 8px; color: var(--forest); }
.form-wrap .form-intro { font-size: .92rem; margin-bottom: 32px; opacity: .7; }

.form__group { margin-bottom: 22px; }
.form__label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
  opacity: .7;
}
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(27, 58, 45, .16);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--forest);
  background: var(--cream);
  outline: none;
  transition: all var(--transition);
  -webkit-appearance: none;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.14);
}
.form__input::placeholder,
.form__textarea::placeholder { opacity: .36; color: var(--forest); }
.form__textarea { min-height: 130px; resize: vertical; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__submit { width: 100%; padding: 17px; margin-top: 8px; font-size: .8rem; }
.form__note { font-size: .76rem; opacity: .44; text-align: center; margin-top: 16px; line-height: 1.6; }

/* ---- Instagram CTA ---- */
.instagram-cta {
  text-align: center;
  padding: 80px var(--container-pad);
  background: var(--cream-dark);
}
.instagram-cta .eyebrow { margin-bottom: 10px; }
.instagram-cta h2 { margin-bottom: 16px; }
.instagram-cta p { max-width: 520px; margin: 0 auto 20px; }
.instagram-cta__handle {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--terracotta);
  font-style: italic;
  display: block;
  margin: 8px 0 28px;
  transition: all var(--transition);
  letter-spacing: .02em;
}
.instagram-cta__handle:hover {
  color: var(--gold-dark);
  transform: scale(1.02);
}

/* ---- Highlights List ---- */
.highlights-list { margin: 0; }
.highlights-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: .9rem;
  opacity: .82;
  border-bottom: 1px solid var(--cream-deeper);
  line-height: 1.55;
  color: var(--forest);
  transition: all var(--transition);
}
.highlights-list li:last-child { border-bottom: none; }
.highlights-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: .82rem;
}
.highlights-list li:hover { opacity: 1; padding-left: 36px; }

/* ---- Status Band ---- */
.status-band {
  padding: 14px 24px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
}
.status-band--soldout  { background: #C0392B; color: #fff; }
.status-band--upcoming { background: var(--gold); color: var(--forest); }
.status-band--waitlist { background: var(--blush); color: var(--forest); }

/* ---- Footer ---- */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 0 40px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--terracotta) 50%, var(--gold) 100%);
}
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(201,168,76,.12);
  margin-bottom: 36px;
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--cream);
  display: block;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.footer__logo .tilde { color: var(--gold); margin: 0 6px; font-style: italic; }
.footer__brand p { font-size: .87rem; opacity: .48; color: var(--cream); max-width: 300px; line-height: 1.78; }

.footer__col-title {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  display: block;
  opacity: .85;
}
.footer__col ul li { margin-bottom: 11px; }
.footer__col ul li a {
  font-size: .84rem;
  opacity: .46;
  color: var(--cream);
  transition: all var(--transition);
}
.footer__col ul li a:hover { opacity: 1; color: var(--gold-light); padding-left: 4px; }

.footer__contact-item {
  font-size: .84rem;
  opacity: .46;
  color: var(--cream);
  margin-bottom: 9px;
  line-height: 1.5;
  transition: opacity var(--transition);
}
.footer__contact-item a { color: var(--cream); transition: all var(--transition); }
.footer__contact-item a:hover { color: var(--gold-light); opacity: 1; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy { font-size: .74rem; opacity: .28; color: var(--cream); }
.footer__social { display: flex; gap: 20px; }
.footer__social a {
  font-size: .74rem;
  opacity: .36;
  color: var(--cream);
  letter-spacing: .08em;
  transition: all var(--transition);
}
.footer__social a:hover { opacity: 1; color: var(--gold-light); }

/* ---- Gradient Placeholders — updated to new palette ---- */
.grad-hero    { background: linear-gradient(135deg, #1B3A2D 0%, #2A4A3D 45%, #3D1F35 100%); }
.grad-sedona  { background: linear-gradient(135deg, #B85C38 0%, #E8916A 40%, #8B3A0E 100%); }
.grad-zion    { background: linear-gradient(135deg, #D4875A 0%, #B85C38 45%, #8B5E38 100%); }
.grad-olympic { background: linear-gradient(135deg, #1B3A2D 0%, #3D6B58 55%, #2A4A3D 100%); }
.grad-tba     { background: linear-gradient(135deg, #3D1F35 0%, #5A3050 40%, #1B3A2D 100%); }
.grad-asia       { background: linear-gradient(135deg, #B85C38 0%, #D4875A 100%); }
.grad-magdalena  { background: linear-gradient(135deg, #1B3A2D 0%, #3D6B58 100%); }
.grad-ela        { background: linear-gradient(135deg, #B85C38 25%, #3D1F35 100%); }

/* Gallery gradients — warmed up */
.grad-g1 { background: linear-gradient(135deg, #8B3A0E 0%, #D4875A 50%, #B85C38 100%); }
.grad-g2 { background: linear-gradient(135deg, #B85C38 0%, #D4956A 60%, #8B4513 100%); }
.grad-g3 { background: linear-gradient(135deg, #7A2A0A 0%, #B85C38 50%, #E0A882 100%); }
.grad-g4 { background: linear-gradient(135deg, #D4875A 0%, #B85C38 50%, #C47850 100%); }
.grad-g5 { background: linear-gradient(135deg, #C4875A 0%, #B85C38 40%, #8B6347 100%); }
.grad-g6 { background: linear-gradient(135deg, #B85C38 0%, #D4875A 60%, #C47850 100%); }
.grad-g7 { background: linear-gradient(135deg, #1B3A2D 0%, #3D6B58 55%, #2A4A3D 100%); }
.grad-g8 { background: linear-gradient(135deg, #2A4A3D 0%, #1B3A2D 50%, #3D6B58 100%); }
.grad-g9 { background: linear-gradient(135deg, #3D6B58 0%, #2A4A3D 50%, #1B3A2D 100%); }
.grad-g10{ background: linear-gradient(135deg, #B85C38 0%, #3D1F35 50%, #1B3A2D 100%); }
.grad-g11{ background: linear-gradient(135deg, #3D1F35 0%, #5A3050 50%, #B85C38 100%); }
.grad-g12{ background: linear-gradient(135deg, #1B3A2D 0%, #3D1F35 50%, #3D6B58 100%); }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp .75s var(--ease-out) both; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
.delay-4 { animation-delay: .48s; }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse { direction: ltr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .contact-layout { gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(201,168,76,.18);
    padding: 20px var(--container-pad) 28px;
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-lg);
  }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(201,168,76,.1);
    font-size: .95rem;
  }
  .nav__links a::after { display: none; }
  .nav__hamburger { display: flex; }
  .nav__container { gap: 12px; }
  .nav__lang { margin-left: auto; }
  .pillars { grid-template-columns: 1fr; }
  .pillar {
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,.14);
  }
  .pillar:last-child { border-bottom: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .retreat-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.span-2 { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .form__row { grid-template-columns: 1fr; }
  .brand-pillar { grid-template-columns: 64px 1fr; gap: 22px; }
  .brand-pillar__letter { font-size: 4.2rem; }
  .quote-section blockquote::before,
  .quote-section blockquote::after { font-size: 6rem; opacity: .25; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .intro-strip::before, .intro-strip::after { display: none; }
}
