/* =============================================================
   Elevare Care Center — Viera
   Memory care · premium editorial design system
   Palette: Evergreen · Antique Gold · Sage, on warm ivory
   Type:    Cormorant Garamond (display) · Figtree (UI/body)
            Marcellus (wordmark & fine labels)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Figtree:wght@400;500;600;700&family=Marcellus&display=swap');

:root {
  /* ---- Brand ---- */
  --pine-900: #142d27;
  --pine:     #1e3b33;   /* primary evergreen */
  --pine-600: #315549;
  --pine-400: #5c8074;

  --gold:     #c69a4c;   /* brand gold (from logo) */
  --gold-700: #a87c33;
  --gold-lt:  #f2d488;
  --gold-50:  #f4ecd8;

  --sage:     #8aa697;
  --sage-700: #567567;
  --sage-50:  #e9efe9;

  --clay:     #bd7a54;   /* warm accent, sparing */

  /* ---- Surfaces ---- */
  --paper:    #f7f2e8;   /* warm ivory page */
  --cream:    #fcf9f1;
  --surface:  #ffffff;

  /* ---- Ink ---- */
  --ink:      #1d2c26;   /* headings */
  --body:     #454e48;   /* body text */
  --muted:    #6d756d;   /* muted (AA on paper) */
  --line:     #e6ddca;   /* warm hairline */
  --line-2:   #efe8d8;

  /* ---- Type ---- */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Figtree', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wordmark: 'Marcellus', Georgia, serif;

  /* ---- Layout ---- */
  --container: 1220px;
  --container-narrow: 820px;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 24px;
  --pill: 999px;

  /* ---- Shadows (soft, expensive) ---- */
  --shadow-sm: 0 1px 2px rgba(20,45,39,.05), 0 2px 8px rgba(20,45,39,.05);
  --shadow-md: 0 12px 34px rgba(20,45,39,.10), 0 4px 12px rgba(20,45,39,.06);
  --shadow-lg: 0 34px 78px rgba(20,45,39,.17), 0 12px 26px rgba(20,45,39,.09);

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 280ms;

  --z-nav: 50;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pine-600); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -.005em;
  font-weight: 600;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.7rem, 6.4vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 600; }
p  { margin: 0 0 1rem; max-width: 66ch; }

/* Italic serif emphasis inside headings */
.ital { font-style: italic; font-weight: 500; color: var(--pine-600); }
.ital-gold { font-style: italic; font-weight: 500; color: var(--gold-700); }

/* --------------------------- Utilities --------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.4rem); }
.narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section--cream { background: var(--cream); }
.section--white { background: var(--surface); }
.section--pine { background: var(--pine); color: #d7e0da; }
.section--pine h1, .section--pine h2, .section--pine h3, .section--pine h4 { color: #fff; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* Signature spaced-capital label (echoes the brochure) */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--sans); font-weight: 600; font-size: .74rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold-700);
  margin-bottom: 1.2rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.eyebrow.no-rule::before { display: none; }
.section--pine .eyebrow { color: var(--gold); }

.lead { font-size: 1.24rem; line-height: 1.62; color: var(--muted); max-width: 62ch; }
.section--pine .lead { color: #b7c6bd; }
.center { text-align: center; }
.center .lead, .center p { margin-inline: auto; }
.balance { text-wrap: balance; }
.maxw-prose { max-width: 64ch; }

.grid { display: grid; gap: clamp(1.4rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.skip-link { position: absolute; left: 1rem; top: -3rem; z-index: 100; background: var(--pine); color: #fff; padding: .6rem 1rem; border-radius: var(--radius-sm); transition: top var(--dur) var(--ease); }
.skip-link:focus { top: 1rem; text-decoration: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------------------------- Buttons ---------------------------- */
.btn {
  --bg: var(--pine); --fg: #fff; --bd: var(--pine);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  padding: .9rem 1.7rem; min-height: 52px;
  border-radius: var(--pill); border: 1.5px solid var(--bd);
  background: var(--bg); color: var(--fg); cursor: pointer; white-space: nowrap;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--pine:hover { background: var(--pine-600); border-color: var(--pine-600); }
.btn--gold { --bg: var(--gold); --fg: var(--pine-900); --bd: var(--gold); }
.btn--gold:hover { background: var(--gold-700); border-color: var(--gold-700); color: #fff; }
.btn--outline { --bg: transparent; --fg: var(--pine); --bd: var(--pine); box-shadow: none; }
.btn--outline:hover { background: var(--pine); color: #fff; }
.btn--ghost-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.42); box-shadow: none; }
.btn--ghost-light:hover { background: rgba(255,255,255,.10); border-color: #fff; }
.btn--lg { padding: 1.05rem 2.1rem; min-height: 58px; font-size: 1.02rem; }
.btn svg { width: 18px; height: 18px; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.textlink { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--pine); position: relative; }
.textlink svg { width: 17px; height: 17px; transition: transform var(--dur) var(--ease); }
.textlink:hover { text-decoration: none; }
.textlink:hover svg { transform: translateX(4px); }
.textlink::after { content: ""; position: absolute; left: 0; right: 1.5rem; bottom: -3px; height: 1.5px; background: currentColor; opacity: .5; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.textlink:hover::after { transform: scaleX(1); }
.section--pine .textlink { color: #fff; }

/* --------------------------- Header/Nav -------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(247,242,232,.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line); box-shadow: 0 1px 24px rgba(20,45,39,.08);
}
.site-header .container { max-width: 1360px; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.1rem; min-height: 84px; }

/* Wordmark with torch crest */
.brand { display: inline-flex; align-items: center; gap: .75rem; }
.brand:hover { text-decoration: none; }
.brand .crest { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--pine); display: grid; place-items: center; box-shadow: var(--shadow-sm); border: 1px solid rgba(198,154,76,.35); }
.brand .crest img { width: 26px; height: auto; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word .name { font-family: var(--wordmark); font-size: 1.5rem; letter-spacing: .2em; color: #fff; text-transform: uppercase; white-space: nowrap; transition: color var(--dur) var(--ease); }
.brand-word .sub { font-family: var(--sans); font-size: .56rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-lt); margin-top: 6px; white-space: nowrap; transition: color var(--dur) var(--ease); }
.site-header.is-scrolled .brand-word .name { color: var(--pine); }
.site-header.is-scrolled .brand-word .sub { color: var(--gold-700); }
.site-footer .brand-word .name { color: #fff; }
.site-footer .brand-word .sub { color: var(--gold); }

/* Header link colors: light over hero, dark once scrolled */
.site-header .nav-links a { color: rgba(255,255,255,.9); }
.site-header .nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }
.site-header .nav-phone { color: #fff; }
.site-header .nav-phone svg { color: var(--gold-lt); }
.site-header.is-scrolled .nav-links a { color: var(--body); }
.site-header.is-scrolled .nav-links a:hover { color: var(--pine); background: rgba(30,59,51,.06); }
.site-header.is-scrolled .nav-phone { color: var(--pine); }
.site-header.is-scrolled .nav-phone svg { color: var(--gold-700); }
.site-header .nav-toggle { color: #fff; border-color: rgba(255,255,255,.4); }
.site-header.is-scrolled .nav-toggle { color: var(--pine); border-color: var(--line); }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--body); font-weight: 500; font-size: .9rem; white-space: nowrap;
  padding: .5rem .58rem; border-radius: 8px;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--pine); background: rgba(30,59,51,.06); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--pine); font-size: .9rem; white-space: nowrap; }
.nav-phone svg { width: 16px; height: 16px; color: var(--gold-700); }

.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: 10px; width: 48px; height: 48px; cursor: pointer; align-items: center; justify-content: center; color: var(--pine); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1280px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: 80px 0 auto 0; z-index: 40;
    background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem clamp(1.2rem, 4vw, 2.4rem) 1.8rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links { flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav-links a { padding: .9rem 1rem; font-size: 1.05rem; }
  .nav-cta { flex-direction: column; align-items: stretch; margin-top: 1rem; gap: .6rem; }
  .nav-cta .btn { width: 100%; }
  .nav-phone { justify-content: center; padding: .5rem; }
  /* open cream panel needs dark text regardless of scroll state */
  .site-header .nav-menu.is-open .nav-links a,
  .site-header.is-scrolled .nav-menu.is-open .nav-links a { color: var(--body); }
  .site-header .nav-menu.is-open .nav-phone { color: var(--pine); }
  .site-header .nav-menu.is-open .nav-phone svg { color: var(--gold-700); }
}
.nav-menu { display: flex; align-items: center; gap: 1.1rem; }
@media (min-width: 1281px) { .nav-menu { justify-content: flex-end; } }
@media (max-width: 1360px) and (min-width: 1281px) { .nav-links a { padding: .5rem .5rem; font-size: .88rem; } .nav-menu { gap: .9rem; } }

/* ----------------------------- Hero (full-bleed, luxe) ----------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh; display: flex; align-items: center;
  padding-block: clamp(8rem, 16vh, 12rem) clamp(4rem, 9vh, 7rem);
  background: #10241f;
  color: #eef2ee;
}
/* photographic slot (drop assets/img/hero.jpg) + graceful gradient fallback */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.hero-bg .art { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(120% 90% at 78% 12%, rgba(198,154,76,.28), transparent 55%),
  radial-gradient(90% 80% at 12% 90%, rgba(90,128,116,.35), transparent 60%),
  linear-gradient(160deg, #1c3b33 0%, #12291f 60%, #0d2019 100%); }
.hero::before { /* whisper-light brand tint so the photo stays vivid */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: rgba(16,36,31,.12);
}
.hero::after { /* legibility scrim: dark at left for text, clear at right to reveal the room */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(9,22,17,.92) 0%, rgba(9,22,17,.74) 26%, rgba(9,22,17,.38) 50%, rgba(9,22,17,.08) 74%, rgba(9,22,17,0) 92%),
              linear-gradient(0deg, rgba(9,22,17,.5) 0%, transparent 34%);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 42rem; }
.hero-logo { height: 92px; width: auto; margin-bottom: 1.8rem; filter: drop-shadow(0 6px 18px rgba(0,0,0,.35)); }
.hero-pill { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--sans); font-weight: 600; font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-lt); border: 1px solid rgba(242,212,136,.4); border-radius: var(--pill); padding: .45rem 1rem; margin-bottom: 1.6rem; }
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-lt); box-shadow: 0 0 0 4px rgba(242,212,136,.18); }
.hero h1 { color: #fff; margin-bottom: .4em; font-size: clamp(2.9rem, 6.6vw, 5.4rem); letter-spacing: -.01em; }
.hero h1 .ital { color: var(--gold-lt); }
.hero .lead { color: #d7e0da; font-size: clamp(1.15rem, 1.7vw, 1.4rem); max-width: 40rem; margin-bottom: 2rem; }
.hero .btn--outline { --fg: #fff; --bd: rgba(255,255,255,.55); }
.hero .btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.hero-tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2.4rem; }
.tag { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--pill); padding: .5rem 1rem; font-size: .85rem; font-weight: 600; color: #eef2ee; backdrop-filter: blur(4px); }
.tag svg { width: 16px; height: 16px; color: var(--gold-lt); }

/* scroll cue */
.hero-cue { position: absolute; left: 50%; bottom: 1.6rem; z-index: 2; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.hero-cue svg { width: 20px; height: 20px; animation: cueBob 2.4s var(--ease) infinite; }
@keyframes cueBob { 0%,100%{ transform: translateY(0); opacity:.6 } 50%{ transform: translateY(5px); opacity:1 } }
@media (prefers-reduced-motion: reduce){ .hero-cue svg { animation: none; } }
@media (max-width: 760px){ .hero { min-height: 92svh; } .hero-cue { display: none; } .hero-logo { height: 72px; } }

/* --------------------------- Proof strip ------------------------- */
.proof { background: var(--pine); color: #c3d0c8; }
.proof .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem 2.4rem; padding-block: 1.2rem; text-align: center; }
.proof span { display: inline-flex; align-items: center; gap: .6rem; font-size: .95rem; font-weight: 500; }
.proof .sep { color: var(--gold); }
.proof svg { width: 18px; height: 18px; color: var(--sage); }

/* --------------------------- Section head ------------------------ */
.sec-head { max-width: 64ch; }
.sec-head.center { margin-inline: auto; }
.sec-head h2 { margin-bottom: .5rem; }

/* ------------------------ Promise / value pillars ---------------- */
.pillars { margin-top: clamp(2.6rem, 5vw, 3.6rem); gap: clamp(1.8rem, 3.4vw, 2.8rem); }
.pillar { border-top: 2px solid var(--line); padding-top: 1.4rem; }
.pillar .pnum { display: block; font-family: var(--wordmark); font-size: .82rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 1rem; }
.pillar h3 { margin-bottom: .5rem; font-size: 1.5rem; font-weight: 600; }
.pillar p { margin: 0; color: var(--muted); }
.section--pine .pillar { border-top-color: rgba(255,255,255,.18); }
.section--pine .pillar p { color: #b7c6bd; }
.section--pine .pillar .pnum { color: var(--gold); }

/* ---------------------------- Feature ---------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature.reverse .feature-media { order: 2; }
@media (max-width: 900px) { .feature, .feature.reverse { grid-template-columns: 1fr; } .feature.reverse .feature-media { order: 0; } }
.feature-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; background: linear-gradient(150deg, var(--pine), var(--sage-700)); }
.feature-media img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.feature-media .art { position: absolute; inset: 0; }
.feature-media.tall { aspect-ratio: 4/5; }

.check { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .9rem; }
.check li { display: flex; gap: .75rem; align-items: flex-start; color: var(--body); }
.check svg { width: 22px; height: 22px; color: var(--gold-700); flex: none; margin-top: 3px; }
.section--pine .check li { color: #d7e0da; }
.section--pine .check svg { color: var(--gold); }

/* ----------------------------- Cards ----------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; height: 100%; position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--sage), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .99rem; }
.card .ic { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--gold-50); color: var(--gold-700); margin-bottom: 1.3rem; transition: transform var(--dur) var(--ease); }
.card:hover .ic { transform: translateY(-2px) scale(1.05); }
.card .ic.sage { background: var(--sage-50); color: var(--sage-700); }
.card .ic svg { width: 27px; height: 27px; }

/* numbered / cornerstone cards */
.numcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; height: 100%; position: relative; overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.numcard::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--sage), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); }
.numcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.numcard:hover::before { transform: scaleX(1); }
.numcard .n { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: .7rem; font-weight: 500; display: inline-block; transition: transform var(--dur) var(--ease); }
.numcard:hover .n { transform: translateY(-3px); }
.numcard .ic { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--sage-50); color: var(--sage-700); margin-bottom: 1.3rem; }
.numcard .ic svg { width: 27px; height: 27px; }
.numcard h3 { margin-bottom: .4rem; }
.numcard p { color: var(--muted); margin: 0; font-size: .99rem; }

/* ----------------------------- Stats ----------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat strong { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 4.2vw, 3.6rem); color: #fff; line-height: 1; }
.stat .lbl { color: #a8bcb0; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; margin-top: .7rem; display: block; }
.stat strong { transition: transform .5s var(--ease); }

/* stat cards on light background */
.statcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem,2.5vw,1.8rem); margin-top: clamp(2.4rem,4vw,3.2rem); }
@media (max-width: 820px) { .statcards { grid-template-columns: 1fr; } }
.statcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; text-align: left; }
.statcard .big { font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem,5vw,3.4rem); color: var(--pine); line-height: 1; }
.statcard .k { display: block; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--gold-700); margin: .8rem 0 .5rem; }
.statcard p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ------------------------- The letter ---------------------------- */
.letter { max-width: 760px; margin-inline: auto; }
.letter .prose { font-family: var(--serif); font-size: clamp(1.24rem, 2vw, 1.5rem); line-height: 1.62; color: var(--body); }
.letter .prose p { max-width: none; margin-bottom: 1.2rem; }
.letter .drop::first-letter { font-family: var(--serif); font-weight: 600; float: left; font-size: 4.6rem; line-height: .78; padding: .34rem .5rem 0 0; color: var(--gold-700); }
.sign { margin-top: 2.6rem; display: grid; gap: 1.4rem; }
.sign .who { display: block; }
.sign .who .nm { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); font-style: italic; }
.sign .who .rl { display: block; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-top: .15rem; }

/* --------------------------- Care list --------------------------- */
.carelist { list-style: none; padding: 0; margin: 2.4rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2.6rem; }
@media (max-width: 820px) { .carelist { grid-template-columns: 1fr; } }
.carelist li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.carelist .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--sage-50); color: var(--sage-700); display: grid; place-items: center; flex: none; }
.carelist .ic svg { width: 21px; height: 21px; }
.carelist strong { display: block; color: var(--ink); font-family: var(--sans); font-weight: 700; font-size: 1rem; margin-bottom: .2rem; }
.carelist span { color: var(--muted); font-size: .95rem; line-height: 1.55; }

/* --------------------------- Big quote --------------------------- */
.bigquote { max-width: 20ch; }
.creed { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.3; color: #fff; letter-spacing: -.01em; max-width: 24ch; }
.creed .em { color: var(--gold); font-style: italic; }
.creed-note { max-width: 60ch; margin-top: 1.8rem; color: #b7c6bd; }

/* --------------------------- Leadership -------------------------- */
.leaders { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.8vw, 2rem); }
@media (max-width: 860px) { .leaders { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.leader { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.leader:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.leader .photo { position: relative; aspect-ratio: 4/4.3; background: linear-gradient(155deg, var(--pine), var(--sage-700)); overflow: hidden; }
.leader .photo .art { position: absolute; inset: 0; }
.leader .photo img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.leader .photo .initials { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; color: rgba(255,255,255,.9); font-family: var(--serif); font-weight: 500; font-size: 3rem; letter-spacing: .04em; }
.leader .body { padding: 1.5rem 1.6rem 1.8rem; }
.leader h4 { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--ink); margin: 0 0 .2rem; }
.leader .role { color: var(--gold-700); font-weight: 700; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }
.leader .bio { color: var(--muted); font-size: .96rem; margin: .9rem 0 0; }

/* --------------------------- Tour / contact ---------------------- */
.tour-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,3.6rem); align-items: start; }
@media (max-width: 900px) { .tour-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1.4rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,.1); color: var(--gold); display: grid; place-items: center; flex: none; }
.info-list .ic svg { width: 22px; height: 22px; }
.info-list strong { display: block; color: #fff; font-family: var(--sans); }
.info-list a, .info-list span { color: #c3d0c8; }
.info-list a:hover { color: #fff; }

/* form */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); }
.form-card h3 { margin-bottom: .3rem; }
.form-card .form-sub { color: var(--muted); font-size: .96rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: .4rem; }
.field input, .field select, .field textarea { width: 100%; font: inherit; color: var(--ink); background: var(--cream); border: 1.5px solid var(--line); border-radius: 10px; padding: .8rem .9rem; min-height: 48px; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(182,146,79,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .84rem; color: var(--muted); }
#form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 10px; background: var(--sage-50); color: var(--sage-700); font-size: .95rem; border: 1px solid #cfe0d5; }

/* --------------------------- CTA band ---------------------------- */
.cta-band { background: linear-gradient(140deg, var(--pine), var(--pine-900)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.6rem, 5vw, 4.4rem); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band::after { content: ""; position: absolute; right: -90px; top: -90px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(closest-side, rgba(182,146,79,.32), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #b7c6bd; max-width: 56ch; }
.cta-band.center p { margin-inline: auto; }

/* --------------------------- Footer ------------------------------ */
.site-footer { background: var(--pine-900); color: #9db0a6; padding-block: clamp(3.5rem,6vw,5rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: 2.6rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-family: var(--sans); color: #fff; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.footer-links a { color: #9db0a6; font-size: .95rem; }
.footer-links a:hover { color: #fff; }
.site-footer p { color: #91a59a; font-size: .95rem; }
.footer-tagline { margin-top: 1.1rem; max-width: 42ch; }
.footer-ribbon { margin-top: 1.6rem; font-family: var(--wordmark); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); margin-top: 3rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; font-size: .85rem; color: #7d9188; }
.footer-bottom a { color: #7d9188; }
.social { display: flex; gap: .55rem; margin-top: 1.3rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #fff; }
.social a:hover { background: var(--gold); color: var(--pine-900); text-decoration: none; }
.social svg { width: 19px; height: 19px; }
.disclaimer { font-size: .8rem; color: #6f8479; max-width: 82ch; margin-top: 1.5rem; line-height: 1.6; }

/* --------------------------- Ambient art ------------------------- */
.has-motes { position: relative; overflow: hidden; isolation: isolate; }
.has-motes > canvas[data-motes] { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.has-motes > .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .has-motes > canvas[data-motes] { display: none; } }

/* --------------------------- Reveal anim ------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ======================= Phone-first refinements ======================= */
@media (max-width: 760px) {
  .section { padding-block: clamp(3rem, 8vw, 4.4rem); }
  .container { padding-inline: 1.15rem; }
  body { font-size: 16.5px; }
  h1 { font-size: clamp(2.3rem, 10vw, 3.2rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 2.3rem); }
  .lead, .hero .lead { font-size: 1.1rem; line-height: 1.56; }

  .hero-grid { padding-block: 2.2rem 1rem; gap: 2rem; }
  .hero .btn-row { gap: .7rem; }
  .hero .btn-row .btn { flex: 1 1 100%; }
  .hero-figure { aspect-ratio: 4 / 3.7; }

  .proof .container { flex-direction: column; gap: .5rem; padding-block: 1rem; }
  .proof .sep { display: none; }
  .proof span { font-size: .9rem; }

  .feature { gap: 1.9rem; }
  .feature-media, .feature-media.tall { aspect-ratio: 16 / 11; }

  .letter .prose { font-size: 1.14rem; }
  .letter .drop::first-letter { font-size: 3.6rem; }

  .btn { min-height: 52px; }
  .btn-row .btn { flex: 1 1 100%; }
  .cta-band { padding: 2rem 1.3rem; border-radius: var(--radius); }

  .footer-grid { gap: 1.8rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .45rem; }
}

@media (max-width: 420px) {
  .container { padding-inline: 1rem; }
  .brand-word .name { font-size: 1.3rem; }
  .hero-chip { font-size: .7rem; }
  .hero-badge { left: 12px; right: 12px; bottom: 12px; padding: .75rem .8rem; }
}

/* ==================================================================
   LUXURY / HOSPITALITY COMPONENTS
   ================================================================== */

/* Gold gradient text */
.gold-grad { background: linear-gradient(100deg, var(--gold-lt), var(--gold) 55%, var(--gold-700)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Ornamental torch divider */
.ornament { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0 auto clamp(1.4rem,3vw,2rem); color: var(--gold); }
.ornament::before, .ornament::after { content: ""; height: 1px; width: clamp(48px, 12vw, 120px); background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament img { width: 26px; height: auto; opacity: .95; }
.section--pine .ornament::before { background: linear-gradient(90deg, transparent, var(--gold)); }

/* Eyebrow centered helper */
.eyebrow.centered { display: flex; justify-content: center; }

/* ---- Dining ---- */
.menu-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1.15rem; }
.menu-list li { display: grid; gap: .15rem; padding-bottom: 1.15rem; border-bottom: 1px solid var(--line); }
.section--pine .menu-list li { border-bottom-color: rgba(255,255,255,.16); }
.menu-list .dish { display: flex; align-items: baseline; gap: .8rem; }
.menu-list .dish .nm { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.section--pine .menu-list .dish .nm { color: #fff; }
.menu-list .dish .rule { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.section--pine .menu-list .dish .rule { border-bottom-color: rgba(255,255,255,.25); }
.menu-list .dish .tag2 { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--gold-700); white-space: nowrap; }
.section--pine .menu-list .dish .tag2 { color: var(--gold-lt); }
.menu-list .desc { color: var(--muted); font-size: .96rem; max-width: 52ch; }
.section--pine .menu-list .desc { color: #b7c6bd; }

/* ---- Amenities grid ---- */
.amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: clamp(2.4rem,4vw,3.2rem); }
@media (max-width: 820px){ .amenities { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .amenities { grid-template-columns: 1fr; } }
.amenity { background: var(--surface); padding: 1.8rem; transition: background-color var(--dur) var(--ease); }
.amenity:hover { background: var(--cream); }
.amenity .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-50); color: var(--gold-700); margin-bottom: 1rem; }
.amenity .ic svg { width: 24px; height: 24px; }
.amenity h3 { font-size: 1.24rem; margin-bottom: .3rem; }
.amenity p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---- Gallery mosaic ---- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: clamp(.6rem, 1.2vw, 1rem); margin-top: clamp(2.4rem,4vw,3.2rem); }
@media (max-width: 900px){ .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; } }
.gtile { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; border: none; padding: 0; box-shadow: var(--shadow-sm); }
.gtile.wide { grid-column: span 2; }
.gtile.tall { grid-row: span 2; }
@media (max-width: 900px){ .gtile.tall { grid-row: span 1; } }
.gtile img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gtile .art { position: absolute; inset: 0; z-index: 0; }
.gtile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(9,22,17,.72)); opacity: .9; transition: opacity var(--dur) var(--ease); }
.gtile:hover img { transform: scale(1.06); }
.gtile .cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1rem 1.1rem; color: #fff; text-align: left; }
.gtile .cap .k { font-family: var(--sans); font-weight: 700; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); }
.gtile .cap .t { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; display: block; line-height: 1.1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,16,12,.94); backdrop-filter: blur(8px); display: grid; place-items: center; padding: clamp(1rem,4vw,3rem); opacity: 0; pointer-events: none; transition: opacity var(--dur) var(--ease); }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox .frame { width: 100%; max-width: 1000px; aspect-ratio: 3/2; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; background: linear-gradient(150deg, var(--pine), var(--sage-700)); }
.lightbox .frame img { width: 100%; height: 100%; object-fit: cover; }
.lightbox .lb-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem; color: #fff; background: linear-gradient(180deg, transparent, rgba(9,22,17,.8)); font-family: var(--serif); font-size: 1.4rem; }
.lightbox .lb-close { position: absolute; top: -16px; right: -16px; width: 46px; height: 46px; border-radius: 50%; background: #fff; border: none; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-md); }
.lightbox .lb-close svg { width: 22px; height: 22px; color: var(--pine); }
@media (max-width: 640px){ .lightbox .lb-close { top: 8px; right: 8px; } }

/* ---- Luxury testimonial ---- */
.quote-lux { max-width: 46rem; margin-inline: auto; text-align: center; }
.quote-lux .mark { font-family: var(--serif); font-size: 5rem; line-height: .5; color: var(--gold); display: block; height: 2.2rem; }
.quote-lux blockquote { margin: 0; }
.quote-lux .q { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.4; color: #fff; }
.quote-lux .cite { display: block; margin-top: 1.6rem; font-family: var(--sans); font-weight: 600; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); }

/* ---- Stat band (dark) ---- */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1.4rem,3vw,2.4rem); }
@media (max-width: 720px){ .statband { grid-template-columns: repeat(2,1fr); } }
.statband .s { text-align: center; }
.statband .s strong { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem,5vw,3.8rem); line-height: 1; color: var(--gold-lt); }
.statband .s span { display: block; margin-top: .7rem; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: #b7c6bd; }

/* Feature captions / labels on media */
.feature-media .mlabel { position: absolute; left: 16px; bottom: 16px; z-index: 2; background: rgba(9,22,17,.6); backdrop-filter: blur(6px); color: #fff; font-family: var(--sans); font-weight: 600; font-size: .78rem; letter-spacing: .04em; padding: .5rem .9rem; border-radius: var(--pill); }

/* Section intro spacing for fixed header (first section is hero, fine) */

/* ---- Activities / daily life ---- */
.daycols { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem,4vw,3.6rem); align-items: start; margin-top: clamp(2.2rem,4vw,3rem); }
@media (max-width: 900px){ .daycols { grid-template-columns: 1fr; } }
.day-panel h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.timeline { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.timeline li { display: grid; grid-template-columns: 84px 1fr; gap: 1.1rem; padding: .95rem 0; border-top: 1px solid var(--line); align-items: baseline; }
.timeline li:first-child { border-top: none; padding-top: 0; }
.timeline .t { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--gold-700); }
.timeline .a { color: var(--ink); font-weight: 600; }
.timeline .a small { display: block; color: var(--muted); font-weight: 400; font-size: .92rem; }
.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.3rem; }
.chip { display: inline-flex; align-items: center; gap: .5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--pill); padding: .5rem 1rem; font-size: .9rem; font-weight: 600; color: var(--pine); box-shadow: var(--shadow-sm); }
.chip .d { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.cal-cta { margin-top: 1.8rem; }
.cal-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; }

/* ============================ AD LANDING PAGE ============================ */
.lp-header { position: absolute; top: 0; left: 0; right: 0; z-index: 40; }
.lp-header .nav { min-height: 76px; }
.lp-header .nav-phone { color: #fff; font-size: 1rem; }
.lp-header .nav-phone svg { color: var(--gold-lt); }
.lp-header .brand-word .name { color: #fff; }
.lp-header .brand-word .sub { color: var(--gold-lt); }

.lp-hero { position: relative; overflow: hidden; background: #10241f; color: #eef2ee; padding: clamp(6.5rem, 12vh, 9rem) 0 clamp(3rem, 6vh, 5rem); }
.lp-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.lp-hero .hero-bg img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.lp-hero .hero-bg .art { position: absolute; inset: 0; z-index: 0; background:
  radial-gradient(120% 90% at 80% 10%, rgba(198,154,76,.28), transparent 55%),
  linear-gradient(160deg, #1c3b33, #0d2019); }
.lp-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(9,22,17,.9) 0%, rgba(9,22,17,.66) 42%, rgba(9,22,17,.3) 100%); }
.lp-hero .container { position: relative; z-index: 2; }
.lp-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 4vw, 3.6rem); align-items: center; }
@media (max-width: 940px) { .lp-grid { grid-template-columns: 1fr; } }
.lp-hero h1 { color: #fff; font-size: clamp(2.3rem, 4.6vw, 3.6rem); margin-bottom: .4em; }
.lp-hero h1 .ital { color: var(--gold-lt); }
.lp-hero .lead { color: #d7e0da; font-size: clamp(1.08rem, 1.5vw, 1.25rem); }
.lp-check { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .7rem; }
.lp-check li { display: flex; gap: .7rem; align-items: flex-start; color: #eef2ee; font-weight: 500; }
.lp-check svg { width: 21px; height: 21px; color: var(--gold-lt); flex: none; margin-top: 3px; }
.lp-form { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 3vw, 2.2rem); }
.lp-form h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: .2rem; }
.lp-form .sub { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; }
.lp-form .or { text-align: center; margin: 1rem 0 .2rem; color: var(--muted); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.lp-callbtn { display: flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; margin-top: .6rem; }

/* trust strip */
.lp-trust { background: var(--pine-900); color: #c3d0c8; }
.lp-trust .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem; padding-block: 1.1rem; text-align: center; }
.lp-trust span { display: inline-flex; align-items: center; gap: .55rem; font-size: .95rem; font-weight: 600; }
.lp-trust svg { width: 18px; height: 18px; color: var(--gold-lt); }

/* value row */
.lp-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); margin-top: clamp(2rem, 4vw, 2.8rem); }
@media (max-width: 820px) { .lp-values { grid-template-columns: repeat(2, 1fr); } }
.lp-val .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--sage-50); color: var(--sage-700); display: grid; place-items: center; margin-bottom: .9rem; }
.lp-val .ic svg { width: 26px; height: 26px; }
.lp-val h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.lp-val p { color: var(--muted); font-size: .96rem; margin: 0; }

/* photo strip */
.lp-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.6rem, 1.2vw, 1rem); margin-top: clamp(2rem,4vw,2.8rem); }
@media (max-width: 700px) { .lp-strip { grid-template-columns: 1fr 1fr; } }
.lp-strip .s { aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); background: linear-gradient(150deg, var(--pine), var(--sage-700)); }
.lp-strip .s img { width: 100%; height: 100%; object-fit: cover; }

/* sticky mobile call bar */
.sticky-call { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: .6rem; padding: .6rem clamp(1rem,4vw,1.4rem); background: rgba(20,45,39,.96); backdrop-filter: blur(8px); box-shadow: 0 -6px 24px rgba(0,0,0,.25); }
.sticky-call .btn { flex: 1; }
@media (max-width: 700px) { .sticky-call { display: flex; } body.has-stickybar { padding-bottom: 76px; } }
