/* ============================================================
   ТЕПЛИЙ · Open House — design foundation
   Brand palette (from brand book):
   #4A5B36 natural green (primary)  · #EFE7D4 vanilla (light neutral)
   #613C28 dark chocolate (dark)    · #AB5321 dried orange (accent 1)
   #E16B28 fireplace light (accent 2 / CTA)
   Type: Raleway (display) · Nunito (ui/body) · Caveat (handwritten accent)
   ============================================================ */

:root {
  --green:        #4A5B36;
  --green-deep:   #36431F;
  --green-soft:   #5E7046;
  --vanilla:      #EFE7D4;
  --cream:        #F5EFE1;
  --paper:        #FBF7EC;
  --choc:         #4A2F1E;
  --choc-soft:    #6B452C;
  --orange:       #E16B28;
  --orange-deep:  #AB5321;
  --ink:          #2A2118;
  --ink-soft:     #5C5142;
  --line:         rgba(74,47,30,0.14);
  --line-soft:    rgba(74,47,30,0.08);
  --white:        #FFFFFF;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-sm: 0 2px 14px rgba(42,33,24,0.06);
  --shadow-md: 0 18px 50px -20px rgba(42,33,24,0.30);
  --shadow-lg: 0 40px 90px -30px rgba(42,33,24,0.45);

  --ff-display: "Raleway", system-ui, sans-serif;
  --ff-body:    "Nunito", system-ui, sans-serif;
  --ff-hand:    "Caveat", cursive;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --track: -0.02em;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--orange); color: #fff; }

/* ---------- typography helpers ---------- */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 800; margin: 0; line-height: 1.04; letter-spacing: var(--track); color: var(--green-deep); }
p { margin: 0; }

.eyebrow {
  font-family: var(--ff-hand);
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--orange-deep);
  line-height: 1;
  font-weight: 600;
}
.kicker {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--orange);
  display: inline-block;
}
.h-xl  { font-size: clamp(48px, 9vw, 132px); }
.h-lg  { font-size: clamp(36px, 5.4vw, 78px); }
.h-md  { font-size: clamp(28px, 3.6vw, 50px); }
.h-sm  { font-size: clamp(22px, 2.4vw, 32px); }
.lead  { font-size: clamp(18px, 1.5vw, 22px); color: var(--ink-soft); line-height: 1.6; }
.muted { color: var(--ink-soft); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 150px); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 100px); }
.bg-cream { background: var(--cream); }
.bg-vanilla { background: var(--vanilla); }
.bg-green { background: var(--green); color: var(--cream); }
.bg-green h1,.bg-green h2,.bg-green h3 { color: #fff; }
.bg-choc { background: var(--choc); color: var(--cream); }

.grid { display: grid; gap: clamp(24px, 3vw, 48px); }
.center { text-align: center; }
.stack { display: flex; flex-direction: column; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-body); font-weight: 800; font-size: 16px;
  letter-spacing: 0.01em;
  padding: 17px 32px; border: none; border-radius: 100px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s, background .25s, color .25s;
  position: relative; white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 12px 28px -10px rgba(225,107,40,.7); }
.btn--primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(171,83,33,.7); }
.btn--ghost { background: transparent; color: var(--green-deep); box-shadow: inset 0 0 0 2px rgba(74,91,54,.35); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--green); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--green-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 20px 40px; font-size: 17px; }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.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; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 22px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav.scrolled { background: rgba(251,247,236,0.86); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line-soft); padding: 12px 0; }
.nav__links { display: flex; gap: 34px; align-items: center; }
.nav__links a {
  font-weight: 700; font-size: 15px; color: var(--cream);
  position: relative; transition: color .25s; letter-spacing: .01em;
}
.nav.scrolled .nav__links a { color: var(--ink); }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background: var(--orange); transition: width .3s; }
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__date { font-weight: 800; font-size: 14px; color: var(--cream); display: flex; align-items: center; gap: 8px; }
.nav.scrolled .nav__date { color: var(--green-deep); }
.nav__burger { display: none; background: none; border: none; padding: 8px; }

/* ---------- logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__mark { width: 42px; height: 42px; border-radius: 12px; background: var(--green); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.logo__emblem { width: 26px; height: 36px; object-fit: contain; display: block; }
.logo__word { font-family: var(--ff-display); font-weight: 800; font-size: 24px; letter-spacing: -0.01em; color: var(--cream); }
.nav.scrolled .logo__word { color: var(--green-deep); }
.logo--dark .logo__word { color: var(--green-deep); }

/* ============================================================ HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(34,41,28,.62) 0%, rgba(34,41,28,.28) 30%, rgba(30,36,24,.52) 58%, rgba(26,32,22,.94) 100%); }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(64px, 8vw, 110px); padding-top: 120px; }
.hero__eyebrow { color: #F4C9A0; }
.hero__oh { display: inline-block; font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; font-size: clamp(20px, 2.6vw, 34px); color: #F4C9A0; line-height: 1; padding-bottom: 10px; border-bottom: 2px solid rgba(244,201,160,.5); }
.hero--split .hero__oh { color: #F4C9A0; }
.hero h1 { color: #fff; margin: 14px 0 0; text-shadow: 0 2px 40px rgba(0,0,0,.3); }
.hero h1 .script { font-family: var(--ff-hand); font-weight: 600; color: #F4C9A0; letter-spacing: 0; display: block; font-size: 0.52em; line-height: 0.9; margin-top: 10px; }
.hero__sub { color: rgba(255,255,255,.92); max-width: 640px; margin-top: 22px; font-size: clamp(17px,1.5vw,21px); line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; align-items: center; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

/* event pills */
.pill { display: inline-flex; align-items: center; gap: 12px; padding: 13px 22px; border-radius: 100px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-weight: 700; font-size: 15px; white-space: nowrap; }
.pill svg { flex: none; }
.pill--solid { background: #fff; color: var(--green-deep); border-color: #fff; }

/* hero variant B (split) */
.hero--split { display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; min-height: 100svh; }
.hero--split .hero__bg { position: relative; }
.hero--split .hero__bg::after { background: linear-gradient(90deg, rgba(28,34,24,.25), transparent 40%); }
.hero--split .hero__panel { background: var(--green); color: var(--cream); display: flex; flex-direction: column; justify-content: center; padding: clamp(40px,6vw,96px); padding-top: 140px; }
.hero--split .hero__panel h1 { color: #fff; text-shadow: none; }
.hero--split .hero__panel .hero__sub { color: rgba(255,255,255,.85); }
.hero--split .pill { background: rgba(255,255,255,.1); }

/* scroll cue */
.scrollcue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.7); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scrollcue .dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: cuemove 1.8s infinite; }
@keyframes cuemove { 0%{transform: translateY(0); opacity:1} 70%{transform: translateY(14px); opacity:0} 100%{opacity:0} }

/* ============================================================ SECTION HEADER */
.shead { max-width: 760px; }
.shead .eyebrow { display: block; margin-bottom: 4px; }
.shead h2 { margin-top: 6px; }
.shead p { margin-top: 18px; }

/* ============================================================ INTRO / LEGEND */
.legend { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px,5vw,80px); align-items: center; }
.legend__media { position: relative; }
.legend__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.legend__badge { position: absolute; bottom: -28px; left: -28px; background: var(--orange); color:#fff; border-radius: 50%; width: 150px; height: 150px; display: grid; place-items: center; text-align: center; font-family: var(--ff-hand); font-size: 26px; line-height: 1.05; font-weight: 700; box-shadow: var(--shadow-md); padding: 16px; transform: rotate(-7deg); }
.legend blockquote { font-family: var(--ff-hand); font-size: clamp(28px,3.2vw,42px); color: var(--orange-deep); line-height: 1.15; margin: 0 0 24px; }

/* ============================================================ STATS */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 36px clamp(14px,2vw,28px); border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat__num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(40px,4.4vw,62px); color: var(--green); line-height: 1; letter-spacing: -.03em; }
.stat__num span { color: var(--orange); }
.stat__lbl { margin-top: 10px; font-weight: 700; color: var(--ink-soft); font-size: 15px; }

/* ============================================================ PROGRAM */
.prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pcard { background: var(--paper); border-radius: var(--r-md); padding: 32px 28px 30px; border: 1px solid var(--line-soft); transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.bg-green .pcard { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.pcard__ico { width: 56px; height: 56px; border-radius: 14px; background: rgba(225,107,40,.12); color: var(--orange-deep); display: grid; place-items: center; margin-bottom: 22px; }
.bg-green .pcard__ico { background: rgba(244,201,160,.18); color: #F4C9A0; }
.pcard h3 { font-family: var(--ff-display); font-size: 22px; font-weight: 800; }
.bg-green .pcard h3 { color: #fff; }
.pcard p { margin-top: 10px; font-size: 16px; color: var(--ink-soft); }
.bg-green .pcard p { color: rgba(255,255,255,.78); }
.pcard__no { position: absolute; top: 18px; right: 24px; font-family: var(--ff-display); font-weight: 800; font-size: 15px; color: var(--line); }
.bg-green .pcard__no { color: rgba(255,255,255,.25); }

/* ============================================================ WELCOME PACK */
.pack { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,72px); align-items: center; }
.pack__list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 2px; }
.pack__list li { display: flex; gap: 18px; align-items: flex-start; padding: 18px 4px; border-bottom: 1px solid rgba(255,255,255,.14); }
.pack__list li:last-child { border-bottom: none; }
.pack__list .n { font-family: var(--ff-display); font-weight: 800; color: #F4C9A0; font-size: 15px; min-width: 26px; padding-top: 4px; }
.pack__list strong { font-weight: 800; font-size: 18px; display: block; }
.pack__list span { color: rgba(255,255,255,.72); font-size: 15px; }
.pack__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

/* ============================================================ HOUSES */
.house { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,60px); align-items: center; }
.house__media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.house__media .big { grid-column: 1 / -1; }
.house__media img { border-radius: var(--r-md); object-fit: cover; width: 100%; box-shadow: var(--shadow-sm); }
.house__media .big img { aspect-ratio: 16/10; }
.house__media .sm img { aspect-ratio: 1/1; }
.specs { list-style: none; margin: 28px 0; padding: 0; display: grid; gap: 0; }
.specs li { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.specs li:first-child { border-top: 1px solid var(--line); }
.specs .k { font-weight: 700; color: var(--ink-soft); font-size: 16px; display: flex; align-items: center; gap: 12px; }
.specs .v { font-family: var(--ff-display); font-weight: 800; font-size: 22px; color: var(--green-deep); }
.specs .v small { font-size: 14px; color: var(--ink-soft); font-weight: 700; }

/* ============================================================ ADVANTAGES */
.adv-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.acard { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 38px 34px; display: flex; gap: 24px; align-items: flex-start; transition: transform .3s, box-shadow .3s; }
.acard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.acard__ico { width: 60px; height: 60px; flex: none; border-radius: 16px; background: var(--green); color: #F4E7CF; display: grid; place-items: center; }
.acard h3 { font-family: var(--ff-display); font-size: 22px; }
.acard p { margin-top: 8px; color: var(--ink-soft); font-size: 16px; }

/* ============================================================ LOCATION */
.loc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.loc__map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; min-height: 420px; background: #dfe3d6; }
.loc__topo { position: absolute; inset: 0; width: 100%; height: 100%; }
.loc__pin { position: absolute; top: 46%; left: 50%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.loc__pin-dot { width: 56px; height: 56px; border-radius: 50% 50% 50% 6px; background: var(--orange); color: #fff; display: grid; place-items: center; transform: rotate(45deg); box-shadow: 0 14px 28px -8px rgba(225,107,40,.7); }
.loc__pin-dot svg { transform: rotate(-45deg); }
.loc__pin-dot::after { content: ""; position: absolute; width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--orange); opacity: .5; animation: ping 2.4s ease-out infinite; transform: rotate(-45deg); }
@keyframes ping { 0% { transform: rotate(-45deg) scale(1); opacity: .55; } 100% { transform: rotate(-45deg) scale(2.1); opacity: 0; } }
.loc__pin-label { background: #fff; color: var(--green-deep); font-weight: 800; font-size: 14px; padding: 8px 16px; border-radius: 100px; box-shadow: var(--shadow-sm); white-space: nowrap; }
.loc__open { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); background: var(--green-deep); color: #fff; font-weight: 800; font-size: 14px; padding: 12px 22px; border-radius: 100px; display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-md); transition: transform .25s; }
.loc__open:hover { transform: translateX(-50%) translateY(-2px); }
.loc__open:hover .arrow { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) { .loc__pin-dot::after { animation: none; } }
.loc__chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.chip { background: rgba(74,91,54,.08); color: var(--green-deep); font-weight: 700; font-size: 15px; padding: 11px 18px; border-radius: 100px; display: inline-flex; align-items: center; gap: 9px; }
.chip svg { color: var(--orange-deep); }

/* ============================================================ GALLERY */
.carousel { position: relative; }
.carousel__viewport { position: relative; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); background: #ccc; touch-action: pan-y; }
.carousel__track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.carousel__slide { position: relative; flex: 0 0 100%; margin: 0; cursor: zoom-in; aspect-ratio: 16 / 9; }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; filter: saturate(0.82) contrast(1.04) sepia(0.12) brightness(1.02); }
.carousel__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 56px 30px 24px; color: #fff; font-weight: 800; font-size: clamp(16px, 2.1vw, 21px); background: linear-gradient(180deg, transparent, rgba(36,43,31,.78)); pointer-events: none; }
.carousel__zoom { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: rgba(36,43,31,.4); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s; pointer-events: none; }
.carousel__slide:hover .carousel__zoom { opacity: 1; }
.carousel__count { position: absolute; left: 18px; top: 18px; z-index: 3; color: #fff; font-weight: 700; font-size: 13px; letter-spacing: .03em; padding: 5px 11px; border-radius: 999px; background: rgba(36,43,31,.42); backdrop-filter: blur(4px); font-variant-numeric: tabular-nums; pointer-events: none; }
.carousel__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(250,249,247,.86); color: var(--green-deep); box-shadow: 0 6px 20px rgba(20,24,16,.22); transition: background .25s, transform .25s; z-index: 3; }
.carousel__nav:hover { background: #fff; }
.carousel__nav.prev { left: 18px; }
.carousel__nav.next { right: 18px; }
.carousel__nav.prev:hover { transform: translateY(-50%) scale(1.08); }
.carousel__nav.next:hover { transform: translateY(-50%) scale(1.08); }
.carousel__dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.carousel__dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(36,43,31,.22); cursor: pointer; transition: background .25s, width .25s; }
.carousel__dot:hover { background: rgba(36,43,31,.42); }
.carousel__dot.active { background: var(--orange); width: 28px; }
.lightbox img { filter: saturate(0.86) sepia(0.1); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,24,16,.93); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; padding: 30px; backdrop-filter: blur(6px); }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: min(1100px,92vw); max-height: 86vh; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; transition: background .25s, transform .25s; }
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ============================================================ FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: none; text-align: left; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 30px 4px; font-family: var(--ff-display); font-weight: 800; font-size: clamp(19px,2vw,26px); color: var(--green-deep); transition: color .2s; }
.faq__q:hover { color: var(--orange-deep); }
.faq__plus { flex: none; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--line); display: grid; place-items: center; transition: transform .35s, background .3s, border-color .3s, color .3s; color: var(--green); }
.faq__item.open .faq__plus { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(135deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.2,.7,.2,1); }
.faq__a-inner { padding: 0 4px 30px; color: var(--ink-soft); font-size: 17px; line-height: 1.7; max-width: 760px; }
.faq__a-inner a { color: var(--orange-deep); font-weight: 700; border-bottom: 1px solid rgba(171,83,33,.4); }

/* ============================================================ FORM */
.reg { display: grid; grid-template-columns: .85fr 1.15fr; gap: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.reg__aside { background: var(--green-deep); color: var(--cream); padding: clamp(36px,4vw,60px); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.reg__aside h2 { color: #fff; }
.reg__aside .eyebrow { color: #F4C9A0; }
.reg__pts { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 16px; }
.reg__pts li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: rgba(255,255,255,.85); }
.reg__pts svg { flex: none; color: #F4C9A0; margin-top: 3px; }
.reg__form { background: #fff; padding: clamp(34px,4vw,56px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 800; font-size: 14px; color: var(--green-deep); margin-bottom: 8px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 16px; padding: 15px 18px;
  border: 1.5px solid var(--line); border-radius: 14px; background: var(--paper); color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(74,91,54,.1); }
.field.err input, .field.err select { border-color: #C0492B; background: #FCF1EE; }
.field .msg { color: #C0492B; font-size: 13px; font-weight: 700; margin-top: 6px; display: none; }
.field.err .msg { display: block; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.roleseg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.roleseg button { padding: 14px; border-radius: 14px; border: 1.5px solid var(--line); background: var(--paper); font-weight: 800; font-size: 15px; color: var(--ink-soft); transition: .2s; }
.roleseg button.active { border-color: var(--green); background: var(--green); color: #fff; }
.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--paper); }
.stepper button { width: 50px; height: 52px; border: none; background: none; font-size: 22px; color: var(--green-deep); font-weight: 700; }
.stepper button:hover { background: rgba(74,91,54,.08); }
.stepper input { width: 60px; text-align: center; border: none; background: none; font-weight: 800; font-size: 18px; }
.stepper input:focus { box-shadow: none; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); margin: 6px 0 22px; }
.consent input { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--green); }

.reg__success { text-align: center; padding: 30px 10px; }
.reg__success .check { width: 84px; height: 84px; border-radius: 50%; background: var(--green); display: grid; place-items: center; margin: 0 auto 24px; animation: pop .5s cubic-bezier(.2,1.3,.4,1); }
@keyframes pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ============================================================ FOOTER */
.footer { background: var(--choc); color: var(--cream); padding-top: clamp(60px,7vw,90px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer h4 { color: #fff; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; font-family: var(--ff-body); font-weight: 800; margin-bottom: 20px; }
.footer a.fl { display: block; color: rgba(255,255,255,.78); padding: 7px 0; font-weight: 600; transition: color .2s; }
.footer a.fl:hover { color: #F4C9A0; }
.footer__brand p { color: rgba(255,255,255,.7); max-width: 340px; margin-top: 18px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 26px 0; flex-wrap: wrap; gap: 12px; font-size: 14px; color: rgba(255,255,255,.55); }
.socials { display: flex; gap: 12px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #fff; transition: background .25s, transform .25s; }
.socials a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .legend, .pack, .house, .loc, .reg { grid-template-columns: 1fr; }
  .hero--split { grid-template-columns: 1fr; }
  .hero--split .hero__bg { min-height: 50svh; }
  .prog-grid { grid-template-columns: repeat(2,1fr); }
  .adv-grid { grid-template-columns: 1fr; }
  .carousel__cap { padding: 44px 22px 20px; }
  .legend__media img { aspect-ratio: 16/11; }
  .legend__badge { width: 120px; height: 120px; font-size: 21px; left: auto; right: -10px; }
  .reg__aside { order: 2; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .nav { padding: 16px 0; }
  .nav__links, .nav__date { display: none; }
  .nav__right .btn--primary { display: none; }
  .nav__burger { display: grid; place-items: center; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line); padding: 28px 14px; }
  .stat:nth-child(even) { border-right: none; }
  .prog-grid { grid-template-columns: 1fr; }
  .carousel__slide { aspect-ratio: 4 / 3; }
  .carousel__nav { width: 42px; height: 42px; }
  .carousel__nav.prev { left: 10px; }
  .carousel__nav.next { right: 10px; }
  .carousel__cap { font-size: 15px; padding: 40px 16px 16px; }
  .house__media { grid-template-columns: 1fr 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom .btn { width: 100%; }
  .hero { align-items: flex-end; }
  .hero__inner { padding-top: 92px; }
  .hero h1 { overflow-wrap: break-word; }
  .hero__sub { font-size: 17px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__meta { gap: 10px; }
  .pill { padding: 11px 16px; font-size: 14px; gap: 8px; }
  .legend__media img { aspect-ratio: 4/3; }
  .legend__badge { width: 96px; height: 96px; font-size: 17px; bottom: -18px; right: 10px; left: auto; }
  .scrollcue { display: none; }
  .lb-prev { left: 14px; }
  .lb-next { right: 14px; }
  .lb-close { top: 16px; right: 16px; }
}
@media (max-width: 420px) {
  .wrap { padding-inline: 18px; }
  .h-xl { font-size: clamp(42px, 12vw, 60px); }
  .btn--lg { padding: 17px 26px; font-size: 16px; }
  .hero__oh { font-size: 18px; }
  .reg__form, .reg__aside { padding: 28px 22px; }
  .faq__q { font-size: 18px; padding: 24px 4px; gap: 14px; }
  .faq__plus { width: 34px; height: 34px; }
  .pcard { padding: 26px 22px; }
  .legend__badge { width: 84px; height: 84px; font-size: 15px; }
}

/* mobile menu */
.mmenu { position: fixed; inset: 0; z-index: 90; background: var(--green-deep); color: #fff; display: flex; flex-direction: column; justify-content: center; padding: 40px; gap: 8px; transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.mmenu.open { transform: none; }
.mmenu a { font-family: var(--ff-display); font-weight: 800; font-size: 30px; color: #fff; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mmenu__close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; }
