/* =========================================================
   Open House Hosts — styles.css
   Luxury ink + gold, warm-white, editorial real-estate brand
   Dependency-free.
   ========================================================= */

:root {
  /* Palette */
  --ink:        #0E1116;   /* near-black foreground / dark sections */
  --ink-2:      #161B22;
  --ink-3:      #1F2630;
  --paper:      #FBF9F5;   /* warm white background */
  --paper-2:    #F4F0E8;   /* alt section */
  --white:      #FFFFFF;
  --gold:       #B89150;   /* luxury accent */
  --gold-deep:  #9C7838;
  --gold-soft:  #EADfC8;
  --text:       #1B2027;
  --muted:      #5C6470;
  --muted-2:    #8A929C;
  --line:       #E7E2D7;   /* border */
  --line-dark:  #2A323D;

  /* Type */
  --serif: "Cinzel", Georgia, serif;
  --sans:  "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 56px);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16,20,26,.05), 0 4px 14px rgba(16,20,26,.05);
  --shadow:    0 10px 40px rgba(16,20,26,.10);
  --shadow-lg: 0 30px 80px rgba(16,20,26,.18);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* SVG icon defaults */
.ic { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .85em 1.5em; border-radius: 999px;
  border: 1.5px solid var(--btn-bd); background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn--primary { --btn-bg: var(--gold); --btn-fg: #1A130A; --btn-bd: var(--gold); }
.btn--primary:hover { --btn-bg: var(--gold-deep); --btn-bd: var(--gold-deep); color:#fff; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: transparent; }
.btn--ghost:hover { box-shadow: none; --btn-bg: rgba(14,17,22,.06); }
.btn--line { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--line:hover { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--sm { padding: .6em 1.1em; font-size: .9rem; }
.btn--lg { padding: 1em 1.8em; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Eyebrow / titles ---------- */
.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1rem; display: inline-flex; align-items: center; gap: .6em;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow--light { color: var(--gold); }

.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--ink); color: #E8E6E1; }

.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__title {
  font-family: var(--sans); font-weight: 800; letter-spacing: -.025em; line-height: 1.08;
  font-size: clamp(2rem, 4.6vw, 3.35rem); color: var(--ink);
}
.section__title--light { color: #fff; }
.section__sub { margin-top: 1.1rem; font-size: 1.12rem; color: var(--muted); line-height: 1.6; }
.section__sub--light { color: #B9BEC6; }

/* =========================================================
   Announcement bar
   ========================================================= */
.announce { background: var(--ink); color: #E9E7E2; font-size: .88rem; }
.announce__inner { display: flex; align-items: center; justify-content: center; gap: .65em; padding: .6em 0; text-align: center; }
.announce a { color: var(--gold); font-weight: 600; border-bottom: 1px solid transparent; transition: border-color .2s; }
.announce a:hover { border-color: var(--gold); }
.announce__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(184,145,80,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(184,145,80,.55);} 70%{box-shadow:0 0 0 8px rgba(184,145,80,0);} 100%{box-shadow:0 0 0 0 rgba(184,145,80,0);} }

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,249,245,.82); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.nav.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px rgba(16,20,26,.06); }
.nav__inner { display: flex; align-items: center; gap: 1.5rem; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: .6em; font-family: var(--serif); font-weight: 600; font-size: 1.18rem; letter-spacing: .02em; color: var(--ink); }
.brand__mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: var(--ink); color: var(--gold); }
.brand__accent { color: var(--gold-deep); }

.nav__links { display: flex; gap: 1.9rem; margin-inline: auto; }
.nav__links a { font-size: .96rem; font-weight: 500; color: var(--text); position: relative; padding: .3em 0; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--gold); transition: width .25s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: .65rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: none; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile { display: none; flex-direction: column; padding: 1rem var(--gut) 1.6rem; border-top: 1px solid var(--line); background: var(--paper); }
.mobile a { padding: .85rem 0; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile__cta { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.1rem; }
.mobile__cta .btn { width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); position: relative; }
.hero::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(184,145,80,.10), transparent 70%),
    radial-gradient(40% 40% at 0% 30%, rgba(184,145,80,.06), transparent 70%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.hero__title {
  font-family: var(--sans); font-weight: 800; letter-spacing: -.035em;
  font-size: clamp(2.7rem, 6.4vw, 5rem); line-height: .98; color: var(--ink); margin-bottom: 1.4rem;
}
.hero__title .ital { font-family: var(--serif); font-weight: 600; font-style: normal; color: var(--gold-deep); letter-spacing: -.01em; }
.hero__lead { font-size: 1.2rem; color: var(--muted); max-width: 36ch; line-height: 1.6; }
.hero__lead strong { color: var(--ink); font-weight: 700; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 2.1rem 0 1.6rem; }

.hero__assure { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1.3rem; }
.hero__assure li { display: inline-flex; align-items: center; gap: .5em; font-size: .94rem; font-weight: 500; color: var(--text); }
.hero__assure .ic { color: var(--gold-deep); }

/* hero media */
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 5/6; object-fit: cover; width: 100%; }
.hero__card {
  position: absolute; display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px; padding: .8rem 1rem; box-shadow: var(--shadow);
  animation: floaty 5s ease-in-out infinite;
}
.hero__card strong { display: block; font-size: .92rem; color: var(--ink); }
.hero__card span { display: block; font-size: .8rem; color: var(--muted); }
.hero__card--top { top: 7%; left: -6%; }
.hero__card--bottom { bottom: 7%; right: -6%; animation-delay: -2.5s; }
.hero__card-ic { width: 38px; height: 38px; border-radius: 10px; background: #E9F6EC; color: #1C8A4B; display: grid; place-items: center; flex: none; }
.hero__card-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.hero__avatars { display: flex; }
.hero__avatars span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.hero__avatars span:first-child { margin-left: 0; background: linear-gradient(135deg,#cdd3da,#9aa3ad); }
.hero__avatars span:nth-child(2){ background: linear-gradient(135deg,#e3c98f,var(--gold-deep)); }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }
@media (prefers-reduced-motion: reduce){ .hero__card{ animation: none; } .announce__dot{ animation:none; } }

/* stats */
.stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-top: clamp(48px, 6vw, 84px); border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm); overflow: hidden;
}
.stat { padding: 1.7rem 1.4rem; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat__num { display: block; font-family: var(--sans); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -.03em; color: var(--ink); }
.stat__num small { font-size: .5em; font-weight: 700; color: var(--muted); }
.stat__label { display: block; font-size: .85rem; color: var(--muted); margin-top: .25rem; letter-spacing: .02em; }

/* =========================================================
   Trustline
   ========================================================= */
.trustline { padding: 2.6rem 0; border-bottom: 1px solid var(--line); background: var(--paper); }
.trustline__label { text-align: center; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.1rem; }
.trustline__items { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.3rem; font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.45rem); font-weight: 500; color: var(--ink); letter-spacing: .02em; }
.trustline__items .dot { color: var(--gold); }

/* =========================================================
   Cards grid
   ========================================================= */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.9rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card__ic { width: 54px; height: 54px; border-radius: 14px; background: var(--ink); color: var(--gold); display: grid; place-items: center; margin-bottom: 1.3rem; }
.card__ic svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.28rem; font-weight: 700; letter-spacing: -.01em; color: var(--ink); margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: 1rem; line-height: 1.6; }

.services__note { text-align: center; margin-top: 2.6rem; color: var(--muted); font-size: 1rem; }
.services__note strong { color: var(--ink); }

/* =========================================================
   Steps
   ========================================================= */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,2.6vw,30px); counter-reset: s; }
.step { position: relative; padding-top: 1.6rem; border-top: 2px solid var(--line); }
.step__num { font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--gold-deep); letter-spacing: .05em; }
.step h3 { font-size: 1.22rem; font-weight: 700; color: var(--ink); margin: .7rem 0 .5rem; letter-spacing: -.01em; }
.step p { color: var(--muted); font-size: .98rem; }
.section--alt .step h3 { color: var(--ink); }

/* =========================================================
   Split sections
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 10/11; object-fit: cover; width: 100%; }
.section--dark .split__media img { box-shadow: 0 30px 80px rgba(0,0,0,.45); }

.checklist { list-style: none; padding: 0; margin: 1.8rem 0 2.2rem; display: grid; gap: .9rem; }
.checklist li { display: flex; align-items: flex-start; gap: .75em; font-size: 1.05rem; color: var(--text); line-height: 1.5; }
.checklist .ic { color: var(--gold-deep); margin-top: .25em; }
.checklist--light li { color: #D6DAE0; }
.checklist--light .ic { color: var(--gold); }

/* =========================================================
   Trust mini cards
   ========================================================= */
.mini { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.mini:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.mini__ic { width: 40px; height: 40px; color: var(--gold-deep); fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1rem; }
.mini h3 { font-size: 1.12rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
.mini p { color: var(--muted); font-size: .95rem; }

/* =========================================================
   Pricing
   ========================================================= */
.pricing { align-items: stretch; }
.price {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.3rem 2rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price--feature { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.price--feature:hover { transform: translateY(-14px); }
.price__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #1A130A; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .4em 1em; border-radius: 999px; white-space: nowrap; }
.price__name { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .8rem; }
.price--feature .price__name { color: #fff; }
.price__amt { font-family: var(--sans); font-weight: 800; font-size: 2.6rem; letter-spacing: -.03em; color: var(--ink); line-height: 1; margin-bottom: 1.5rem; }
.price--feature .price__amt { color: #fff; }
.price__from { font-size: .85rem; font-weight: 600; color: var(--muted); letter-spacing: 0; vertical-align: middle; margin-right: .35em; }
.price--feature .price__from { color: var(--gold); }
.price__unit { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price--feature .price__unit { color: #AEB4BD; }
.price ul { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: .7rem; flex: 1; }
.price li { position: relative; padding-left: 1.7em; font-size: .98rem; color: var(--muted); }
.price--feature li { color: #C9CDD4; }
.price li::before { content:""; position:absolute; left:0; top:.5em; width:11px; height:7px; border-left: 2px solid var(--gold-deep); border-bottom: 2px solid var(--gold-deep); transform: rotate(-45deg); }
.price--feature li::before { border-color: var(--gold); }
.pricing__fineprint { text-align: center; margin-top: 1.8rem; font-size: .85rem; color: var(--muted-2); }

/* =========================================================
   Testimonials
   ========================================================= */
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.9rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote__stars { color: var(--gold); letter-spacing: .12em; margin-bottom: 1rem; font-size: 1rem; }
.quote blockquote { font-size: 1.08rem; line-height: 1.6; color: var(--text); margin-bottom: 1.5rem; flex: 1; }
.quote__by { display: flex; align-items: center; gap: .8rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; background: var(--muted); }
.quote__meta { display: flex; flex-direction: column; }
.quote__name { font-weight: 700; color: var(--ink); }
.quote__role { font-size: .85rem; color: var(--muted-2); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 820px; }
.accordion { display: grid; gap: .8rem; }
.ac { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.ac[open] { border-color: var(--gold-soft); box-shadow: var(--shadow-sm); }
.ac summary {
  list-style: none; cursor: pointer; padding: 1.25rem 1.4rem; font-weight: 600; font-size: 1.08rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.ac summary::-webkit-details-marker { display: none; }
.ac summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--gold-deep); transition: transform .3s var(--ease); line-height: 1; }
.ac[open] summary::after { transform: rotate(45deg); }
.ac__body { padding: 0 1.4rem 1.3rem; }
.ac__body p { color: var(--muted); font-size: 1rem; line-height: 1.6; }

/* =========================================================
   CTA / lead form
   ========================================================= */
.cta { background: var(--ink); color: #fff; padding: clamp(64px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 70% at 100% 0%, rgba(184,145,80,.18), transparent 60%); }
.cta__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.cta__copy h2 { font-family: var(--sans); font-weight: 800; letter-spacing: -.03em; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.05; color: #fff; margin-bottom: 1.1rem; }
.cta__sub { color: #B9BEC6; font-size: 1.12rem; max-width: 44ch; }
.cta__points { list-style: none; padding: 0; margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1.3rem; }
.cta__points li { display: inline-flex; align-items: center; gap: .5em; font-weight: 500; color: #E8E6E1; }
.cta__points .ic { color: var(--gold); }

.cta__form { background: var(--white); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); display: grid; gap: 1.05rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field input, .field select {
  font-family: inherit; font-size: 1rem; color: var(--text); width: 100%;
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(184,145,80,.15); }
.field input.is-invalid { border-color: #DC2626; box-shadow: 0 0 0 4px rgba(220,38,38,.12); }
.form-note { font-size: .85rem; color: var(--muted); text-align: center; }
.form-note.is-success { color: #1C8A4B; font-weight: 600; }
.form-note.is-error { color: #DC2626; font-weight: 600; }
.cta__alt { text-align: center; font-size: .9rem; color: var(--muted); margin-top: -.2rem; }
.cta__alt a { color: var(--gold-deep); font-weight: 600; }
.cta__alt a:hover { text-decoration: underline; }

/* Host application form (light section) */
.panel-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow); display: grid; gap: 1.05rem; align-self: start;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field__opt { color: var(--muted-2); font-weight: 400; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--ink-2); color: #C7CCD3; padding: clamp(48px,6vw,76px) 0 2rem; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px,4vw,48px); padding-bottom: 2.6rem; border-bottom: 1px solid var(--line-dark); }
.brand--footer { color: #fff; }
.brand--footer .brand__mark { background: var(--ink-3); }
.brand--footer .brand__accent { color: var(--gold); }
.footer__tag { margin-top: 1rem; font-size: .96rem; color: #8E96A1; max-width: 34ch; line-height: 1.6; }
.footer__col h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #7C848F; margin-bottom: 1.1rem; }
.footer__col a { display: block; padding: .35rem 0; font-size: .98rem; color: #C7CCD3; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }
.footer__col .btn { display: inline-flex; margin-bottom: .9rem; }
.footer__col .btn:hover { color: #1A130A; }
.footer__small { font-size: .92rem; color: #8E96A1; }
.footer__base { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.6rem; font-size: .9rem; color: #7C848F; }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a { color: #7C848F; transition: color .2s; }
.footer__legal a:hover { color: var(--gold); }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); row-gap: 2.4rem; }
  .hero__card--top { left: -2%; }
  .hero__card--bottom { right: -2%; }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { justify-content: space-between; }
  .nav.is-open .mobile { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; }
  .hero__lead { max-width: none; }
  .hero__card--top { left: 2%; }
  .hero__card--bottom { right: 2%; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .split__media { max-width: 520px; }

  .cta__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .price--feature { transform: none; }
  .price--feature:hover { transform: translateY(-6px); }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; text-align: center; }
  .hero__card { padding: .65rem .8rem; }
  .hero__card span { display: none; }
}

@media (max-width: 380px) {
  .hero__card--top { left: 0; top: 4%; }
  .hero__card--bottom { right: 0; }
}
