/* =============================================================
   WOLFE, McDUFF & OPPIE, CPAs — "The Ledger" (heritage finance)
   Deep navy + warm ivory + burnished gold. Spectral + Archivo.
   Restrained, credible, premium. Built by Experienced Results.
   ============================================================= */

:root {
  --ink:        #0E1D26;   /* deepest navy, near-black */
  --navy:       #16303F;   /* brand navy */
  --navy-2:     #1E3E50;   /* lifted navy panel */
  --paper:      #F7F4EC;   /* warm ivory page */
  --paper-2:    #EFEADD;   /* deeper ivory, alt sections */
  --card:       #FCFAF3;   /* raised card */
  --slate:      #55636C;   /* muted body on light */
  --slate-2:    #7C8890;
  --gold:       #A87C3D;   /* burnished heritage gold */
  --gold-soft:  #C6A15B;   /* gold on dark */
  --line:       rgba(14,29,38,0.14);
  --line-soft:  rgba(14,29,38,0.08);
  --paper-line: rgba(247,244,236,0.18);

  --serif: "Spectral", Georgia, serif;
  --sans:  "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --s--1: clamp(0.8rem, 0.77rem + 0.14vw, 0.9rem);
  --s-0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --s-1:  clamp(1.18rem, 1.08rem + 0.5vw, 1.5rem);
  --s-2:  clamp(1.5rem, 1.3rem + 1vw, 2.2rem);
  --s-3:  clamp(2rem, 1.6rem + 1.9vw, 3.4rem);
  --s-4:  clamp(2.6rem, 1.95rem + 3.2vw, 4.8rem);
  --s-5:  clamp(3rem, 2rem + 5vw, 6.4rem);

  --section-y: clamp(4.5rem, 3.3rem + 6vw, 9rem);
  --container: 1180px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 20px -12px rgba(14,29,38,0.28);
  --shadow-lg: 0 32px 70px -40px rgba(14,29,38,0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.12, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans); font-size: var(--s-0); line-height: 1.68; color: var(--ink);
  background: var(--paper); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--navy); color: var(--paper); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.06; letter-spacing: -0.01em; color: var(--ink); text-wrap: balance; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.15rem, 0.6rem + 2.4vw, 2.5rem); }

.eyebrow { display: inline-flex; align-items: center; gap: 0.7em; font-family: var(--sans); font-weight: 600;
  font-size: var(--s--1); letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.eyebrow::before { content: ""; width: 2.1em; height: 1px; background: var(--gold); }
.eyebrow.is-centered { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-soft); }
.eyebrow.on-dark::before { background: var(--gold-soft); }

.lede { font-family: var(--serif); font-size: var(--s-1); line-height: 1.5; color: var(--slate); max-width: 48ch; }
.dark .lede { color: rgba(247,244,236,0.82); }

/* ---------- Layout scaffolding ---------- */
.section { padding-block: var(--section-y); }
.paper-2 { background: var(--paper-2); }
.dark { background: linear-gradient(165deg, var(--navy) 0%, var(--ink) 100%); color: var(--paper); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--paper); }
.section-head { max-width: 48rem; margin-bottom: clamp(2.5rem, 1.8rem + 3vw, 4.25rem); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.85rem; font-size: var(--s-3); }
.section-head .lede { margin-top: 1.1rem; }
.section-head.is-centered .lede { margin-inline: auto; }

.rule { display: flex; align-items: center; justify-content: center; gap: 0.9rem; color: var(--gold); }
.rule::before, .rule::after { content: ""; height: 1px; width: min(5rem, 14vw); background: linear-gradient(90deg, transparent, currentColor); }
.rule::after { background: linear-gradient(90deg, currentColor, transparent); }
.rule span { width: 6px; height: 6px; transform: rotate(45deg); background: currentColor; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.55em; font-family: var(--sans);
  font-weight: 600; font-size: var(--s--1); letter-spacing: 0.06em; padding: 0.95em 1.6em; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer; transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.btn--sm { padding: 0.7em 1.15em; }
.btn--lg { padding: 1.05em 1.9em; font-size: var(--s-0); }
.btn--gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover { background: #96692e; border-color: #96692e; transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(168,124,61,0.75); }
.btn--navy { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.btn--navy:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); background: rgba(22,48,63,0.04); }
.dark .btn--ghost, .hero .btn--ghost { color: var(--paper); border-color: var(--paper-line); }
.dark .btn--ghost:hover, .hero .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.textlink { display: inline-flex; align-items: center; gap: 0.5em; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: var(--s--1); color: var(--gold); position: relative; padding-bottom: 3px; }
.textlink::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.textlink:hover::after { transform: scaleX(1); }
.textlink .ar { transition: transform .35s var(--ease); }
.textlink:hover .ar { transform: translateX(4px); }

/* ---------- Announcement bar ---------- */
.announce { background: var(--ink); color: var(--paper); font-size: var(--s--1); }
.announce__row { display: flex; align-items: center; justify-content: center; gap: 0.7em; flex-wrap: wrap; padding-block: 0.6rem; text-align: center; }
.announce__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 8px rgba(198,161,91,0.7); flex: none; }
.announce__cta { color: var(--gold-soft); font-weight: 600; white-space: nowrap; }
.announce__cta:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.hd { position: sticky; top: 0; z-index: 100; background: rgba(247,244,236,0.86); backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid var(--line-soft); transition: box-shadow .3s var(--ease), background .3s var(--ease); }
.hd.is-scrolled { box-shadow: 0 1px 0 var(--line-soft), 0 10px 30px -22px rgba(14,29,38,0.4); }
.hd__row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.85rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 38px; height: 38px; border-radius: var(--radius); overflow: hidden; flex: none; box-shadow: var(--shadow); }
.brand__mark .mark { width: 100%; height: 100%; padding: 7px; background: var(--ink); color: var(--gold-soft); }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 1.24rem; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); white-space: nowrap; }
.brand__tag { font-family: var(--sans); font-weight: 600; font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-top: 0.4em; }
.nav { display: flex; align-items: center; gap: clamp(1.25rem, 0.5rem + 1.8vw, 2.4rem); }
.nav a { font-family: var(--sans); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); position: relative; padding-block: 0.35em; transition: color .3s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .38s var(--ease); }
.nav a:hover, .nav a[aria-current] { color: var(--navy); }
.nav a:hover::after, .nav a[aria-current]::after { transform: scaleX(1); }
.hd__cta { display: flex; align-items: center; gap: 1rem; }
.burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after { content: ""; display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); position: relative; }
.burger span::before { position: absolute; top: -7px; } .burger span::after { position: absolute; top: 7px; }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); }
body.nav-open .burger span::after { top: 0; transform: rotate(-45deg); }

.scrim { position: fixed; inset: 0; z-index: 110; background: rgba(14,29,38,0.5); opacity: 0; visibility: hidden; transition: .4s var(--ease); backdrop-filter: blur(2px); }
body.nav-open .scrim { opacity: 1; visibility: visible; }
.drawer { position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); z-index: 120; background: var(--paper); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .5s var(--ease); padding: 5.5rem 1.9rem 2.5rem; display: flex; flex-direction: column; }
body.nav-open .drawer { transform: translateX(0); }
.drawer__link { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); padding: 0.55rem 0; border-bottom: 1px solid var(--line-soft); transition: .3s var(--ease); }
.drawer__link:hover, .drawer__link[aria-current] { color: var(--gold); padding-left: 0.35rem; }
.drawer__cta { margin-top: auto; display: grid; gap: 0.75rem; padding-top: 2rem; }
.drawer__cta .btn--ghost { color: var(--ink); border-color: var(--line); }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; background: linear-gradient(160deg, var(--navy) 0%, var(--ink) 78%); color: var(--paper); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.5;
  background: radial-gradient(70% 120% at 88% -10%, rgba(198,161,91,0.16), transparent 60%); }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center;
  padding-block: clamp(4.5rem, 3rem + 7vw, 8.5rem); }
.hero__eyebrow { color: var(--gold-soft); }
.hero__eyebrow::before { background: var(--gold-soft); }
.hero h1 { font-size: var(--s-5); font-weight: 400; line-height: 0.99; color: var(--paper); margin-top: 1.2rem; letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub { font-family: var(--serif); font-size: var(--s-1); line-height: 1.5; color: rgba(247,244,236,0.82); max-width: 40ch; margin-top: 1.6rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero__aside { position: relative; }
.hero__photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(247,244,236,0.1); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }
.hero__photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.75rem 1.25rem 1rem; color: var(--paper);
  background: linear-gradient(0deg, rgba(14,29,38,0.9), transparent); font-family: var(--serif); font-style: italic; font-size: var(--s--1); text-align: center; }
.hero__seal { position: absolute; top: -18px; right: -14px; width: 96px; height: 96px; border-radius: 50%; background: var(--paper); color: var(--navy);
  display: grid; place-content: center; text-align: center; box-shadow: var(--shadow-lg); border: 2px solid var(--gold-soft); transform: rotate(-8deg); }
.hero__seal b { display: block; font-family: var(--serif); font-size: 1.5rem; line-height: 1; color: var(--gold); }
.hero__seal small { font-family: var(--sans); font-weight: 600; font-size: 0.5rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 3px; }

/* ---------- Stat / trust bar ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border-block: 1px solid var(--line-soft); }
.stat { background: var(--paper); padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem) 1.25rem; text-align: center; }
.stat__num { font-family: var(--serif); font-size: var(--s-3); font-weight: 500; color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; }
.stat__num .u { color: var(--gold); }
.stat__label { font-family: var(--sans); font-weight: 600; font-size: var(--s--1); letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-top: 0.7rem; }
.dark .stats { background: rgba(247,244,236,0.1); border-color: rgba(247,244,236,0.12); }
.dark .stat { background: transparent; }
.dark .stat__num { color: var(--paper); } .dark .stat__num .u { color: var(--gold-soft); }
.dark .stat__label { color: rgba(247,244,236,0.7); }

/* ---------- Feature band (the building) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 5vw, 6rem); align-items: center; }
.feature__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; transition: transform 1.4s var(--ease); }
.feature__media:hover img { transform: scale(1.04); }
.feature__media::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(247,244,236,0.4); pointer-events: none; border-radius: 3px; }
.feature__body > * + * { margin-top: 1.25rem; }
.feature__body p { color: var(--slate); }
.dark .feature__body p { color: rgba(247,244,236,0.8); }
.feature__body h2 { font-size: var(--s-3); }

/* ---------- Credential badges ---------- */
.creds { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 1rem + 3vw, 4rem); }
.creds img { height: clamp(38px, 30px + 2vw, 52px); width: auto; opacity: 0.85; filter: saturate(0.9); transition: opacity .3s var(--ease); }
.creds img:hover { opacity: 1; }
.creds__label { flex-basis: 100%; text-align: center; font-family: var(--sans); font-weight: 600; font-size: var(--s--1); letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 0.5rem; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1rem, 0.6rem + 1.5vw, 1.75rem); }
.svc { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.75rem, 1.3rem + 1.6vw, 2.6rem);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); overflow: hidden; }
.svc::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(168,124,61,0.4); }
.svc:hover::before { transform: scaleX(1); }
.svc__no { font-family: var(--serif); font-style: italic; font-size: var(--s-1); color: var(--gold); }
.svc h3 { font-size: var(--s-2); margin-top: 0.4rem; color: var(--navy); }
.svc p { margin-top: 0.9rem; color: var(--slate); font-size: var(--s-0); }
.svc__list { list-style: none; padding: 0; margin-top: 1.1rem; display: grid; gap: 0.5rem; }
.svc__list li { position: relative; padding-left: 1.3rem; color: var(--slate); font-size: var(--s--1); }
.svc__list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }

/* Specialized services pill grid */
.pills { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 0.75rem; }
.pill { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.9rem 1.15rem; font-size: var(--s--1); font-weight: 500;
  display: flex; align-items: center; gap: 0.7rem; transition: border-color .3s var(--ease), transform .3s var(--ease); }
.pill:hover { border-color: rgba(168,124,61,0.5); transform: translateX(3px); }
.pill::before { content: ""; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex: none; }

/* ---------- Timeline (history) ---------- */
.timeline { position: relative; max-width: 46rem; margin-inline: auto; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 1px; background: linear-gradient(var(--gold), transparent); }
.tl { position: relative; padding-bottom: clamp(1.75rem, 1.2rem + 1.5vw, 2.75rem); }
.tl:last-child { padding-bottom: 0; }
.tl::before { content: ""; position: absolute; left: -2rem; top: 0.4em; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--line); }
.tl__year { font-family: var(--serif); font-style: italic; font-size: var(--s-1); color: var(--gold); }
.tl__body { margin-top: 0.3rem; color: var(--slate); }
.dark .tl::before { box-shadow: 0 0 0 4px var(--navy), 0 0 0 5px rgba(247,244,236,0.15); }
.dark .tl__body { color: rgba(247,244,236,0.8); }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(0.9rem, 0.6rem + 1vw, 1.5rem); }
.value { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1.3rem 1.4rem; border: 1px solid var(--paper-line); border-radius: var(--radius); background: rgba(247,244,236,0.04); }
.value__mk { color: var(--gold-soft); font-family: var(--serif); font-style: italic; font-size: var(--s-1); line-height: 1; flex: none; }
.value p { color: rgba(247,244,236,0.86); font-size: var(--s-0); }

/* ---------- Split (about intro) ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.split__body > * + * { margin-top: 1.2rem; }
.split__body p { color: var(--slate); }
.split__body h2 { font-size: var(--s-3); }
.pullquote { font-family: var(--serif); font-style: italic; font-size: var(--s-2); line-height: 1.3; color: var(--navy); border-left: 2px solid var(--gold); padding-left: 1.4rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; isolation: isolate; text-align: center; color: var(--paper);
  background: linear-gradient(160deg, var(--navy), var(--ink)); overflow: hidden;
  padding-block: clamp(3.75rem, 2.5rem + 6vw, 7rem) clamp(3rem, 2rem + 3vw, 5rem); }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.5; background: radial-gradient(60% 120% at 50% -20%, rgba(198,161,91,0.16), transparent 60%); }
.page-hero__title { font-size: var(--s-4); color: var(--paper); margin-top: 0.7rem; }
.page-hero .lede { margin: 1.1rem auto 0; color: rgba(247,244,236,0.82); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: start; }
.form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 1.1rem + 2vw, 2.75rem); box-shadow: var(--shadow); }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 560px){ .form__row.two { grid-template-columns: 1fr 1fr; } }
.field { display: block; }
.field + .field, .form__row + .form__row, .form__row + .field, .field + .form__row { margin-top: 1.1rem; }
.field > span { display: block; font-family: var(--sans); font-weight: 600; font-size: var(--s--1); letter-spacing: 0.04em; color: var(--navy); margin-bottom: 0.4rem; }
.field .req { color: var(--gold); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: var(--s-0); color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.8em 0.95em; 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(--gold); box-shadow: 0 0 0 3px rgba(168,124,61,0.15); }
.field textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.form__hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { margin-top: 1.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.form__secure { display: inline-flex; align-items: center; gap: 0.5em; font-size: var(--s--1); color: var(--slate-2); }
.form__secure svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
.form__note { margin-top: 1rem; font-size: var(--s--1); color: var(--slate-2); }
.alert { border-radius: var(--radius); padding: 1rem 1.15rem; font-size: var(--s-0); margin-bottom: 1.5rem; border: 1px solid; }
.alert--ok { background: rgba(43,102,74,0.08); border-color: rgba(43,102,74,0.35); color: #245c3f; }
.alert--err { background: rgba(150,52,44,0.08); border-color: rgba(150,52,44,0.35); color: #8a352c; }

.info-panel { display: grid; gap: 1.4rem; }
.info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem 1.6rem; }
.info-card h3 { font-size: var(--s-1); color: var(--navy); margin-bottom: 0.6rem; }
.info-card p, .info-card a { color: var(--slate); font-size: var(--s-0); }
.info-card a.textlink { color: var(--gold); }
.info-card address { font-style: normal; line-height: 1.7; }
.map-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 16/10; background: var(--paper-2); }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.ft { background: var(--ink); color: rgba(247,244,236,0.72); padding-block: clamp(3.5rem, 2.5rem + 3vw, 5rem) 2.5rem; }
.ft__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); }
.ft .brand__name { color: var(--paper); font-size: 1.35rem; }
.ft .brand__mark { box-shadow: none; }
.ft__blurb { margin-top: 1rem; max-width: 34ch; font-size: var(--s--1); line-height: 1.7; }
.ft__col h4 { font-family: var(--sans); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.ft__col ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; font-size: var(--s--1); }
.ft__contact li { line-height: 1.5; }
.ft a:hover { color: var(--paper); }
.ft__legal { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(247,244,236,0.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem; font-size: 0.74rem; color: rgba(247,244,236,0.5); }
.ft__legal a { color: var(--gold-soft); }

/* ---------- Reveals ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal="left"] { transform: translateX(-30px); }
.js [data-reveal="right"] { transform: translateX(30px); }
.js [data-reveal="left"].is-visible, .js [data-reveal="right"].is-visible { transform: none; }
/* Critical form/content never hides behind a reveal */
.js .form[data-reveal], .js .form [data-reveal] { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px){
  .nav, .hd__cta .btn--gold { display: none; }
  .burger { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__aside { max-width: 460px; }
  .feature, .split, .contact-grid { grid-template-columns: 1fr; }
  .split__media { max-width: 380px; }
  .ft__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .brand__tag { display: none; }
  .hero__cta .btn { flex: 1 1 100%; }
  .ft__grid { grid-template-columns: 1fr; }
  .ft__legal { flex-direction: column; }
}
