/* ==========================================================================
   Nethercott Ventures — private investment, holdings & advisory group
   Stylesheet: "Mercantile Ink / Bound Ledger"
   Palette: deep petrol ink · antique brass · warm parchment
   Type: Fraunces (display) · Manrope (body/UI)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Ink (dark surfaces) */
  --ink:        #0E2A2E;
  --ink-700:    #143539;
  --ink-600:    #1C4449;
  --ink-500:    #2A565B;

  /* Brass (accent) */
  --brass:      #BE9347;
  --brass-300:  #D8B878;
  --brass-700:  #99732F;

  /* Paper (light surfaces) */
  --paper:      #F4F0E6;
  --paper-200:  #ECE6D7;
  --paper-300:  #E2DAC6;

  /* Text */
  --text:       #20231F;
  --text-muted: #5C5F54;
  --text-ink:   #Dfe6e2;   /* light text on dark */
  --text-ink-mu:#9DB0AB;

  /* Lines */
  --line:        rgba(14, 42, 46, 0.14);
  --line-strong: rgba(14, 42, 46, 0.28);
  --line-dark:   rgba(244, 240, 230, 0.16);
  --line-brass:  rgba(190, 147, 71, 0.45);

  /* Layout */
  --maxw:    1200px;
  --reading: 70ch;
  --gutter:  clamp(1.15rem, 4vw, 2.5rem);

  /* Radii */
  --r-sm: 5px;
  --r:    8px;
  --r-lg: 14px;

  /* Shadows */
  --shadow-1: 0 1px 0 rgba(14,42,46,.04), 0 12px 30px -18px rgba(14,42,46,.30);
  --shadow-2: 0 2px 0 rgba(14,42,46,.05), 0 26px 60px -30px rgba(14,42,46,.40);

  /* Type stacks */
  --ff-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --ff-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Header height for scroll offset */
  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--ink-600); text-decoration: none; }
a:hover { color: var(--brass-700); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .6em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.5rem, 1.6rem + 3.6vw, 4.4rem); font-weight: 480; }
h2 { font-size: clamp(1.85rem, 1.3rem + 2.1vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .7vw, 1.55rem); font-weight: 540; }
h4 { font-size: 1.08rem; font-weight: 600; font-family: var(--ff-body); letter-spacing: 0; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .45em; }
li:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; }

::selection { background: var(--brass); color: var(--ink); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: var(--paper); padding: .6rem 1rem;
  border-radius: var(--r-sm); transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: var(--paper); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.reading { max-width: var(--reading); }

.section { padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4rem); }
.section--ink {
  background: var(--ink);
  color: var(--text-ink);
  background-image:
    repeating-linear-gradient(90deg, transparent 0 119px, var(--line-dark) 119px 120px);
  position: relative;
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--paper); }
.section--ink p { color: var(--text-ink); }
.section--paper-200 { background: var(--paper-200); }
.section--rule-top { border-top: 1px solid var(--line); }

/* ---------- Eyebrow + brass rule ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--ff-body);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass-700);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--brass);
  display: inline-block;
}
.section--ink .eyebrow { color: var(--brass-300); }
.section--ink .eyebrow::before { background: var(--brass-300); }
.eyebrow--noline::before { display: none; }

/* ---------- Section heading block ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.lead {
  font-size: clamp(1.08rem, 1rem + .5vw, 1.28rem);
  line-height: 1.6; color: var(--text-muted);
}
.section--ink .lead { color: var(--text-ink-mu); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--ff-body);
  font-size: .95rem; font-weight: 600;
  letter-spacing: .01em;
  padding: .82rem 1.4rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  line-height: 1.2;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--brass { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.btn--brass:hover { background: var(--brass-300); border-color: var(--brass-300); color: var(--ink); }

.btn--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink-600); color: var(--paper); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: rgba(14,42,46,.04); }

.btn--ghost-light { background: transparent; color: var(--paper); border-color: var(--line-dark); }
.btn--ghost-light:hover { border-color: var(--brass-300); color: var(--paper); }

.btn--wa { background: #25D366; color: #06210F; border-color: #25D366; }
.btn--wa:hover { background: #20bd5a; border-color: #20bd5a; color: #06210F; }

.btn--lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* inline text link */
.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; color: var(--brass-700);
  border-bottom: 1px solid var(--line-brass);
  padding-bottom: 2px; transition: gap .18s ease, color .18s ease;
}
.link-arrow:hover { color: var(--ink); gap: .65rem; }
.section--ink .link-arrow { color: var(--brass-300); }
.section--ink .link-arrow:hover { color: var(--paper); }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 240, 230, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; min-height: var(--header-h);
  padding-block: .55rem;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 38px; height: 38px; flex: none;
  border-radius: 8px;
  background: var(--ink);
  display: grid; place-items: center;
  border: 1px solid var(--ink-600);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text {
  font-family: var(--ff-display);
  font-weight: 600; font-size: 1.18rem;
  letter-spacing: -0.01em; line-height: 1;
}
.brand-text small {
  display: block; font-family: var(--ff-body);
  font-weight: 600; font-size: .62rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--brass-700);
  margin-top: 3px;
}

/* Nav */
.site-nav { display: flex; align-items: center; }
.nav-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: .35rem;
}
.nav-menu a {
  display: inline-block;
  padding: .55rem .85rem;
  font-size: .92rem; font-weight: 600;
  color: var(--text); border-radius: var(--r-sm);
  position: relative; transition: color .15s ease, background-color .15s ease;
}
.nav-menu a:hover { color: var(--ink); background: rgba(14,42,46,.05); }
.nav-menu a[aria-current="page"] { color: var(--brass-700); }
.nav-menu a[aria-current="page"]::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .28rem;
  height: 2px; background: var(--brass); border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: .8rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--ink); font-size: .92rem;
}
.header-phone svg { width: 1.05em; height: 1.05em; color: var(--brass-700); }
.header-phone:hover { color: var(--brass-700); }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); cursor: pointer;
  padding: 0; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .header-phone { display: none; }
  .header-cta .btn--brass { display: none; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    padding: 0 var(--gutter) 1.2rem;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    flex-direction: column; align-items: stretch;
  }
  .site-nav.open { max-height: 75vh; overflow-y: auto; }
  .nav-menu {
    flex-direction: column; align-items: stretch; gap: 0; width: 100%;
  }
  .nav-menu li { border-bottom: 1px solid var(--line); }
  .nav-menu li:last-child { border-bottom: 0; }
  .nav-menu a { padding: .9rem .25rem; font-size: 1rem; border-radius: 0; }
  .nav-menu a[aria-current="page"]::after { display: none; }
  .nav-menu a[aria-current="page"] { background: rgba(190,147,71,.08); }
  .site-nav .nav-cta-mobile { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
}
.site-nav .nav-cta-mobile { display: none; }
@media (max-width: 940px) { .site-nav .nav-cta-mobile { display: flex; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--ink);
  color: var(--text-ink);
  background-image:
    radial-gradient(1100px 560px at 82% -8%, rgba(190,147,71,.16), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(244,240,230,.035) 119px 120px);
  position: relative; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem);
}
.hero-copy h1 { color: var(--paper); margin-bottom: .7rem; }
.hero-copy h1 .accent { color: var(--brass-300); font-style: italic; font-weight: 420; }
.hero-copy .lead { color: var(--text-ink); max-width: 54ch; margin-bottom: 1.8rem; }
.hero .eyebrow { color: var(--brass-300); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.6rem;
  padding-top: 1.8rem; border-top: 1px solid var(--line-dark);
}
.hero-meta dt {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-ink-mu); margin-bottom: .25rem;
}
.hero-meta dd { margin: 0; font-family: var(--ff-display); font-size: 1.1rem; color: var(--paper); }

/* Hero motif card */
.hero-card {
  background: rgba(244,240,230,.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  position: relative;
}
.hero-card .ticker {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 1rem; margin-bottom: 1.2rem; border-bottom: 1px solid var(--line-dark);
}
.hero-card .ticker .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brass-300);
  box-shadow: 0 0 0 4px rgba(216,184,120,.18);
}
.hero-card .ticker small {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-ink-mu);
}
.hero-card h3 { color: var(--paper); margin-bottom: .8rem; }
.hero-card p { color: var(--text-ink-mu); font-size: .96rem; }
.merc-map { width: 100%; height: auto; margin-top: .4rem; }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { order: 2; }
}

/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */
.trust {
  background: var(--ink-700);
  color: var(--text-ink-mu);
  border-top: 1px solid var(--line-dark);
}
.trust-inner {
  display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; align-items: center;
  justify-content: space-between;
  padding-block: 1.25rem;
}
.trust span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.trust b { color: var(--brass-300); font-weight: 700; }

/* ==========================================================================
   Sectors / capability cards
   ========================================================================== */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative; overflow: hidden;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); border-color: var(--line-brass); }
.card .icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: rgba(190,147,71,.12); color: var(--brass-700);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--text-muted); font-size: .97rem; margin-bottom: 1rem; }
.card .num {
  position: absolute; top: 1rem; right: 1.2rem;
  font-family: var(--ff-display); font-size: 1.1rem; color: var(--brass);
  opacity: .6;
}
.card ul { font-size: .92rem; color: var(--text-muted); padding-left: 1.05em; }
.card ul li::marker { color: var(--brass); }

/* card on dark */
.section--ink .card {
  background: rgba(244,240,230,.035);
  border-color: var(--line-dark);
}
.section--ink .card:hover { border-color: var(--line-brass); background: rgba(244,240,230,.06); }
.section--ink .card h3 { color: var(--paper); }
.section--ink .card p, .section--ink .card ul { color: var(--text-ink-mu); }

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
}
.stat .figure {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.2rem);
  color: var(--brass-300); line-height: 1; margin-bottom: .5rem;
  font-feature-settings: "ss01";
}
.stat .label {
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: var(--text-ink);
}
.stat .desc { font-size: .9rem; color: var(--text-ink-mu); margin-top: .35rem; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; } }

/* ==========================================================================
   Process — sequential, roman numerals earned
   ========================================================================== */
.process { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line-dark);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line-dark); }
.step .numeral {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem);
  color: var(--brass-300); line-height: 1;
}
.step h3 { color: var(--paper); margin-bottom: .45rem; }
.step p { color: var(--text-ink-mu); max-width: 60ch; }
@media (max-width: 620px) { .step { grid-template-columns: 56px 1fr; gap: 1rem; } }

/* ==========================================================================
   Two-column feature (story / values)
   ========================================================================== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* Values list */
.values { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.values li { display: grid; grid-template-columns: 34px 1fr; gap: 1rem; align-items: start; }
.values .v-icon {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  border: 1px solid var(--line-brass); color: var(--brass-700);
  display: grid; place-items: center; font-family: var(--ff-display); font-weight: 600;
  background: rgba(190,147,71,.06);
}
.values h4 { margin: 0 0 .25rem; color: var(--ink); }
.values p { margin: 0; color: var(--text-muted); font-size: .96rem; }

/* ==========================================================================
   Holdings / portfolio ledger list
   ========================================================================== */
.ledger { border-top: 1px solid var(--line); }
.ledger-row {
  display: grid; grid-template-columns: 56px 1.4fr 1fr auto;
  gap: clamp(1rem, 3vw, 2rem); align-items: center;
  padding-block: 1.4rem; border-bottom: 1px solid var(--line);
  transition: background-color .18s ease;
}
.ledger-row:hover { background: rgba(190,147,71,.05); }
.ledger-row .l-num {
  font-family: var(--ff-display); color: var(--brass-700); font-size: 1.05rem;
}
.ledger-row h4 { margin: 0 0 .2rem; color: var(--ink); }
.ledger-row .meta { font-size: .9rem; color: var(--text-muted); }
.ledger-row .tag {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  color: var(--brass-700); border: 1px solid var(--line-brass);
  padding: .3rem .65rem; border-radius: 999px; white-space: nowrap;
}
@media (max-width: 760px) {
  .ledger-row { grid-template-columns: 36px 1fr; row-gap: .35rem; }
  .ledger-row .meta { grid-column: 2; }
  .ledger-row .tag { grid-column: 1 / -1; justify-self: start; margin-top: .3rem; }
}

/* ==========================================================================
   Quote / pull
   ========================================================================== */
.pullquote {
  font-family: var(--ff-display); font-weight: 440;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.3rem);
  line-height: 1.3; color: var(--paper); letter-spacing: -0.01em;
  max-width: 22ch;
}
.pullquote .mark { color: var(--brass-300); }
.cite {
  margin-top: 1.5rem; font-style: normal; font-family: var(--ff-body);
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-ink-mu); font-weight: 700;
}
.cite span { display: block; font-weight: 500; letter-spacing: .04em; text-transform: none; color: var(--brass-300); margin-top: .2rem; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  text-align: left; padding: 1.35rem 0;
  font-family: var(--ff-display); font-weight: 540;
  font-size: clamp(1.08rem, 1rem + .5vw, 1.3rem);
  color: var(--ink); line-height: 1.3;
}
.faq-q:hover { color: var(--brass-700); }
.faq-q .pm {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--line-strong); position: relative;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--ink); transition: background-color .2s ease;
}
.faq-q .pm::before { width: 12px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 12px; transition: transform .2s ease, background-color .2s ease; }
.faq-item[data-open="true"] .faq-q { color: var(--brass-700); }
.faq-item[data-open="true"] .faq-q .pm { background: var(--brass); border-color: var(--brass); transform: rotate(0); }
.faq-item[data-open="true"] .faq-q .pm::before,
.faq-item[data-open="true"] .faq-q .pm::after { background: var(--ink); }
.faq-item[data-open="true"] .faq-q .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-item[data-open="true"] .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a { overflow: hidden; }
.faq-a-inner { padding: 0 0 1.4rem; color: var(--text-muted); max-width: 68ch; }

.section--ink .faq-item { border-color: var(--line-dark); }
.section--ink .faq-q { color: var(--paper); }
.section--ink .faq-q:hover { color: var(--brass-300); }
.section--ink .faq-q .pm { border-color: var(--line-dark); }
.section--ink .faq-q .pm::before, .section--ink .faq-q .pm::after { background: var(--paper); }
.section--ink .faq-a-inner { color: var(--text-ink-mu); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--ink); color: var(--text-ink);
  border-radius: var(--r-lg); padding: clamp(1.8rem, 4vw, 2.6rem);
  background-image: radial-gradient(700px 380px at 100% 0%, rgba(190,147,71,.14), transparent 55%);
}
.contact-card h3 { color: var(--paper); }
.contact-row {
  display: grid; grid-template-columns: 36px 1fr; gap: 1rem; align-items: start;
  padding-block: 1.15rem; border-bottom: 1px solid var(--line-dark);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .ci {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(190,147,71,.14); color: var(--brass-300);
  display: grid; place-items: center; flex: none;
}
.contact-row .ci svg { width: 19px; height: 19px; }
.contact-row .cl { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-ink-mu); font-weight: 700; }
.contact-row .cv { color: var(--paper); font-weight: 500; }
.contact-row a.cv:hover { color: var(--brass-300); }

/* Form */
.form { display: grid; gap: 1.15rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--ink); }
.field label .req { color: var(--brass-700); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: 1rem; color: var(--text);
  background: var(--paper); border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); padding: .8rem .9rem; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(190,147,71,.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--text-muted); }

/* Where we operate */
.locale {
  border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--paper); height: 100%;
}
.locale .pin {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--ink); color: var(--brass-300);
  display: grid; place-items: center; margin-bottom: 1rem;
}
.locale h3 { margin-bottom: .35rem; }
.locale .role { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-700); font-weight: 700; margin-bottom: .8rem; }
.locale p { color: var(--text-muted); font-size: .96rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--ink); color: var(--text-ink);
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background-image: radial-gradient(800px 400px at 0% 100%, rgba(190,147,71,.16), transparent 55%);
}
.cta-band h2 { color: var(--paper); margin-bottom: .6rem; }
.cta-band p { color: var(--text-ink-mu); max-width: 52ch; }
.cta-band .btn-row { justify-content: flex-end; }
@media (max-width: 760px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .btn-row { justify-content: flex-start; }
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  background: var(--ink); color: var(--text-ink);
  background-image:
    radial-gradient(900px 460px at 88% -10%, rgba(190,147,71,.15), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(244,240,230,.035) 119px 120px);
  padding-block: clamp(2.8rem, 1.5rem + 5vw, 4.8rem);
}
.page-hero h1 { color: var(--paper); margin-bottom: .8rem; }
.page-hero .lead { color: var(--text-ink); max-width: 62ch; }
.page-hero .eyebrow { color: var(--brass-300); }

/* Breadcrumbs */
.crumbs { font-size: .82rem; color: var(--text-ink-mu); margin-bottom: 1.2rem; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.crumbs a { color: var(--brass-300); }
.crumbs a:hover { color: var(--paper); }
.crumbs .sep { color: var(--text-ink-mu); opacity: .6; }
.crumbs [aria-current="page"] { color: var(--text-ink); }

/* ==========================================================================
   Service detail blocks (services.html)
   ========================================================================== */
.service-block {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(2.5rem, 5vw, 3.8rem);
  border-top: 1px solid var(--line);
}
.service-block:first-of-type { border-top: 0; }
.service-block .sb-head { position: sticky; top: calc(var(--header-h) + 1rem); }
.service-block .sb-num {
  font-family: var(--ff-display); color: var(--brass); font-size: 1rem; margin-bottom: .6rem;
}
.service-block h2 { margin-bottom: .7rem; }
.service-block .sb-lead { color: var(--text-muted); font-size: 1.05rem; }
.sb-body h3 {
  font-family: var(--ff-body); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brass-700);
  margin: 1.6rem 0 .8rem;
}
.sb-body h3:first-child { margin-top: 0; }
.sb-body ul { list-style: none; padding: 0; display: grid; gap: .65rem; }
.sb-body ul li { display: grid; grid-template-columns: 22px 1fr; gap: .6rem; align-items: start; color: var(--text); }
.sb-body ul li::before {
  content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--brass);
  margin-top: .55em;
}
.sb-callout {
  background: var(--paper-200); border: 1px solid var(--line);
  border-left: 3px solid var(--brass); border-radius: var(--r-sm);
  padding: 1rem 1.2rem; margin-top: 1.6rem; font-size: .96rem; color: var(--text);
}
.sb-callout strong { color: var(--ink); }
@media (max-width: 820px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block .sb-head { position: static; }
}

/* ==========================================================================
   Team / roles
   ========================================================================== */
.roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
@media (max-width: 820px) { .roles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .roles { grid-template-columns: 1fr; } }
.role-card {
  border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem; background: var(--paper);
  height: 100%;
}
.role-card .avatar {
  width: 54px; height: 54px; border-radius: 50%; background: var(--ink);
  color: var(--brass-300); display: grid; place-items: center;
  font-family: var(--ff-display); font-size: 1.3rem; margin-bottom: 1rem;
  border: 1px solid var(--ink-600);
}
.role-card h4 { margin: 0 0 .15rem; color: var(--ink); font-family: var(--ff-display); font-weight: 540; font-size: 1.15rem; }
.role-card .title { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-700); font-weight: 700; margin-bottom: .8rem; }
.role-card p { font-size: .93rem; color: var(--text-muted); margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ink); color: var(--text-ink-mu);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand-mark { margin-bottom: 1rem; }
.footer-brand p { color: var(--text-ink-mu); font-size: .95rem; max-width: 34ch; }
.footer-brand .foot-tag { font-family: var(--ff-display); color: var(--paper); font-size: 1.05rem; margin-bottom: .4rem; }
.site-footer h5 {
  font-family: var(--ff-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--brass-300);
  margin: 0 0 1.1rem;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-list a { color: var(--text-ink); font-size: .94rem; }
.footer-list a:hover { color: var(--brass-300); }
.footer-contact p { color: var(--text-ink); font-size: .95rem; margin-bottom: .8rem; }
.footer-contact a { color: var(--text-ink); }
.footer-contact a:hover { color: var(--brass-300); }
.footer-wa { margin-top: .4rem; }
.group-co {
  margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line-dark);
}
.group-co a { color: var(--brass-300); font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.group-co a:hover { color: var(--paper); }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem 2rem;
  padding-block: 1.5rem; font-size: .82rem; color: var(--text-ink-mu);
}
.footer-bottom a { color: var(--text-ink-mu); }
.footer-bottom a:hover { color: var(--brass-300); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: .6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1.2rem; } .mb-3 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.cluster { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
  color: var(--ink); border: 1px solid var(--line-strong); padding: .3rem .7rem; border-radius: 999px;
  background: var(--paper);
}
.section--ink .chip { color: var(--paper); border-color: var(--line-dark); background: rgba(244,240,230,.04); }
hr.rule { border: 0; border-top: 1px solid var(--line); margin-block: 2.5rem; }
.divider-brass { height: 1px; background: var(--brass); width: 60px; margin: 1.4rem 0; border: 0; }
