/* =========================================================
   Golden Gables — Property Management
   Design language inspired by modusprojects.nl
   Premium, minimal, warm-neutral with gold accent
   ========================================================= */

:root {
  /* Palette */
  --cream:      #F6F2EA;
  --cream-2:    #EFE9DD;
  --paper:      #FFFFFF;
  --ink:        #1A1815;
  --ink-soft:   #57514A;
  --ink-mute:   #8A837A;
  --taupe:      #E7DFD2;
  --line:       #E2DACC;
  --gold:       #A9843F;
  --gold-deep:  #8A6B31;
  --gold-soft:  #C9A96A;

  /* Type */
  --f-head: "Manrope", "Segoe UI", system-ui, sans-serif;
  --f-body: "Inter", "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  /* distance from viewport edge to the centered content edge (for full-bleed) */
  --edge: calc((100vw - min(100vw, var(--wrap))) / 2 + var(--gutter));
  --section-y: clamp(64px, 9vw, 140px);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--f-head);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
}
p { margin: 0 0 1em; }

/* ---------- Utilities ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.eyebrow {
  font-family: var(--f-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.lead { font-size: clamp(19px, 2.2vw, 23px); color: var(--ink-soft); line-height: 1.5; }
.muted { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--cream);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-head); font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn:hover svg { transform: translateX(4px); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--light { --bg: var(--cream); --fg: var(--ink); }
.btn--gold { --bg: var(--gold); --fg: #fff; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-color: color-mix(in srgb, var(--cream) 16%, transparent); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; }
.brand__logo { height: 52px; width: auto; display: block; }
@media (max-width: 560px) { .brand__logo { height: 40px; } }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a { font-family: var(--f-head); font-weight: 600; font-size: 15.5px; color: var(--cream); position: relative; padding: 4px 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold-soft); transition: width .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__cta .btn { --bg: var(--cream); --fg: var(--ink); border-color: var(--cream); }
.nav__toggle { display: none; }

/* Mobile nav */
.nav__burger {
  display: none; width: 44px; height: 44px; border: 1px solid color-mix(in srgb, var(--cream) 30%, transparent);
  background: transparent; border-radius: 50%; cursor: pointer; position: relative;
  flex: none; transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav__burger:hover { border-color: var(--cream); }
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 1.6px;
  background: var(--cream); transform: translate(-50%, -50%); transition: .3s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(30px, 5vw, 60px); }
.hero__inner { display: grid; gap: clamp(28px, 4vw, 56px); }
.hero__title {
  font-size: clamp(42px, 8.2vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 14ch;
}
.hero__title em { font-style: normal; color: var(--gold-deep); }
.hero__meta { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: end; }
.hero__desc { max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media {
  margin-top: clamp(24px, 4vw, 48px);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px;
  height: clamp(320px, 46vw, 560px);
}
.hero__media .ph { border-radius: var(--radius); }
.hero__media .stack { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }

/* Image placeholder component (swap for real photos later) */
.ph {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--gold-soft) 22%, var(--cream)) 0%, var(--cream-2) 55%, var(--taupe) 100%);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--f-head); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 40%, transparent);
  padding: 6px 12px; border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent); border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 40%, transparent);
}
.ph--tall { min-height: 100%; }

/* Real photo applied via JS (label -> image map) */
.ph.has-img { background-size: cover; background-position: center; background-repeat: no-repeat; }
.ph.has-img::after { display: none; }

/* =========================================================
   Marquee gallery (horizontal scroll strip)
   ========================================================= */
.strip { padding-block: clamp(10px, 2vw, 24px) var(--section-y); }
.strip__scroller {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 14px; padding-inline: var(--gutter);
  scrollbar-width: thin;
}
.strip__scroller .ph { flex: 0 0 clamp(240px, 32vw, 380px); height: clamp(200px, 26vw, 300px); scroll-snap-align: start; border-radius: var(--radius); }
.strip__hint { display: flex; align-items: center; gap: 8px; color: var(--ink-mute); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; margin: 14px var(--gutter) 0; }

/* =========================================================
   Section heading block
   ========================================================= */
.head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 60px); align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.head__title { font-size: clamp(30px, 4.6vw, 56px); letter-spacing: -0.03em; max-width: 16ch; }
.head__aside { max-width: 42ch; }

/* =========================================================
   Services — accordion cards
   ========================================================= */
.services { border-top: 1px solid var(--line); }
.svc { border-bottom: 1px solid var(--line); }
.svc__row {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  padding: clamp(24px, 3vw, 40px) 0;
  font-family: var(--f-head);
}
.svc__num { font-size: 14px; font-weight: 700; color: var(--gold-deep); letter-spacing: 0.1em; }
.svc__name { font-size: clamp(24px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); transition: color .3s var(--ease); }
.svc__row:hover .svc__name { color: var(--gold-deep); }
.svc__icon { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; position: relative; flex: none; transition: .3s var(--ease); }
.svc__icon::before, .svc__icon::after { content: ""; position: absolute; background: var(--ink); transition: .3s var(--ease); }
.svc__icon::before { width: 14px; height: 1.6px; }
.svc__icon::after { width: 1.6px; height: 14px; }
.svc[aria-expanded="true"] .svc__icon { background: var(--ink); border-color: var(--ink); }
.svc[aria-expanded="true"] .svc__icon::before, .svc[aria-expanded="true"] .svc__icon::after { background: var(--cream); }
.svc[aria-expanded="true"] .svc__icon::after { height: 0; }
.svc__panel { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.svc__panel-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 56px);
  padding-bottom: clamp(28px, 3.5vw, 48px); align-items: center;
}
.svc__panel .ph { height: clamp(220px, 26vw, 300px); border-radius: var(--radius); }
.svc__body p { color: var(--ink-soft); max-width: 44ch; }
.svc__list { display: grid; gap: 10px; margin: 18px 0 24px; }
.svc__list li { display: flex; gap: 10px; align-items: baseline; color: var(--ink-soft); font-size: 15.5px; }
.svc__list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; transform: translateY(6px); }

/* =========================================================
   Service carousel (Build & Renovate)
   ========================================================= */
.carousel { position: relative; }
/* full-bleed: first card aligns with page content, cards run off the right edge */
.carousel--full { padding-left: var(--edge); }
.carousel--full .carousel__head { padding-right: var(--edge); }
.carousel__head { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 22px; }
.carousel__btn {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), opacity .3s var(--ease);
}
.carousel__btn:hover:not(:disabled) { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.carousel__btn:disabled { opacity: .3; cursor: default; }
.carousel__viewport { overflow: hidden; padding-block: 6px; margin-block: -6px; }
.carousel__track {
  display: flex; gap: clamp(14px, 1.6vw, 20px);
  transition: transform .55s var(--ease); will-change: transform;
}

.svc-tile {
  flex: 0 0 clamp(260px, 31%, 342px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), box-shadow .4s var(--ease);
}
.svc-tile:hover { border-color: var(--gold-soft); box-shadow: 0 20px 44px -30px rgba(60,45,20,.5); }
.svc-tile:hover .svc-tile__media { transform: scale(1.04); }
.svc-tile__media {
  position: relative; height: clamp(172px, 20vw, 204px);
  background-size: cover; background-position: center; background-color: var(--cream-2);
  transition: transform .6s var(--ease);
}
.svc-tile__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(22,18,12,.42)); }
.svc-tile__num {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--f-head); font-size: 11.5px; font-weight: 700; letter-spacing: .12em;
  color: #fff; background: color-mix(in srgb, var(--gold-deep) 84%, transparent);
  padding: 5px 11px; border-radius: 999px;
}
.svc-tile__ic {
  position: absolute; bottom: -22px; left: 20px; z-index: 3;
  width: 46px; height: 46px; border-radius: 12px; background: var(--paper);
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-deep);
  box-shadow: 0 10px 22px -14px rgba(0,0,0,.5);
}
.svc-tile__ic svg { width: 22px; height: 22px; }
.svc-tile__content { padding: 36px clamp(20px, 2vw, 24px) clamp(22px, 2.4vw, 26px); display: flex; flex-direction: column; gap: 10px; }
.svc-tile h3 { font-size: 18px; letter-spacing: -0.01em; }
.svc-tile p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin: 0; }

/* =========================================================
   Principles (three columns)
   ========================================================= */
.principles { background: var(--ink); color: var(--cream); }
.principles .eyebrow { color: var(--gold-soft); }
.principles .head__title { color: var(--cream); }
.principles .head__aside { color: color-mix(in srgb, var(--cream) 72%, transparent); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: color-mix(in srgb, var(--cream) 14%, transparent); border: 1px solid color-mix(in srgb, var(--cream) 14%, transparent); border-radius: var(--radius); overflow: hidden; }
.pillar { background: var(--ink); padding: clamp(28px, 3.4vw, 44px); }
.pillar__k { font-family: var(--f-head); font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 22px; }
.pillar h3 { font-size: clamp(22px, 2.6vw, 30px); margin-bottom: 14px; }
.pillar p { color: color-mix(in srgb, var(--cream) 68%, transparent); font-size: 15.5px; margin: 0; }

/* =========================================================
   Stats
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); border-top: 1px solid var(--line); padding-top: clamp(36px, 4vw, 56px); }
.stat__n { font-family: var(--f-head); font-weight: 800; font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.03em; line-height: 1; }
.stat__n span { color: var(--gold-deep); }
.stat__l { color: var(--ink-soft); font-size: 15px; margin-top: 8px; }

/* =========================================================
   Portfolio / properties grid
   ========================================================= */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.pcard { display: block; }
.pcard .ph { height: clamp(240px, 28vw, 340px); border-radius: var(--radius); margin-bottom: 16px; transition: transform .5s var(--ease); }
.pcard:hover .ph { transform: translateY(-6px); }
.pcard__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pcard__name { font-family: var(--f-head); font-weight: 700; font-size: 18px; }
.pcard__tag { font-size: 13px; color: var(--gold-deep); letter-spacing: 0.08em; text-transform: uppercase; }
.pcard__loc { color: var(--ink-mute); font-size: 14px; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-band__inner { display: grid; grid-template-columns: 1fr auto; gap: clamp(24px, 4vw, 48px); align-items: center; }
.cta-band__title { font-size: clamp(30px, 4.4vw, 54px); letter-spacing: -0.03em; max-width: 18ch; }

/* =========================================================
   Steps (how it works)
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.step { border-top: 2px solid var(--ink); padding-top: 20px; }
.step__n { font-family: var(--f-head); font-weight: 800; font-size: 15px; color: var(--gold-deep); letter-spacing: 0.1em; margin-bottom: 14px; }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 72px); align-items: start; }
.faq-aside { position: sticky; top: 100px; }
.faq-aside .head__title { font-size: clamp(30px, 4.2vw, 50px); }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: clamp(20px, 2.3vw, 28px) 0;
  font-family: var(--f-head); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(17px, 1.9vw, 20px); color: var(--ink);
  transition: color .3s var(--ease);
}
.faq__q:hover { color: var(--gold-deep); }
.faq__icon { width: 34px; height: 34px; flex: none; border: 1px solid var(--line); border-radius: 50%; position: relative; transition: .3s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink); transition: .3s var(--ease); }
.faq__icon::before { width: 12px; height: 1.6px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1.6px; height: 12px; transform: translate(-50%, -50%); }
.faq__item[aria-expanded="true"] .faq__icon { background: var(--ink); border-color: var(--ink); }
.faq__item[aria-expanded="true"] .faq__icon::before, .faq__item[aria-expanded="true"] .faq__icon::after { background: var(--cream); }
.faq__item[aria-expanded="true"] .faq__icon::after { height: 0; }
.faq__a { overflow: hidden; height: 0; }
.faq__item[aria-expanded="true"] .faq__a { height: auto; }
.faq__a-inner { padding-bottom: clamp(20px, 2.4vw, 28px); max-width: 70ch; opacity: 0; transform: translateY(-4px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.faq__item[aria-expanded="true"] .faq__a-inner { opacity: 1; transform: none; }
.faq__a-inner p { color: var(--ink-soft); font-size: 16px; line-height: 1.72; margin: 0; }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); }
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label { font-family: var(--f-head); font-weight: 600; font-size: 14px; }
.field input, .field textarea, .field select {
  font-family: var(--f-body); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 18%, transparent);
}
.field textarea { resize: vertical; min-height: 130px; }
.contact-info li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info .k { font-family: var(--f-head); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; }
.contact-info .v { font-size: 17px; }

/* =========================================================
   Intake form (contact page)
   ========================================================= */
.intake { max-width: 860px; }
.intake .section-head { display: flex; align-items: baseline; gap: 12px; margin: 0 0 22px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.intake .section-num { font-family: var(--f-head); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; color: var(--gold-deep); }
.intake .section-head h2 { font-family: var(--f-head); font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; letter-spacing: -0.02em; margin: 0; }
.intake .section { margin-bottom: clamp(36px, 5vw, 56px); }
.intake .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.intake .field.full { grid-column: 1 / -1; }
.intake label { display: block; font-family: var(--f-head); font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.intake label .req { color: var(--error, #B3432B); }
.intake label .opt { color: var(--ink-mute); font-weight: 400; }
.intake .helper { font-size: 13px; color: var(--ink-mute); margin-top: 6px; }

/* ---- stepper / progress ---- */
.intake .stepper { display: flex; margin: 0 0 clamp(30px, 4vw, 48px); }
.intake .stepper__item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; position: relative; text-align: center; }
.intake .stepper__item::before { content: ""; position: absolute; top: 18px; right: 50%; width: 100%; height: 2px; background: var(--line); z-index: 0; }
.intake .stepper__item:first-child::before { display: none; }
.intake .stepper__item.is-active::before, .intake .stepper__item.is-done::before { background: var(--gold-soft); }
.intake .stepper__num { position: relative; z-index: 1; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); border: 2px solid var(--line); font-family: var(--f-head); font-weight: 700; font-size: 14px; color: var(--ink-mute); transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease); }
.intake .stepper__label { font-family: var(--f-head); font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em; color: var(--ink-mute); transition: color .3s var(--ease); }
.intake .stepper__item.is-active .stepper__num { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.intake .stepper__item.is-active .stepper__label { color: var(--ink); }
.intake .stepper__item.is-done .stepper__num { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.intake .stepper__item.is-done .stepper__label { color: var(--ink-soft); }
@media (max-width: 560px) { .intake .stepper__label { display: none; } }

/* ---- step panels ---- */
.intake .step { display: none; }
.intake .step.is-active { display: block; animation: fadeStep .35s var(--ease); }
@keyframes fadeStep { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.intake .form-nav { display: flex; align-items: center; gap: 14px; margin-top: clamp(28px, 4vw, 44px); padding-top: 28px; border-top: 1px solid var(--line); }
.intake .form-nav .spacer { flex: 1; }
.intake .form-nav [hidden] { display: none; }

/* pill radio groups */
.intake .pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.intake .budget-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 600px) { .intake .budget-grid { grid-template-columns: repeat(3, 1fr); } }
.intake .pill { position: relative; }
.intake .pill input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.intake .pill span { display: flex; align-items: center; justify-content: center; text-align: center; height: 100%; padding: 12px 18px; font-family: var(--f-head); font-size: 14.5px; font-weight: 600; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--ink); cursor: pointer; transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease); }
.intake .budget-grid .pill span { border-radius: var(--radius); }
.intake .pill span:hover { border-color: var(--gold-soft); }
.intake .pill input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.intake .pill input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

.intake .checkbox-row { display: flex; align-items: flex-start; gap: 12px; margin-top: 10px; }
.intake .checkbox-row input { margin-top: 4px; width: 18px; height: 18px; flex: none; accent-color: var(--gold-deep); }
.intake .checkbox-row label { font-weight: 400; font-size: 14.5px; color: var(--ink-soft); margin: 0; }

.intake .submit-area { margin-top: clamp(36px, 5vw, 52px); padding-top: 28px; border-top: 1px solid var(--line); }
.intake .submit-note { font-size: 13px; color: var(--ink-mute); margin: 16px 0 0; max-width: 52ch; }
.intake .submit-note .req { color: var(--error, #B3432B); }

.intake .error-text { color: var(--error, #B3432B); font-size: 13px; margin-top: 6px; display: none; }
.intake .field.invalid input, .intake .field.invalid select, .intake .field.invalid textarea { border-color: var(--error, #B3432B); box-shadow: 0 0 0 3px color-mix(in srgb, #B3432B 14%, transparent); }
.intake .field.invalid .error-text { display: block; }

.intake .measure-line { display: flex; align-items: center; gap: 10px; margin-top: 24px; font-family: var(--f-head); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
.intake .measure-line .dash { flex: 1; max-width: 120px; height: 1.5px; background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 5px, transparent 5px, transparent 10px); }

#confirmation { display: none; text-align: center; padding: clamp(48px, 7vw, 80px) 20px; }
#confirmation .check { width: 58px; height: 58px; border-radius: 50%; background: var(--success, #3F7D58); color: #fff; display: grid; place-items: center; margin: 0 auto 22px; font-size: 26px; }
#confirmation h2 { font-family: var(--f-head); font-size: clamp(24px, 3vw, 32px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px; }
#confirmation p { color: var(--ink-soft); max-width: 44ch; margin: 0 auto; }

@media (max-width: 640px) { .intake .grid { grid-template-columns: 1fr; } }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: var(--cream); padding-block: clamp(56px, 7vw, 96px) 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); padding-bottom: 48px; border-bottom: 1px solid color-mix(in srgb, var(--cream) 16%, transparent); }
.site-footer .brand { color: var(--cream); }
.site-footer .brand__mark { border-color: var(--gold-soft); color: var(--gold-soft); }
.footer-col h4 { font-family: var(--f-head); font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: color-mix(in srgb, var(--cream) 72%, transparent); font-size: 15px; margin-bottom: 12px; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--cream); }
.footer-about p { max-width: 34ch; color: color-mix(in srgb, var(--cream) 70%, transparent); margin-top: 18px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; color: color-mix(in srgb, var(--cream) 55%, transparent); font-size: 13.5px; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .hero__meta, .head, .cta-band__inner, .contact-grid,
  .svc__panel-inner, .hero__media, .faq-layout { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .hero__media { height: auto; }
  .hero__media .stack { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .hero__media .ph { height: clamp(200px, 44vw, 300px); }
  .pillars { grid-template-columns: 1fr; }
  .stats, .steps { grid-template-columns: repeat(2, 1fr); }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }

  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: grid; place-items: center; }

  .nav-backdrop {
    position: fixed; inset: 78px 0 0 0; background: color-mix(in srgb, var(--ink) 40%, transparent);
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility 0s linear .35s;
    z-index: 55;
  }
  .nav.is-open .nav-backdrop {
    opacity: 1; visibility: visible; transition: opacity .35s var(--ease);
  }

  .nav__links {
    flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; inset: 78px 0 auto 0; z-index: 56;
    background: var(--ink); border-bottom: 1px solid color-mix(in srgb, var(--cream) 16%, transparent);
    box-shadow: 0 24px 48px -24px rgba(0,0,0,.5);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 8px var(--gutter) 22px;
    max-height: calc(100vh - 78px); overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  }
  .nav.is-open .nav__links {
    display: flex; opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav.is-open .nav__links a {
    font-size: 20px; padding: 16px 0; width: 100%;
    border-bottom: 1px solid color-mix(in srgb, var(--cream) 16%, transparent);
  }
  .nav.is-open .nav__links li:last-child a { border-bottom: 0; }
  .nav.is-open .nav__links::after {
    content: ""; display: block; margin-top: 6px;
  }
  .nav__burger span { transition: background .3s var(--ease); }
  .nav.is-open .nav__burger { border-color: var(--gold-soft); background: var(--gold-soft); }
  .nav.is-open .nav__burger span { background: transparent; }
  .nav.is-open .nav__burger span::before,
  .nav.is-open .nav__burger span::after { background: var(--ink); }
  .nav.is-open .nav__burger span::before { top: 0; transform: translate(-50%, -50%) rotate(45deg); }
  .nav.is-open .nav__burger span::after { top: 0; transform: translate(-50%, -50%) rotate(-45deg); }
}
@media (max-width: 560px) {
  .stats, .steps, .grid-cards, .footer-top, .svc-grid { grid-template-columns: 1fr; }
  .hero__media .stack { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
