/* ==========================================================================
   Deedcrest Holdings — design system
   Charcoal / ivory / taupe / muted olive / bronze
   Mobile-first. All color pairs checked against WCAG AA.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Neutrals */
  --ink:        #1B1A17;  /* warm charcoal — primary text */
  --charcoal:   #2A2823;  /* dark surfaces */
  --charcoal-2: #35322B;  /* raised dark surface */
  --slate:      #4A463E;
  --gray:       #6B6559;  /* warm gray — secondary text (AA on ivory) */
  --gray-light: #8C8578;
  --taupe:      #B9AF9F;
  --line:       #E2DCD1;  /* hairlines on light */
  --line-soft:  #EDE8DF;
  --ivory:      #F7F4EE;  /* page background */
  --ivory-2:    #FBF9F5;  /* raised light surface */
  --paper:      #FFFFFF;

  /* Accents */
  --bronze:      #9A6F3C;  /* decorative bronze */
  --bronze-deep: #7A5628;  /* bronze for text on ivory — AA */
  --bronze-lite: #C99A5E;  /* bronze on dark — AA */
  --olive:       #58604A;  /* muted olive */
  --olive-lite:  #98A184;  /* olive on dark */
  --success:     #3F6B4A;
  --danger:      #9B3B32;
  --danger-lite: #E8938A;

  /* Dark-surface text */
  --on-dark:      #F4F1EA;
  --on-dark-soft: #C8C2B5;

  /* Typography */
  --font-display: "Source Serif 4", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-eyebrow: 0.75rem;
  --fs-sm:      0.875rem;
  --fs-base:    1rem;
  --fs-lead:    clamp(1.0625rem, 0.99rem + 0.35vw, 1.1875rem);
  --fs-h4:      clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --fs-h3:      clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --fs-h2:      clamp(1.75rem, 1.45rem + 1.5vw, 2.75rem);
  --fs-h1:      clamp(2.25rem, 1.7rem + 2.6vw, 4rem);

  /* Space */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 3rem;     --sp-8: 4rem;
  --sp-9: 6rem;     --sp-10: 8rem;
  --section-y: clamp(3.5rem, 2.2rem + 5vw, 7rem);

  /* Shape */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(27, 26, 23, 0.05), 0 2px 6px rgba(27, 26, 23, 0.04);
  --shadow:    0 2px 4px rgba(27, 26, 23, 0.04), 0 8px 24px rgba(27, 26, 23, 0.07);
  --shadow-lg: 0 4px 10px rgba(27, 26, 23, 0.06), 0 24px 56px rgba(27, 26, 23, 0.12);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 240ms;

  --wrap: 1200px;
  --wrap-narrow: 760px;
  --header-h: 76px;
}

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: var(--fs-h1); line-height: 1.06; letter-spacing: -0.025em; }
h2 { font-size: var(--fs-h2); line-height: 1.12; letter-spacing: -0.02em; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
a { color: var(--bronze-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-6) 0; }
small { font-size: var(--fs-sm); }

::selection { background: var(--bronze); color: #fff; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--bronze-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--on-dark);
  padding: var(--sp-3) var(--sp-5); border-radius: 0 0 var(--radius) 0;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; color: var(--on-dark); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* ---------- 3. Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--sp-5); }
@media (min-width: 768px) { .wrap { padding-inline: var(--sp-6); } }
.wrap-narrow { max-width: var(--wrap-narrow); margin-inline: auto; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem); }
.section--ivory  { background: var(--ivory); }
.section--paper  { background: var(--ivory-2); }
.section--dark   { background: var(--charcoal); color: var(--on-dark-soft); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--on-dark); }
.section--dark a { color: var(--bronze-lite); }
.section--dark a:hover { color: var(--on-dark); }
.section--olive { background: var(--olive); color: #EDEFE7; }
.section--olive h2, .section--olive h3 { color: #fff; }
.section + .section--ivory, .section--ivory + .section--ivory { border-top: 1px solid var(--line); }

.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); }
                             .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px)  { .grid--auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); } }

.split { display: grid; gap: var(--sp-6); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
                            .split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
                            .split--wide-right { grid-template-columns: 0.85fr 1.15fr; } }

.stack > * + * { margin-top: var(--sp-4); }
.center { text-align: center; }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }

/* ---------- 4. Type helpers ---------- */
.eyebrow {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bronze-deep); margin: 0 0 var(--sp-4);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--bronze); flex: none; }
.eyebrow--center { justify-content: center; }
.section--dark .eyebrow, .section--olive .eyebrow { color: var(--bronze-lite); }
.section--olive .eyebrow { color: #DCE0CF; }
.section--dark .eyebrow::before, .section--olive .eyebrow::before { background: currentColor; opacity: 0.6; }

.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--gray); }
.section--dark .lead, .section--olive .lead { color: var(--on-dark-soft); }
.muted { color: var(--gray); }
.fineprint { font-size: var(--fs-sm); line-height: 1.6; color: var(--gray); }
.section--dark .fineprint { color: var(--on-dark-soft); }

.section-head { max-width: 62ch; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { margin-top: var(--sp-4); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-3);
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  letter-spacing: 0.01em; line-height: 1;
  padding: 1.0625rem var(--sp-6);
  border: 1px solid transparent; border-radius: var(--radius-sm);
  cursor: pointer; text-decoration: none; text-align: center;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--bronze-deep); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #67471F; color: #fff; box-shadow: var(--shadow); }

.btn--dark { background: var(--ink); color: var(--on-dark); }
.btn--dark:hover { background: var(--charcoal-2); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--paper); border-color: var(--taupe); color: var(--ink); }

.btn--onDark { background: transparent; color: var(--on-dark); border-color: rgba(244, 241, 234, 0.35); }
.btn--onDark:hover { background: rgba(244, 241, 234, 0.1); color: #fff; border-color: rgba(244, 241, 234, 0.6); }

.btn--lg { padding: 1.1875rem var(--sp-7); font-size: 1rem; }
.btn--full { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-weight: 600; font-size: 0.9375rem; text-decoration: none;
  color: var(--bronze-deep);
}
.link-arrow svg { transition: transform var(--dur) var(--ease); flex: none; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 6. Header ---------- */
.topbar {
  background: var(--ink); color: var(--on-dark-soft);
  font-size: 0.8125rem; letter-spacing: 0.01em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); min-height: 40px; }
.topbar a { color: var(--on-dark-soft); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar__contact { display: flex; align-items: center; gap: var(--sp-5); }
.topbar__contact a { display: inline-flex; align-items: center; gap: var(--sp-2); }
/* Secondary audiences — present but subordinate to the seller nav below. */
.topbar__audiences { display: none; align-items: center; gap: var(--sp-5); }
@media (min-width: 900px) { .topbar__audiences { display: flex; } }
.topbar__audiences a { position: relative; }
.topbar__audiences a[aria-current="page"] { color: #fff; }
.topbar__audiences a + a::before {
  content: ""; position: absolute; left: calc(var(--sp-5) / -2);
  top: 50%; transform: translateY(-50%);
  width: 1px; height: 12px; background: rgba(244, 241, 234, 0.28);
}
@media (max-width: 520px) { .topbar__contact .topbar__email { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); background: rgba(247, 244, 238, 0.97); }
.site-header .wrap { display: flex; align-items: center; gap: var(--sp-5); min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: var(--sp-3); text-decoration: none; flex: none; }
/* The mark is taller than it is wide — drive it from height so the shield
   keeps its proportions wherever the lockup appears. */
.brand__mark { height: 38px; width: auto; flex: none; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.125rem;
  letter-spacing: -0.01em; color: var(--ink);
}
.brand__sub {
  font-size: 0.5625rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray); font-weight: 600; margin-top: 3px;
}
@media (min-width: 380px) { .brand__mark { height: 44px; } .brand__name { font-size: 1.25rem; } }

.nav-desktop { display: none; }
@media (min-width: 1200px) {
  .nav-desktop { display: flex; align-items: center; gap: clamp(0.5rem, 0.85vw, 1.1rem); margin-left: auto; }
  /* Eight full-length nav items plus a CTA is a wide row — trim the logo
     lockup so everything still fits inside the 1200px content column. */
  .site-header .brand__name { font-size: 1.125rem; }
  .site-header .wrap { gap: var(--sp-4); }
}
.nav-desktop a {
  position: relative; font-size: 0.875rem; font-weight: 500; color: var(--slate);
  text-decoration: none; padding: var(--sp-2) 0; white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--bronze); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a[aria-current="page"]::after { transform: scaleX(1); }
.nav-desktop a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.header-cta { display: none; }
@media (min-width: 1200px) { .header-cta { display: inline-flex; margin-left: var(--sp-4); flex: none; } }
.header-cta--mobile { margin-left: auto; padding: 0.75rem var(--sp-4); font-size: 0.8125rem; }
@media (min-width: 1200px) { .header-cta--mobile { display: none; } }
@media (max-width: 400px) { .header-cta--mobile { display: none; } }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; margin-left: var(--sp-2);
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius-sm);
  cursor: pointer; flex: none;
}
@media (min-width: 1200px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; height: 1.5px; width: 100%; background: var(--ink);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  position: fixed; inset: 0; z-index: 200;
  background: var(--charcoal); color: var(--on-dark);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  /* visibility flips instantly on open (so focus can move in) and only after
     the fade on close — hence the 0s duration with a delay. */
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s var(--dur);
  overflow-y: auto; overscroll-behavior: contain;
}
.nav-mobile.is-open {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s 0s;
}
.nav-mobile__head { display: flex; align-items: center; justify-content: space-between; padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid rgba(244,241,234,0.14); min-height: var(--header-h); }
.nav-mobile__head .brand__name { color: var(--on-dark); }
.nav-mobile__head .brand__sub { color: var(--on-dark-soft); }
.nav-mobile__close {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(244,241,234,0.25); border-radius: var(--radius-sm);
  color: var(--on-dark); cursor: pointer; font-size: 1.25rem; line-height: 1;
}
.nav-mobile__links { padding: var(--sp-4) var(--sp-5) var(--sp-6); }
.nav-mobile__links a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-size: 1.375rem; font-weight: 500;
  color: var(--on-dark); text-decoration: none;
  padding: var(--sp-4) 0; border-bottom: 1px solid rgba(244,241,234,0.12);
}
.nav-mobile__links a[aria-current="page"] { color: var(--bronze-lite); }
.nav-mobile__foot { margin-top: auto; padding: var(--sp-5); border-top: 1px solid rgba(244,241,234,0.14); display: grid; gap: var(--sp-3); }

/* ---------- 7. Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--charcoal); color: var(--on-dark); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(23,22,19,0.94) 0%, rgba(23,22,19,0.86) 42%, rgba(23,22,19,0.55) 72%, rgba(23,22,19,0.42) 100%),
    radial-gradient(120% 90% at 15% 10%, rgba(154,111,60,0.16), transparent 60%);
}
@media (max-width: 899px) {
  .hero__scrim { background: linear-gradient(180deg, rgba(23,22,19,0.93) 0%, rgba(23,22,19,0.9) 55%, rgba(23,22,19,0.95) 100%); }
}
.hero .wrap { position: relative; padding-block: clamp(3rem, 2rem + 6vw, 6.5rem); }
.hero__grid { display: grid; gap: var(--sp-7); align-items: start; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-8); align-items: center; } }

.hero h1 { color: #fff; max-width: 16ch; text-wrap: balance; }
.hero__sub { font-size: var(--fs-lead); color: var(--on-dark-soft); max-width: 54ch; margin-top: var(--sp-5); }

.hero__highlights { list-style: none; margin: var(--sp-6) 0 0; padding: 0; display: grid; gap: var(--sp-3); }
@media (min-width: 560px) { .hero__highlights { grid-template-columns: 1fr 1fr; gap: var(--sp-3) var(--sp-5); } }
.hero__highlights li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: 0.9375rem; color: var(--on-dark); line-height: 1.45;
}
.hero__highlights svg { flex: none; margin-top: 2px; color: var(--bronze-lite); }

.hero__trust {
  margin-top: var(--sp-6); padding-top: var(--sp-5);
  border-top: 1px solid rgba(244,241,234,0.16);
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-6);
  font-size: 0.8125rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--on-dark-soft); font-weight: 600;
}
.hero__trust span { display: inline-flex; align-items: center; gap: var(--sp-2); }
.hero__trust svg { color: var(--olive-lite); flex: none; }

/* ---------- 8. Forms ---------- */
.form-card {
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; color: var(--ink);
}
.form-card__head { padding: var(--sp-5) var(--sp-5) 0; }
@media (min-width: 480px) { .form-card__head { padding: var(--sp-6) var(--sp-6) 0; } }
.form-card__title { font-size: 1.375rem; }
.form-card__body { padding: var(--sp-5); }
@media (min-width: 480px) { .form-card__body { padding: var(--sp-6); } }
.form-card__foot {
  padding: var(--sp-4) var(--sp-5); background: var(--ivory-2);
  border-top: 1px solid var(--line-soft); font-size: 0.8125rem; color: var(--gray);
  display: flex; align-items: center; gap: var(--sp-3); line-height: 1.5;
}
.form-card__foot svg { flex: none; color: var(--olive); }
.form-card--flat { box-shadow: var(--shadow); border: 1px solid var(--line); }

.field { margin-bottom: var(--sp-4); }
.field:last-child { margin-bottom: 0; }
.field > label, .fieldset__legend {
  display: block; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--slate); margin-bottom: var(--sp-2);
}
.field .req { color: var(--danger); margin-left: 2px; }
.field .opt { color: var(--gray-light); font-weight: 400; letter-spacing: 0; margin-left: var(--sp-2); }
.field__hint { font-size: 0.8125rem; color: var(--gray); margin-top: var(--sp-2); line-height: 1.5; }

.input, .select, .textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0.875rem var(--sp-4);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-appearance: none; appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--gray-light); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--taupe); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--bronze-deep);
  box-shadow: 0 0 0 3px rgba(122, 86, 40, 0.14);
}
.textarea { min-height: 118px; resize: vertical; line-height: 1.55; }
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B6559' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right var(--sp-4) center;
  padding-right: var(--sp-7); cursor: pointer;
}
.field--invalid .input, .field--invalid .select, .field--invalid .textarea { border-color: var(--danger); }
.field--invalid .input:focus, .field--invalid .select:focus, .field--invalid .textarea:focus { box-shadow: 0 0 0 3px rgba(155, 59, 50, 0.14); }
.field__error {
  display: none; align-items: center; gap: var(--sp-2);
  font-size: 0.8125rem; color: var(--danger); margin-top: var(--sp-2); font-weight: 500;
}
.field--invalid .field__error { display: flex; }

.field-row { display: grid; gap: var(--sp-4); }
@media (min-width: 560px) { .field-row--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .field-row--3 { grid-template-columns: repeat(3, 1fr); } }

.fieldset { border: 0; padding: 0; margin: 0 0 var(--sp-5); }
.fieldset__legend { padding: 0; }
.choice-grid { display: grid; gap: var(--sp-2); }
@media (min-width: 560px) { .choice-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .choice-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.choice {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: 0.8125rem var(--sp-4); border: 1px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer; background: var(--paper);
  font-size: 0.9375rem; line-height: 1.45;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.choice:hover { border-color: var(--taupe); background: var(--ivory-2); }
.choice input { margin: 3px 0 0; accent-color: var(--bronze-deep); width: 17px; height: 17px; flex: none; }
.choice:has(input:checked) { border-color: var(--bronze-deep); background: rgba(154, 111, 60, 0.06); }
.choice:has(input:focus-visible) { outline: 2px solid var(--bronze-deep); outline-offset: 2px; }

.consent {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: 0.8125rem; line-height: 1.55; color: var(--gray);
  background: var(--ivory-2); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: var(--sp-4);
}
.consent input { margin: 2px 0 0; accent-color: var(--bronze-deep); width: 17px; height: 17px; flex: none; }
.consent a { color: var(--bronze-deep); }
.field--invalid .consent { border-color: var(--danger); }

.upload {
  display: flex; align-items: center; gap: var(--sp-4);
  border: 1px dashed var(--taupe); border-radius: var(--radius-sm);
  padding: var(--sp-5) var(--sp-4); background: var(--ivory-2);
  cursor: pointer; text-align: left;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.upload:hover { border-color: var(--bronze-deep); background: rgba(154, 111, 60, 0.05); }
.upload input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload svg { color: var(--bronze-deep); flex: none; }
.upload__text strong { display: block; font-size: 0.9375rem; color: var(--ink); font-weight: 600; }
.upload__text span { font-size: 0.8125rem; color: var(--gray); }
.upload__list { list-style: none; margin: var(--sp-3) 0 0; padding: 0; display: grid; gap: var(--sp-2); }
.upload__list li { display: flex; align-items: center; gap: var(--sp-2); font-size: 0.8125rem; color: var(--gray); }
.upload__list svg { color: var(--olive); flex: none; }

/* Honeypot */
.hp-field { position: absolute !important; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Multi-step */
.steps-indicator {
  display: flex; align-items: center; gap: var(--sp-2);
  margin-bottom: var(--sp-5); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray);
}
.steps-indicator__bar { flex: 1; height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; }
.steps-indicator__fill { display: block; height: 100%; background: var(--bronze-deep); border-radius: 2px; transition: width 400ms var(--ease); }

.form-step { display: none; }
.form-step.is-active { display: block; animation: stepIn 320ms var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .form-step.is-active { animation: none; } }

.form-nav { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.form-nav .btn { flex: 1; }
.form-nav .btn--ghost { flex: 0 0 auto; }

.form-status { margin-top: var(--sp-4); font-size: 0.875rem; }
.form-status:empty { margin-top: 0; }
.form-status--error { color: var(--danger); font-weight: 500; }
.form-success { text-align: center; padding: var(--sp-6) var(--sp-4); }
.form-success__icon {
  width: 56px; height: 56px; margin: 0 auto var(--sp-4);
  border-radius: 50%; background: rgba(63, 107, 74, 0.12); color: var(--success);
  display: grid; place-items: center;
}

/* ---------- 9. Cards ---------- */
.card {
  position: relative; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-5); height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card h3 { margin-bottom: var(--sp-2); font-size: 1.0625rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.005em; }
.card p { font-size: 0.9375rem; color: var(--gray); line-height: 1.6; }
.card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: rgba(154, 111, 60, 0.1); color: var(--bronze-deep);
  display: grid; place-items: center; margin-bottom: var(--sp-4);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.card--link { text-decoration: none; display: flex; flex-direction: column; color: inherit; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--taupe); color: inherit; }
.card--link:hover .card__icon { background: var(--bronze-deep); color: #fff; }
.card--link .card__cta {
  margin-top: auto; padding-top: var(--sp-4);
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--bronze-deep);
}
.card--link .card__cta svg { transition: transform var(--dur) var(--ease); }
.card--link:hover .card__cta svg { transform: translateX(3px); }

.section--dark .card { background: var(--charcoal-2); border-color: rgba(244,241,234,0.12); }
.section--dark .card p { color: var(--on-dark-soft); }
.section--dark .card__icon { background: rgba(201, 154, 94, 0.16); color: var(--bronze-lite); }
.section--dark .card--link:hover { border-color: rgba(201, 154, 94, 0.5); }
.section--dark .card--link .card__cta { color: var(--bronze-lite); }

/* ---------- 10. Process steps ---------- */
.steps { display: grid; gap: var(--sp-5); counter-reset: step; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); } }
@media (min-width: 1050px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step { position: relative; padding-top: var(--sp-5); border-top: 1px solid var(--line); }
.section--dark .step { border-color: rgba(244,241,234,0.18); }
.step__num {
  font-family: var(--font-display); font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-deep);
  display: block; margin-bottom: var(--sp-3);
}
.section--dark .step__num { color: var(--bronze-lite); }
.step h3 { font-size: 1.125rem; margin-bottom: var(--sp-3); }
.step p { font-size: 0.9375rem; color: var(--gray); }
.section--dark .step p { color: var(--on-dark-soft); }
.step__detail { margin-top: var(--sp-3); font-size: 0.875rem; color: var(--gray-light); }
.section--dark .step__detail { color: var(--taupe); }
.step::before {
  content: ""; position: absolute; top: -1px; left: 0; height: 1px; width: 0;
  background: var(--bronze); transition: width 700ms var(--ease);
}
.step.is-visible::before { width: 100%; }

/* ---------- 11. Situations ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.chip {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  padding: 0.8125rem var(--sp-5) 0.8125rem var(--sp-4);
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  font-size: 0.9375rem; font-weight: 500; color: var(--ink); text-decoration: none;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.chip svg { color: var(--bronze-deep); flex: none; transition: color var(--dur) var(--ease); }
.chip:hover { border-color: var(--bronze-deep); background: var(--paper); transform: translateY(-2px); color: var(--ink); }

/* ---------- 12. Founder / credibility ---------- */
.founder-card {
  background: var(--charcoal-2); border-radius: var(--radius-lg);
  padding: var(--sp-6); color: var(--on-dark-soft);
  border: 1px solid rgba(244,241,234,0.12);
}
.founder-card__photo {
  width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, #3A362E, #221F1A); margin-bottom: var(--sp-5);
}
.founder-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-card__name { font-size: 1.25rem; color: var(--on-dark); }
.founder-card__role { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-lite); margin-top: var(--sp-2); font-weight: 600; }

.stat-row { display: grid; gap: var(--sp-5); }
@media (min-width: 600px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
.stat { border-left: 2px solid var(--bronze); padding-left: var(--sp-4); }
.stat__value { font-family: var(--font-display); font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem); font-weight: 600; line-height: 1; color: var(--ink); }
.section--dark .stat__value { color: var(--on-dark); }
.stat__label { font-size: 0.8125rem; color: var(--gray); margin-top: var(--sp-2); line-height: 1.45; }
.section--dark .stat__label { color: var(--on-dark-soft); }

/* ---------- 13. Projects (coming soon) ---------- */
.project-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 700px) { .project-grid { grid-template-columns: repeat(3, 1fr); } }
.project-placeholder {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); overflow: hidden; display: flex; flex-direction: column;
}
.project-placeholder__frame {
  aspect-ratio: 4 / 3; position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(185,175,159,0.14) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--ivory-2), #EFEAE1);
  display: grid; place-items: center; border-bottom: 1px solid var(--line);
}
.project-placeholder__frame svg { color: var(--taupe); }
.project-placeholder__body { padding: var(--sp-5); }
.project-placeholder__tag {
  display: inline-block; font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray);
  background: var(--ivory); border: 1px solid var(--line);
  padding: 4px var(--sp-3); border-radius: 100px; margin-bottom: var(--sp-3);
}
.project-placeholder h3 { font-size: 1.0625rem; font-family: var(--font-body); font-weight: 600; margin-bottom: var(--sp-2); }
.project-placeholder p { font-size: 0.9375rem; color: var(--gray); }

.case-fields { list-style: none; margin: var(--sp-4) 0 0; padding: 0; display: grid; gap: var(--sp-2); }
.case-fields li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: 0.9375rem; color: var(--gray); }
.case-fields svg { flex: none; margin-top: 4px; color: var(--bronze-deep); }

/* ---------- 14. Service areas ---------- */
.areas-map {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  background: var(--ivory-2); box-shadow: var(--shadow-sm); position: relative;
}
.areas-map iframe { display: block; width: 100%; height: 100%; min-height: 280px; border: 0; }

/* One card per service region: map on top, markets beneath. */
.region-grid { display: grid; gap: var(--sp-6); }
@media (min-width: 860px) { .region-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-7); } }
.region { display: flex; flex-direction: column; }
.region .areas-map iframe { min-height: 260px; }
.region__body { padding-top: var(--sp-5); }
.region__name {
  font-size: 1.25rem; font-family: var(--font-display); letter-spacing: -0.01em;
  padding-bottom: var(--sp-3); border-bottom: 1px solid var(--line);
}
.region__label {
  margin: var(--sp-5) 0 var(--sp-3); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray);
}
.region__body > .market-list:first-of-type { margin-top: var(--sp-4); }
.region__body > .region__label:first-of-type { margin-top: var(--sp-4); }
/* Market rows carry county detail, so give them a full line on phones. */
.region .market-list { grid-template-columns: 1fr; }
@media (min-width: 600px) { .region .market-list { grid-template-columns: 1fr 1fr; } }
.market-list li .muted { font-size: 0.8125rem; }

/* Keeps running prose near a 70-character measure inside a wide wrap.
   Set in px, not ch — the `0` glyph is wider than the average character, so
   `68ch` renders closer to 85 characters. */
.measure > p { max-width: 600px; }

/* Client tagline lockup. */
.tagline {
  font-family: var(--font-display); font-size: 1.0625rem; font-style: italic;
  color: var(--bronze-deep); border-left: 2px solid var(--bronze);
  padding-left: var(--sp-4); line-height: 1.5;
}
.site-footer .footer-region {
  color: var(--taupe); font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; margin-top: var(--sp-3);
}
.site-footer .footer-region:first-child { margin-top: 0; }
.areas-map__fallback { padding: var(--sp-6); text-align: center; }
.market-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-2); grid-template-columns: 1fr 1fr; }
@media (min-width: 560px) { .market-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .market-list { grid-template-columns: 1fr 1fr; } }
.market-list li {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 0.9375rem; color: var(--ink); padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--line-soft);
}
.market-list li svg { color: var(--olive); flex: none; }
.market-list li.is-secondary { color: var(--gray); }

/* ---------- 15. FAQ / accordion ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-5) 0; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.0625rem; font-weight: 600;
  color: var(--ink); line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--bronze-deep); }
.faq-item__icon {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  margin-top: 2px; transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  color: var(--bronze-deep);
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); background: var(--bronze-deep); border-color: var(--bronze-deep); color: #fff; }
.faq-item__answer { padding: 0 0 var(--sp-5); max-width: 74ch; }
.faq-item__answer p { color: var(--gray); font-size: 0.9375rem; }
.faq-item[open] .faq-item__answer { animation: fadeIn 300ms var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .faq-item[open] .faq-item__answer { animation: none; } }
@media (min-width: 640px) { .faq-item summary { font-size: 1.1875rem; } }

/* ---------- 16. Callout / CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--charcoal); color: var(--on-dark-soft); }
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 120% at 85% 15%, rgba(154,111,60,0.22), transparent 62%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band__inner { display: grid; gap: var(--sp-5); align-items: center; }
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1.2fr auto; gap: var(--sp-8); } }
.cta-band h2 { color: #fff; max-width: 22ch; text-wrap: balance; }
.cta-band p { color: var(--on-dark-soft); max-width: 56ch; margin-top: var(--sp-4); }

.callout {
  border-left: 3px solid var(--bronze); background: var(--ivory-2);
  padding: var(--sp-5); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9375rem; color: var(--gray); line-height: 1.6;
}
.callout strong { color: var(--ink); }
.callout--olive { border-color: var(--olive); }

.notice {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  background: rgba(88, 96, 74, 0.07); border: 1px solid rgba(88, 96, 74, 0.22);
  border-radius: var(--radius); padding: var(--sp-5); font-size: 0.875rem;
  color: var(--slate); line-height: 1.6;
}
.notice svg { flex: none; color: var(--olive); margin-top: 2px; }
.notice strong { color: var(--ink); display: block; margin-bottom: var(--sp-1); }

/* ---------- 17. Page hero (interior pages) ---------- */
.page-hero { background: var(--charcoal); color: var(--on-dark-soft); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 120% at 90% 0%, rgba(154,111,60,0.2), transparent 60%);
}
/* Photo-backed variant. The image is deliberately dimmed and desaturated so
   it reads as texture behind the headline rather than competing with it —
   adjust brightness() here to taste, not per page. */
.page-hero--image { isolation: isolate; }
.page-hero--image::after { display: none; }        /* the scrim replaces it */
.page-hero--image .page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero--image .page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(0.68) brightness(0.58) contrast(1.02);
}
.page-hero--image .page-hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(23,22,19,0.93) 0%, rgba(23,22,19,0.84) 44%, rgba(23,22,19,0.58) 100%),
    radial-gradient(75% 120% at 90% 0%, rgba(154,111,60,0.16), transparent 62%);
}
@media (max-width: 899px) {
  /* Keep the photo visible on phones the way it is on desktop — the old
     near-opaque wash hid it almost completely. Still dark enough that white
     headline text clears AA comfortably. */
  .page-hero--image .page-hero__scrim {
    background:
      linear-gradient(180deg, rgba(23,22,19,0.72) 0%, rgba(23,22,19,0.86) 55%, rgba(23,22,19,0.92) 100%),
      radial-gradient(120% 80% at 80% 0%, rgba(154,111,60,0.14), transparent 60%);
  }
  .page-hero--image .page-hero__bg img { filter: saturate(0.7) brightness(0.66); }
}
.page-hero--image .wrap { padding-block: clamp(3.25rem, 2.4rem + 4.5vw, 6rem); }

.page-hero .wrap { position: relative; z-index: 1; padding-block: clamp(2.75rem, 2rem + 4vw, 5rem); }
.page-hero h1 { color: #fff; max-width: 20ch; text-wrap: balance; }
.page-hero p { color: var(--on-dark-soft); max-width: 62ch; margin-top: var(--sp-4); font-size: var(--fs-lead); }

.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2); font-size: 0.8125rem; margin-bottom: var(--sp-4); color: var(--taupe); }
.breadcrumbs a { color: var(--taupe); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span[aria-current] { color: var(--on-dark); }

/* ---------- 18. Prose (legal pages) ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.375rem, 1.2rem + 0.6vw, 1.75rem); margin-top: var(--sp-7); margin-bottom: var(--sp-4); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.125rem; margin-top: var(--sp-5); margin-bottom: var(--sp-3); font-family: var(--font-body); }
.prose p, .prose li { color: var(--slate); line-height: 1.75; }
.prose li { margin-bottom: var(--sp-2); }
.prose ul { padding-left: 1.15em; }

/* ---------- 19. Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark-soft); font-size: 0.9375rem; }
.site-footer h4 {
  color: var(--on-dark); font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: var(--sp-4);
}
.site-footer a { color: var(--on-dark-soft); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-top { padding-block: var(--sp-8) var(--sp-7); display: grid; gap: var(--sp-7); }
@media (min-width: 700px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-6); } }
.footer-brand .brand__name { color: var(--on-dark); }
.footer-brand .brand__sub { color: var(--taupe); }
.footer-brand p { margin-top: var(--sp-4); max-width: 38ch; color: var(--on-dark-soft); line-height: 1.65; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-2); font-size: 0.875rem; }
/* Keep footer links at a comfortable touch target (WCAG 2.5.8). */
.footer-list a, .footer-list li { display: inline-flex; align-items: center; min-height: 26px; padding-block: 2px; }
.footer-contact a { display: inline-flex; align-items: center; min-height: 26px; }
.footer-contact { display: grid; gap: var(--sp-3); font-size: 0.875rem; margin-top: var(--sp-5); }
.footer-contact div { display: flex; gap: var(--sp-3); align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 3px; color: var(--bronze-lite); }
.footer-contact address { font-style: normal; line-height: 1.55; }

.social-row { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(244,241,234,0.2); display: grid; place-items: center;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.social-row a:hover { background: rgba(244,241,234,0.1); border-color: rgba(244,241,234,0.45); }

.footer-legal { border-top: 1px solid rgba(244,241,234,0.14); padding-block: var(--sp-6); }
.footer-disclosures { display: grid; gap: var(--sp-3); font-size: 0.75rem; line-height: 1.7; color: #A49C8E; max-width: 100ch; }
.footer-bottom {
  border-top: 1px solid rgba(244,241,234,0.14); padding-block: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5);
  align-items: center; justify-content: space-between; font-size: 0.8125rem; color: #A49C8E;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); }

/* Sticky mobile action bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(244,241,234,0.16);
  border-top: 1px solid rgba(244,241,234,0.16);
  transform: translateY(100%); transition: transform var(--dur) var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar.is-visible { transform: none; }
@media (min-width: 900px) { .mobile-bar { display: none; } }
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: 1.0625rem var(--sp-3); font-size: 0.875rem; font-weight: 600;
  text-decoration: none; background: var(--ink); color: var(--on-dark);
}
.mobile-bar a.is-primary { background: var(--bronze-deep); color: #fff; }
.mobile-bar svg { flex: none; }
@media (max-width: 899px) { body { padding-bottom: 0; } .has-mobile-bar .site-footer { padding-bottom: 64px; } }

/* ---------- 20. Reveal animation ---------- */
/* Only hide content when JavaScript is running to reveal it again — the `js`
   class is set by an inline script in <head>. Without JS, nothing is hidden. */
.reveal { transition: opacity 640ms var(--ease), transform 640ms var(--ease); }
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 80ms; }
.reveal--d2 { transition-delay: 160ms; }
.reveal--d3 { transition-delay: 240ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card--link:hover, .chip:hover { transform: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- 21. Media / figures ---------- */
.figure {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ivory-2); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.figure--tall { aspect-ratio: 4 / 5; }
.figure--wide { aspect-ratio: 16 / 10; }
.figure--square { aspect-ratio: 1 / 1; }

.badge-row { display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5); align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--gray); text-transform: uppercase;
}
.badge svg { color: var(--olive); flex: none; }

.print-only { display: none; }
@media print {
  .site-header, .topbar, .mobile-bar, .nav-mobile, .cta-band, .form-card { display: none !important; }
  body { background: #fff; color: #000; }
  .print-only { display: block; }
}
