/* =========================================================
   Vista Isle Apartments — coastal editorial design system
   Type:  Cormorant Garamond (display serif) + Hanken Grotesk (body)
   Color: deep teal / soft teal-blue / warm sand / cream
   ========================================================= */

:root {
  --cream:      #f8f3ea;
  --cream-2:    #fdfaf3;
  --paper:      #fffdf8;
  --sand:       #ece0cb;
  --sand-deep:  #d9c6a4;
  --teal-deep:  #15403c;
  --teal:       #2b625b;
  --teal-soft:  #6f9b94;
  --teal-mist:  #b9cfca;
  --ink:        #23221f;
  --muted:      #6f6d64;
  --gold:       #bf9a44;
  --line:       rgba(21, 64, 60, 0.14);
  --line-soft:  rgba(21, 64, 60, 0.08);

  --shadow-sm:  0 1px 2px rgba(21,64,60,.06), 0 4px 16px rgba(21,64,60,.05);
  --shadow-md:  0 4px 14px rgba(21,64,60,.08), 0 18px 50px rgba(21,64,60,.10);
  --shadow-lg:  0 10px 30px rgba(21,64,60,.12), 0 40px 90px rgba(21,64,60,.16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  ui-monospace, "SF Mono", "Roboto Mono", Menlo, monospace;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--teal-soft);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.01em; line-height: 1.06; }
.display {
  font-size: clamp(44px, 7.6vw, 112px);
  font-weight: 500;
  line-height: 0.98;
}
.h2 { font-size: clamp(34px, 5vw, 64px); line-height: 1.02; }
.h3 { font-size: clamp(24px, 2.6vw, 34px); }
.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}
em, .ital { font-style: italic; }
.serif-ital { font-family: var(--serif); font-style: italic; font-weight: 500; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(80px, 11vw, 168px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 104px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65em;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s, box-shadow .4s, border-color .35s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal-deep); color: var(--cream-2); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #0f312e; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--teal-deep); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal-deep); background: rgba(21,64,60,.03); }
.btn--light { background: rgba(255,253,248,.96); color: var(--teal-deep); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: #fff; box-shadow: var(--shadow-md); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn .arrow { transition: transform .4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- placeholders (image drop zones) ---------- */
.ph {
  position: relative;
  background-color: var(--sand);
  background-image:
    repeating-linear-gradient(135deg, rgba(21,64,60,.05) 0 1px, transparent 1px 14px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(255,253,248,.86);
  padding: .55em .85em;
  border: 1px solid var(--line);
  border-radius: 2px;
  text-align: center;
  max-width: 80%;
  backdrop-filter: blur(2px);
}
.ph--teal { background-color: var(--teal-mist); }
.ph--deep { background-color: var(--teal); background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 14px); }
.ph--deep::after { color: var(--cream); background: rgba(21,64,60,.5); border-color: rgba(255,255,255,.22); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(248,243,234,.86);
  backdrop-filter: blur(14px) saturate(1.2);
  padding-block: 13px;
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 6px 28px rgba(21,64,60,.05);
}
.brand { display: flex; align-items: baseline; gap: .5em; line-height: 1; }
.brand__mark { font-family: var(--serif); font-size: 25px; font-weight: 600; letter-spacing: -.01em; color: var(--cream-2); transition: color .5s; }
.brand__sub { font-family: var(--sans); font-size: 9.5px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,253,248,.7); transition: color .5s; }
.nav.is-solid .brand__mark { color: var(--teal-deep); }
.nav.is-solid .brand__sub { color: var(--muted); }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-size: 14px; font-weight: 500; letter-spacing: .01em;
  color: rgba(255,253,248,.88); position: relative; padding: 4px 0;
  transition: color .4s;
}
.nav.is-solid .nav__link { color: var(--ink); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: currentColor; transition: width .35s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__phone { font-size: 14px; font-weight: 600; color: rgba(255,253,248,.9); letter-spacing: .02em; transition: color .4s; }
.nav.is-solid .nav__phone { color: var(--teal-deep); }
.nav__cta { padding: 11px 22px; font-size: 13px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--cream-2); transition: background .4s, transform .4s, opacity .3s; border-radius: 2px; }
.nav.is-solid .nav__toggle span { background: var(--teal-deep); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--teal-deep); color: var(--cream-2);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gutter);
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: 38px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-menu .mm-foot { margin-top: 28px; font-family: var(--sans); font-size: 15px; color: rgba(255,253,248,.75); display: flex; flex-direction: column; gap: 6px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: -8% 0 0 0; z-index: 0; will-change: transform; }
.hero__bg .ph { width: 100%; height: 116%; }
.hero__bg .ph::after { display: none; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(21,64,60,.42) 0%, rgba(21,64,60,.08) 32%, rgba(21,64,60,.18) 60%, rgba(21,64,60,.72) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vw, 96px); }
.hero__rating {
  display: flex; width: max-content; max-width: 100%; align-items: center; gap: 10px;
  background: rgba(255,253,248,.14); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  padding: 8px 16px 8px 12px; border-radius: 999px; margin-bottom: 26px;
  color: var(--cream-2); font-size: 13px; font-weight: 500; letter-spacing: .02em; white-space: nowrap;
}
.stars { display: inline-flex; gap: 2px; color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.hero__eyebrow { color: var(--cream-2); margin-bottom: 18px; display: flex; width: max-content; max-width: 100%; }
.hero__eyebrow::before { background: rgba(255,253,248,.7); }
.hero h1 { color: var(--cream-2); max-width: 14ch; text-shadow: 0 2px 30px rgba(21,64,60,.3); }
.hero__lead { color: rgba(255,253,248,.92); max-width: 46ch; margin: 22px 0 0; font-size: clamp(17px, 1.8vw, 21px); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin-top: 40px;
  color: rgba(255,253,248,.85); font-size: 14px; letter-spacing: .02em;
}
.hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,253,248,.6); }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,253,248,.8); font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(rgba(255,253,248,.7), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:""; position:absolute; top:-40px; left:0; width:1px; height:40px; background: var(--cream-2); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0% { top:-40px; } 60%,100% { top:40px; } }

/* =========================================================
   MARQUEE STAT STRIP
   ========================================================= */
.strip { background: var(--teal-deep); color: var(--cream); }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__cell { padding: clamp(28px,3.4vw,46px) clamp(18px,2vw,34px); border-left: 1px solid rgba(255,255,255,.1); }
.strip__cell:first-child { border-left: 0; }
.strip__num { font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); line-height: 1; color: var(--cream-2); }
.strip__num small { font-size: .5em; color: var(--teal-mist); }
.strip__lab { font-size: 13px; color: var(--teal-mist); letter-spacing: .04em; margin-top: 10px; }

/* =========================================================
   INTRO / WELCOME
   ========================================================= */
.intro { background: var(--cream); }
.intro__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.intro__copy p { margin: 22px 0 0; color: var(--muted); font-size: 18px; max-width: 52ch; }
.intro__copy .h2 { margin-top: 22px; max-width: 16ch; }
.intro__sig { margin-top: 34px; display: flex; align-items: center; gap: 16px; }
.intro__sig .ph { width: 54px; height: 54px; border-radius: 50%; }
.intro__sig .ph::after { display:none; }
.intro__sig small { font-size: 13px; color: var(--muted); display:block; }
.intro__sig strong { font-family: var(--serif); font-size: 21px; font-weight: 500; }
.intro__media { position: relative; }
.intro__media .ph { width: 100%; aspect-ratio: 4/5; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.intro__media .ph.float {
  position: absolute; width: 42%; aspect-ratio: 1; right: -6%; bottom: -8%;
  border: 8px solid var(--cream); box-shadow: var(--shadow-lg);
}

/* =========================================================
   FLOOR PLANS
   ========================================================= */
.plans { background: var(--cream-2); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: clamp(40px, 5vw, 70px); }
.section-head .h2 { max-width: 18ch; margin-top: 16px; }
.section-head p { color: var(--muted); max-width: 40ch; margin: 0; }

.plan-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.plan-tab {
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  padding: 11px 20px; border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: all .35s var(--ease); white-space: nowrap;
}
.plan-tab:hover { border-color: var(--teal-soft); }
.plan-tab.active { background: var(--teal-deep); color: var(--cream-2); border-color: var(--teal-deep); }

.plan-card {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 72px);
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 54px); box-shadow: var(--shadow-sm); align-items: center;
}
.plan-card[hidden] { display: none; }
.plan-card .plan-figure { position: relative; }
.plan-card .plan-figure .ph { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius); }
.plan-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--cream-2); color: var(--teal-deep);
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 2px; box-shadow: var(--shadow-sm);
}
.plan-info h3 { font-size: clamp(30px, 3.4vw, 46px); }
.plan-info .plan-type { font-size: 14px; color: var(--teal); font-weight: 600; letter-spacing: .03em; margin-top: 8px; }
.plan-specs { display: flex; gap: 30px; margin: 26px 0; padding: 22px 0; border-block: 1px solid var(--line-soft); }
.plan-specs .spec small { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 5px; }
.plan-specs .spec strong { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.plan-feats { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--ink); }
.plan-feats li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  background: var(--teal-mist);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315403c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}
.plan-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.plan-price { font-family: var(--serif); font-size: 21px; color: var(--teal-deep); }
.plan-price span { font-family: var(--sans); font-size: 13px; color: var(--muted); }

/* =========================================================
   AMENITIES
   ========================================================= */
.amen { background: var(--teal-deep); color: var(--cream); position: relative; overflow: hidden; }
.amen .eyebrow { color: var(--teal-mist); }
.amen .eyebrow::before { background: var(--teal-soft); }
.amen .h2 { color: var(--cream-2); }
.amen .section-head p { color: rgba(255,253,248,.7); }
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; }
.amen-card { background: var(--teal-deep); padding: clamp(26px, 3vw, 40px); transition: background .5s var(--ease); }
.amen-card:hover { background: #18504a; }
.amen-card.feature { background: #1c5650; grid-row: span 1; }
.amen-ic {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--teal-mist);
}
.amen-ic svg { width: 20px; height: 20px; }
.amen-card h3 { font-size: 24px; color: var(--cream-2); }
.amen-card p { margin: 10px 0 0; color: rgba(255,253,248,.66); font-size: 14.5px; line-height: 1.55; }
.amen-tag { display:inline-block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--cream); }
.gal-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 13vw; gap: 14px; }
.gal-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gal-item .ph { width: 100%; height: 100%; transition: transform 1.1s var(--ease); }
.gal-item:hover .ph { transform: scale(1.05); }
.gal-item::before {
  content: ""; position: absolute; inset: 0; z-index: 2; opacity: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(21,64,60,.5));
  transition: opacity .5s; pointer-events: none;
}
.gal-item:hover::before { opacity: 1; }
.gal-cap { position: absolute; left: 16px; bottom: 14px; z-index: 3; color: var(--cream-2); font-size: 13px; font-weight: 500; letter-spacing: .02em; opacity: 0; transform: translateY(6px); transition: all .5s var(--ease); }
.gal-item:hover .gal-cap { opacity: 1; transform: none; }
.g-a { grid-column: span 7; grid-row: span 2; }
.g-b { grid-column: span 5; grid-row: span 2; }
.g-c { grid-column: span 4; grid-row: span 2; }
.g-d { grid-column: span 4; grid-row: span 2; }
.g-e { grid-column: span 4; grid-row: span 2; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(13,38,35,.92); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 5vw; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox .ph { width: min(90vw, 1100px); aspect-ratio: 3/2; border-radius: 6px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 24px; right: 28px; background: none; border: 0; color: #fff; font-size: 30px; line-height: 1; }
.lightbox__cap { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; color: rgba(255,253,248,.85); font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 20px; display: grid; place-items: center; transition: background .3s; }
.lightbox__nav:hover { background: rgba(255,255,255,.2); }
.lightbox__nav.prev { left: 3vw; } .lightbox__nav.next { right: 3vw; }

/* =========================================================
   NEIGHBORHOOD
   ========================================================= */
.hood { background: var(--cream-2); }
.hood__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 5vw, 84px); align-items: center; }
.hood__map { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.hood__map .ph { width: 100%; aspect-ratio: 4/3.4; }
.hood__pin {
  position: absolute; top: 44%; left: 46%; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hood__pin .dot { width: 18px; height: 18px; border-radius: 50%; background: var(--teal-deep); border: 3px solid var(--cream-2); box-shadow: 0 0 0 6px rgba(21,64,60,.18); }
.hood__pin .tag { background: var(--cream-2); color: var(--teal-deep); font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap; }
.hood__copy .h2 { margin-top: 16px; max-width: 16ch; }
.hood__copy > p { color: var(--muted); margin: 20px 0 0; max-width: 46ch; }
.hood-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 0; }
.hood-list li { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid var(--line-soft); }
.hood-list li:last-child { border-bottom: 1px solid var(--line-soft); }
.hood-list .place { font-size: 16px; font-weight: 500; }
.hood-list .place small { display: block; font-weight: 400; color: var(--muted); font-size: 13.5px; margin-top: 2px; }
.hood-list .dist { font-family: var(--serif); font-size: 22px; color: var(--teal-deep); white-space: nowrap; }
.hood-list .dist span { font-family: var(--sans); font-size: 12px; color: var(--muted); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.test { background: var(--sand); position: relative; }
.test__head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.test__head .eyebrow { justify-content: center; }
.test__rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; background: var(--cream-2); padding: 10px 20px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.test__rating .big { font-family: var(--serif); font-size: 28px; line-height: 1; color: var(--teal-deep); }
.test__rating small { font-size: 12.5px; color: var(--muted); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.test-card { background: var(--cream-2); border-radius: var(--radius); padding: clamp(26px, 2.6vw, 38px); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.test-card .stars { font-size: 15px; margin-bottom: 18px; }
.test-card blockquote { margin: 0; font-family: var(--serif); font-size: clamp(19px, 1.7vw, 23px); line-height: 1.4; font-weight: 500; color: var(--ink); flex: 1; }
.test-card .by { display: flex; align-items: center; gap: 13px; margin-top: 26px; }
.test-card .by .ph { width: 42px; height: 42px; border-radius: 50%; flex: none; }
.test-card .by .ph::after { display: none; }
.test-card .by strong { font-size: 15px; font-weight: 600; display: block; }
.test-card .by small { font-size: 13px; color: var(--muted); }

/* =========================================================
   TOUR / CONTACT
   ========================================================= */
.tour { background: var(--teal-deep); color: var(--cream); }
.tour__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 96px); }
.tour .eyebrow { color: var(--teal-mist); }
.tour .eyebrow::before { background: var(--teal-soft); }
.tour h2 { color: var(--cream-2); max-width: 14ch; }
.tour__sub { color: rgba(255,253,248,.72); margin: 22px 0 0; max-width: 40ch; }
.tour__contact { margin-top: 40px; display: grid; gap: 4px; }
.tour__contact a, .tour__contact div { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,253,248,.9); font-size: 15.5px; }
.tour__contact .last { border-bottom: 1px solid rgba(255,255,255,.12); }
.tour__contact .ic { width: 22px; color: var(--teal-mist); flex: none; }
.tour__contact .big-phone { font-family: var(--serif); font-size: 27px; color: var(--cream-2); white-space: nowrap; }

.form-card { background: var(--cream-2); border-radius: var(--radius); padding: clamp(26px, 3vw, 44px); box-shadow: var(--shadow-lg); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .3s, box-shadow .3s; -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2315403c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(43,98,91,.14); }
.field textarea { resize: vertical; min-height: 90px; }
.field.invalid input, .field.invalid select { border-color: #c0573f; box-shadow: 0 0 0 3px rgba(192,87,63,.12); }
.field .err { display: none; color: #c0573f; font-size: 12px; margin-top: 6px; }
.field.invalid .err { display: block; }
.form-card .btn--primary { width: 100%; justify-content: center; margin-top: 8px; padding-block: 16px; }
.form-foot { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 16px; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .check { width: 62px; height: 62px; border-radius: 50%; background: var(--teal-mist); display: grid; place-items: center; margin: 0 auto 22px; }
.form-success h3 { font-size: 30px; }
.form-success p { color: var(--muted); margin: 12px 0 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #11332f; color: rgba(255,253,248,.72); padding-block: clamp(56px, 7vw, 88px) 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .brand__mark { color: var(--cream-2); font-size: 30px; }
.footer__brand p { margin: 18px 0 0; max-width: 32ch; font-size: 14.5px; line-height: 1.6; }
.footer h4 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-mist); margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer ul a, .footer ul li { font-size: 14.5px; color: rgba(255,253,248,.72); transition: color .3s; }
.footer ul a:hover { color: var(--cream-2); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 26px; font-size: 13px; color: rgba(255,253,248,.5); }
.footer__bottom .eho { display: flex; align-items: center; gap: 10px; }
.footer__bottom .eho svg { width: 22px; height: 22px; opacity: .7; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue .line::after { animation: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .intro__grid, .hood__grid, .tour__grid { grid-template-columns: 1fr; }
  .intro__media { order: -1; max-width: 520px; }
  .plan-card { grid-template-columns: 1fr; }
  .plan-card .plan-figure { max-width: 420px; }
  .amen-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
}
@media (max-width: 860px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: flex; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__cell:nth-child(3) { border-left: 0; }
  .strip__cell:nth-child(3), .strip__cell:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .test-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-auto-rows: 26vw; }
  .g-a, .g-b, .g-c, .g-d, .g-e { grid-column: span 6; grid-row: span 1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav__cta { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .amen-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .plan-specs { gap: 18px; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .gal-grid { grid-auto-rows: 40vw; }
  .g-a, .g-b, .g-c, .g-d, .g-e { grid-column: span 12; }
}
