/* =========================================================================
   ADARA REALTY — Design System
   Direction: Apple × Compass × Pam Golding — whitespace, large photography,
   restrained motion, minimal colour. Maroon brand (from logo) + warm gold.
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — maroon family sampled from logo */
  --maroon:        #7A1B2B;
  --maroon-deep:   #5C1421;
  --maroon-bright: #842B3C;
  --maroon-ink:    #3E0D16;

  /* Accent + neutrals (from brief) */
  --gold:      #B8935A;
  --gold-soft: #CBAE82;
  --cream:     #F3F1EC;   /* Soft Grey / section backgrounds */
  --white:     #FFFFFF;

  /* Text */
  --ink:        #1C1A1B;
  --ink-soft:   #524C4E;
  --ink-faint:  #8A8285;
  --on-maroon:  #F3ECE6;

  --line: #E7E2DA;

  /* Type */
  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 132px);
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(28,26,27,.06), 0 2px 8px rgba(28,26,27,.05);
  --shadow-md: 0 8px 30px rgba(28,26,27,.10);
  --shadow-lg: 0 20px 60px rgba(28,26,27,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .5s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
.h-hero  { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 600; }
.h-1     { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
.h-2     { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.h-3     { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); line-height: 1.7; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--maroon { background: var(--maroon); color: var(--on-maroon); }
.section--ink { background: var(--maroon-ink); color: var(--on-maroon); }
.section--maroon h1, .section--maroon h2, .section--maroon h3,
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }
.section--maroon p, .section--ink p { color: rgba(243,236,230,.82); }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head p { margin-top: 16px; }

.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 1.1em 1.9em; line-height: 1;
  font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform .2s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--maroon); color: var(--white); }
.btn--primary:hover { background: var(--maroon-bright); }
.btn--gold { background: var(--gold); color: #241a0e; }
.btn--gold:hover { background: var(--gold-soft); }
.btn--outline { border-color: var(--maroon); color: var(--maroon); }
.btn--outline:hover { background: var(--maroon); color: var(--white); }
.btn--ghost-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--maroon); border-color: #fff; }
.btn--lg { padding: 1.1em 2.4em; font-size: .86rem; }

.textlink {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  color: var(--maroon);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.textlink:hover { gap: .7em; border-color: var(--gold); }
.textlink::after { content: "→"; transition: transform .3s var(--ease); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: inline-flex; align-items: baseline; gap: .12em; font-family: var(--serif); line-height: 1; }
.brand__word { font-size: 1.6rem; font-weight: 600; letter-spacing: .18em; color: var(--white); transition: color var(--dur) var(--ease); }
.brand__sub { font-family: var(--sans); font-size: .52rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); align-self: center; margin-left: .5em; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); }
.nav a { font-size: .82rem; font-weight: 500; letter-spacing: .04em; color: rgba(255,255,255,.9); transition: color .25s var(--ease); position: relative; }
.nav a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:1.5px; background: var(--gold); transition: width .3s var(--ease); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 14px; margin-left: clamp(18px, 2vw, 34px); }

/* Scrolled / solid header state */
.site-header.is-solid { background: var(--maroon); box-shadow: var(--shadow-md); border-color: rgba(0,0,0,.05); }
.site-header.is-solid .site-header__inner { height: 66px; }
/* On light pages the header starts solid */
.site-header.is-solid .brand__word { color: var(--white); }

.nav-toggle { display: none; }

/* ---------- Mobile nav ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 101;   /* above the fixed header */
  background: var(--maroon-deep); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--gutter) + 40px) var(--gutter) var(--gutter);
  transform: translateY(-100%); transition: transform .5s var(--ease);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav__back {
  position: absolute; top: 20px; left: var(--gutter);
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; padding: .6em .2em; transition: color .25s var(--ease);
}
.mobile-nav__back span { font-size: 1.3em; line-height: 1; }
.mobile-nav__back:hover { color: var(--gold-soft); }
.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__links a { font-family: var(--serif); font-size: 2rem; color: #fff; padding: .28em 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-nav .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  text-align: center; color: #fff; overflow: hidden;
  background: var(--maroon-deep);
}
.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(60,13,22,.86) 0%, rgba(110,22,36,.7) 45%, rgba(50,10,18,.95) 100%),
    linear-gradient(0deg, rgba(122,27,43,.42), rgba(122,27,43,.42));
}
.hero__inner { position: relative; z-index: 2; padding: 120px var(--gutter) 80px; max-width: 1000px; }
.hero__logo { margin: 0 auto 26px; }
.hero__logo .word { font-family: var(--serif); font-size: clamp(3.4rem, 12vw, 8rem); font-weight: 600; letter-spacing: .16em; color: var(--cream); line-height: .9; }
.hero__logo .rule { width: 78px; height: 1.5px; background: var(--gold); margin: 22px auto 16px; }
.hero__logo .sub { font-family: var(--sans); font-size: clamp(.7rem, 1.6vw, .95rem); letter-spacing: .42em; text-transform: uppercase; color: var(--gold-soft); }
.hero__tagline { font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 2rem); font-weight: 500; color: #fff; margin-top: 30px; line-height: 1.3; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.7); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; display: grid; justify-items: center; gap: 8px; }
.hero__scroll::after { content:""; width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.7), transparent); animation: scrollpulse 2.2s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100%{opacity:.3; transform: scaleY(.6);} 50%{opacity:1; transform: scaleY(1);} }

/* Hero reveal — the one orchestrated moment */
.reveal { opacity: 0; transform: translateY(24px); }
.hero.is-ready .reveal { opacity: 1; transform: none; transition: opacity 1s var(--ease), transform 1s var(--ease); }
.hero.is-ready .reveal.d1 { transition-delay: .15s; }
.hero.is-ready .reveal.d2 { transition-delay: .35s; }
.hero.is-ready .reveal.d3 { transition-delay: .55s; }
.hero.is-ready .reveal.d4 { transition-delay: .75s; }
.hero.is-ready .hero__bg img { animation: heroZoom 9s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

/* Page hero (inner pages) */
.page-hero { position: relative; padding: 150px var(--gutter) 72px; color: #fff; background: var(--maroon-deep); overflow: hidden; text-align: center; }
.page-hero__bg { position:absolute; inset:0; z-index:0; }
.page-hero__bg img { width:100%; height:100%; object-fit: cover; opacity: .38; }
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(243,236,230,.86); margin-top: 14px; }
.crumbs { font-size: .78rem; letter-spacing: .04em; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.crumbs a:hover { color: var(--gold-soft); }

/* ---------- Scroll reveal (in-page) ---------- */
.rise { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise, .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero.is-ready .hero__bg img { animation: none; }
  .hero__scroll::after { animation: none; }
}

/* ---------- Property / development cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.4vw, 34px); }
.pcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pcard__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__tag { position: absolute; top: 14px; left: 14px; background: rgba(60,13,22,.86); color: #fff; font-size: .64rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .5em .8em; border-radius: 3px; backdrop-filter: blur(4px); }
.pcard__fav { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; transition: background .25s, transform .25s; }
.pcard__fav:hover { transform: scale(1.1); }
.pcard__fav svg { width: 18px; height: 18px; fill: none; stroke: var(--maroon); stroke-width: 1.8; }
.pcard__fav.is-fav { background: var(--maroon); }
.pcard__fav.is-fav svg { fill: #fff; stroke: #fff; }
.pcard__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.pcard__price { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--maroon); letter-spacing: -.01em; }
.pcard__price small { font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.pcard__title { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--ink); margin-top: 6px; }
.pcard__loc { font-size: .85rem; color: var(--ink-faint); margin-top: 3px; display: flex; align-items: center; gap: .4em; }
.pcard__specs { display: flex; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--ink-soft); }
.pcard__specs span { display: inline-flex; align-items: center; gap: .4em; }

/* ---------- Adara Insight ---------- */
.insight { border-left: 2px solid var(--gold); padding: 4px 0 4px 16px; margin-top: 16px; }
.insight__label { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--maroon); letter-spacing: .01em; }
.insight__body { font-style: italic; font-size: .9rem; color: var(--ink-soft); margin-top: 3px; line-height: 1.55; }
.pcard .insight { margin-top: 14px; }
.pcard .insight__body { font-size: .82rem; }

/* ---------- Location chips ---------- */
.loc-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.loc-chip {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .8em 1.4em; border: 1.5px solid var(--line); border-radius: 100px;
  font-size: .9rem; font-weight: 500; color: var(--ink);
  background: var(--white);
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.loc-chip:hover { border-color: var(--maroon); color: var(--maroon); transform: translateY(-2px); background: #fff; }
.loc-chip .count { font-size: .74rem; color: var(--ink-faint); }
.loc-chip:hover .count { color: var(--gold); }

/* ---------- Pillars / feature tiles ---------- */
.pillar { text-align: left; }
.pillar__icon { width: 46px; height: 46px; color: var(--gold); margin-bottom: 18px; }
.pillar__icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; }
.pillar h3 { font-size: 1.35rem; margin-bottom: 8px; }
.pillar p { font-size: .95rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 600; color: var(--gold); line-height: 1; }
.stat__label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(243,236,230,.7); margin-top: 10px; }
/* Brighter variant for stats sitting on a maroon panel */
.stats--onmaroon .stat__num { color: #EBCB94; }
.stats--onmaroon .stat__label { color: rgba(255,255,255,.92); }

/* Attention-grabbing eyebrow (e.g. lead-form heading) */
.eyebrow--glow {
  font-size: 1rem; letter-spacing: .18em; color: var(--gold-soft);
  text-shadow: 0 0 20px rgba(184,147,90,.65), 0 0 4px rgba(184,147,90,.5);
}
.h-1.h-1--glow { text-shadow: 0 2px 30px rgba(0,0,0,.25); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85em 1em; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fff; font-size: .95rem; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(122,27,43,.1); }
.field textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .span-2 { grid-column: 1 / -1; }
.lead-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 46px); box-shadow: var(--shadow-md); }
.form-note { font-size: .8rem; color: var(--ink-faint); margin-top: 6px; }
.form-success { display: none; padding: 20px; background: rgba(184,147,90,.12); border: 1px solid var(--gold); border-radius: var(--radius); color: var(--maroon-deep); font-weight: 500; margin-top: 16px; }
.form-success.show { display: block; }

/* segmented control (buy/rent) */
.segmented { display: inline-flex; background: var(--cream); border-radius: 100px; padding: 4px; gap: 4px; }
.segmented button { padding: .55em 1.3em; border-radius: 100px; font-size: .82rem; font-weight: 600; color: var(--ink-soft); transition: background .25s, color .25s; }
.segmented button.active { background: var(--maroon); color: #fff; }

/* ---------- Filter bar ---------- */
.filterbar { position: sticky; top: 66px; z-index: 40; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); padding: 16px var(--gutter); }
.filterbar__inner { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; max-width: var(--container); margin-inline: auto; }
.filterbar select, .filterbar input { padding: .6em .8em; border: 1.5px solid var(--line); border-radius: var(--radius); font-size: .85rem; background: #fff; }
.filter-count { margin-left: auto; font-size: .85rem; color: var(--ink-faint); }

/* ---------- Calculators ---------- */
.calc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-sm); }
.calc__row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.calc__row label { display: flex; justify-content: space-between; font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.calc__row output { font-variant-numeric: tabular-nums; color: var(--maroon); }
.calc input[type=range] { accent-color: var(--maroon); }
.calc input[type=number], .calc select { padding: .7em .9em; border: 1.5px solid var(--line); border-radius: var(--radius); }
.calc__result { background: var(--maroon); color: #fff; border-radius: var(--radius); padding: 26px; text-align: center; }
.calc__result .big { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 600; font-variant-numeric: tabular-nums; }
.calc__result .lbl { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); }
.calc__meta { display: flex; justify-content: space-between; margin-top: 18px; font-size: .82rem; color: rgba(255,255,255,.8); border-top: 1px solid rgba(255,255,255,.18); padding-top: 14px; }

/* ---------- Testimonials ---------- */
.tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.tcard__quote { font-family: var(--serif); font-size: 1.3rem; line-height: 1.4; color: var(--ink); font-style: italic; }
.tcard__mark { font-family: var(--serif); font-size: 3rem; line-height: 0; color: var(--gold); height: 20px; }
.tcard__who { margin-top: auto; }
.tcard__name { font-weight: 600; font-size: .95rem; }
.tcard__role { font-size: .82rem; color: var(--ink-faint); }

/* ---------- Split / editorial ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.split__media.portrait-ph { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); display: grid; place-items: center; color: rgba(255,255,255,.5); text-align: center; padding: 30px; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; text-align: center; color: #fff; overflow: hidden; background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); }
.cta-banner .container { position: relative; z-index: 1; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25D366; box-shadow: var(--shadow-lg); display: grid; place-items: center; transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--maroon-ink); color: rgba(243,236,230,.78); padding-top: clamp(56px, 7vw, 88px); }
.site-footer a { color: rgba(243,236,230,.78); transition: color .25s; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 48px; }
.footer-brand .brand__word { color: #fff; font-size: 1.9rem; }
.footer-brand p { color: rgba(243,236,230,.6); margin-top: 16px; font-size: .9rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; font-size: .9rem; }
.footer-news input { width: 100%; padding: .8em 1em; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); color: #fff; margin-top: 10px; }
.footer-news input::placeholder { color: rgba(243,236,230,.4); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: rgba(243,236,230,.5); }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 32px; } .mt-l { margin-top: 48px; }
.maxw-60 { max-width: 60ch; } .mx-auto { margin-inline: auto; }
.placeholder-img { background: linear-gradient(135deg, #efe9e2, #e3dccf); display: grid; place-items: center; color: var(--ink-faint); font-size: .8rem; letter-spacing: .08em; }
.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--4, .grid--3, .grid--2, .card-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}
