/* ==========================================================================
   Schwartzman Group — style.css
   Palette: charcoal #1B1F24 · ivory #F6F3EE · slate #3A5A78 · gold #C9A227
   Type: Playfair Display (headings) · Inter (body)
   ========================================================================== */

:root {
  --charcoal: #1B1F24;
  --charcoal-2: #262B32;
  --ivory: #F6F3EE;
  --ivory-2: #EFEAE2;
  --slate: #3A5A78;
  --slate-dark: #2E4860;
  --gold: #C9A227;
  --gold-dark: #A9871C;
  --ink: #1B1F24;
  --muted: #5B6470;
  --muted-2: #66707A;
  --line: #DDD6CB;
  --line-dark: rgba(246, 243, 238, 0.14);
  --white: #FFFFFF;

  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
  --gutter: 1.25rem;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 10px 30px rgba(27, 31, 36, 0.10);
  --header-h: 84px;
  --header-h-small: 64px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--slate); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--slate-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
  color: inherit;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: 0.35em; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--charcoal); color: var(--ivory); padding: .6rem 1rem; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container.narrow { max-width: 780px; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { font-size: 1.1rem; color: var(--muted); }
.eyebrow {
  font-family: var(--font-body); font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 1rem;
}
.eyebrow a { color: inherit; text-decoration: none; }
.eyebrow a:hover { text-decoration: underline; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); line-height: 1.55; color: var(--muted); max-width: 44em; }
.cred {
  font-size: .85rem; font-weight: 600; letter-spacing: .04em; color: var(--muted);
  display: inline-flex; align-items: center; gap: .6rem;
}
.cred::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.on-dark { color: var(--ivory); }
.on-dark .eyebrow { color: var(--gold); }
.on-dark .lede, .on-dark .section-head p { color: rgba(246,243,238,.78); }
.on-dark a { color: var(--ivory); }
.on-dark .cred { color: rgba(246,243,238,.8); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: var(--radius); font-weight: 600; font-size: .95rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; line-height: 1.2;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--charcoal); }
.btn-dark { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.btn-dark:hover { background: var(--charcoal-2); color: var(--ivory); }
.btn-slate { background: var(--slate); color: var(--white); border-color: var(--slate); }
.btn-slate:hover { background: var(--slate-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--ivory); }
.btn-outline-light { background: transparent; color: var(--ivory); border-color: rgba(246,243,238,.6); }
.btn-outline-light:hover { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; text-decoration: none;
  color: var(--slate); font-size: .95rem;
}
.link-arrow::after { content: "→"; transition: transform .2s var(--ease); }
.link-arrow:hover::after { transform: translateX(3px); }
.on-dark .link-arrow { color: var(--gold); }

/* ---------- Image placeholders ---------- */
.img-ph, .pic {
  width: 100%; border-radius: var(--radius-lg); overflow: hidden;
}
.img-ph {
  background: linear-gradient(135deg, var(--slate) 0%, var(--charcoal) 100%);
  position: relative;
}
.img-ph::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 30% 20%, rgba(246,243,238,.10), transparent 70%);
}
.pic img { width: 100%; object-fit: cover; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,243,238,.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(27,31,36,.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h); transition: min-height .25s var(--ease);
}
.site-header.is-scrolled .header-inner { min-height: var(--header-h-small); }
.brand { color: var(--charcoal); text-decoration: none; display: inline-flex; }
.wordmark { width: 196px; height: auto; transition: width .25s var(--ease); }
.site-header.is-scrolled .wordmark { width: 168px; }

.menu-btn {
  display: inline-flex; align-items: center; gap: .6rem; background: none; border: 0; padding: .5rem;
  cursor: pointer; font-weight: 600; font-size: .9rem;
}
.menu-icon { display: inline-flex; flex-direction: column; gap: 5px; width: 22px; }
.menu-icon span { display: block; height: 2px; background: var(--charcoal); transition: transform .2s, opacity .2s; }
.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-link-row { display: flex; align-items: center; }
.nav-link {
  display: inline-block; text-decoration: none; color: var(--charcoal); font-weight: 500; font-size: .95rem;
  padding: .55rem .2rem;
}
.nav-toggle {
  background: none; border: 0; padding: .4rem; cursor: pointer; color: var(--charcoal);
  display: inline-flex; align-items: center; border-radius: 4px;
}
.nav-toggle svg { transition: transform .2s var(--ease); }
.nav-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mega-heading { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; margin: 0 0 .5rem; }
.mega-text { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.mega-links { list-style: none; margin: 0; padding: 0; }
.mega-links a {
  display: block; text-decoration: none; color: var(--charcoal); padding: .65rem .75rem; border-radius: var(--radius);
  transition: background .15s;
}
.mega-links a:hover, .mega-links a:focus-visible { background: var(--ivory-2); }
.mega-links a[aria-current="page"] .mega-link-title { color: var(--slate); }
.mega-link-title { display: block; font-weight: 600; font-size: .95rem; }
.mega-link-desc { display: block; font-size: .82rem; color: var(--muted); margin-top: .15rem; line-height: 1.4; }
.nav-cta { margin-left: .5rem; padding: .7rem 1.2rem; }

/* Mobile nav (default) */
@media (max-width: 1023px) {
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    padding: .5rem var(--gutter) 1.5rem; box-shadow: 0 20px 40px rgba(27,31,36,.12);
  }
  .site-nav.is-open { display: block; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-link-row { justify-content: space-between; }
  .nav-link { flex: 1; padding: .9rem 0; font-size: 1.05rem; }
  .nav-item > .nav-link { display: block; padding: .9rem 0; font-size: 1.05rem; }
  .nav-toggle { padding: .8rem; }
  .mega { display: none; padding: 0 0 1rem; }
  .mega.is-open { display: block; }
  .mega-intro { display: none; }
  .mega-links a { padding: .6rem .5rem; }
  .nav-cta { margin: 1.25rem 0 0; width: 100%; }
}

/* Desktop nav */
@media (min-width: 1024px) {
  .menu-btn { display: none; }
  .site-nav { display: flex; align-items: center; gap: .25rem; }
  .nav-list { display: flex; align-items: center; gap: .25rem; }
  .nav-item { position: relative; }
  .nav-link-row { padding: 0 .35rem; border-radius: var(--radius); }
  .nav-item.is-active > .nav-link-row > .nav-link,
  .nav-item.is-active > .nav-link { color: var(--slate); box-shadow: inset 0 -2px 0 var(--gold); }
  .nav-link { padding: .55rem .35rem; }
  .nav-toggle { padding: .3rem .15rem; }
  .mega {
    position: absolute; left: 50%; top: calc(100% + 10px); transform: translateX(-50%) translateY(6px);
    width: min(760px, calc(100vw - 2rem)); background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .18s;
  }
  .mega::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
  .nav-item:hover > .mega, .nav-item:focus-within > .mega, .mega.is-open {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }
  .nav-item:last-child > .mega { left: auto; right: 0; transform: translateX(0) translateY(6px); }
  .nav-item:last-child:hover > .mega, .nav-item:last-child:focus-within > .mega, .nav-item:last-child > .mega.is-open { transform: translateX(0) translateY(0); }
  .mega-inner { display: grid; grid-template-columns: 1.1fr 1.5fr; gap: 1.5rem; padding: 1.5rem; }
  .mega-intro { padding-right: 1.25rem; border-right: 1px solid var(--line); }
  .mega-links { display: grid; gap: .1rem; }
}
@media (min-width: 1024px) and (max-width: 1180px) {
  .nav-link { font-size: .88rem; }
  .wordmark { width: 176px; }
}

/* ---------- Hero (home) ---------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem); background: var(--ivory); }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero-copy h1 { margin-bottom: .75rem; }
.hero-copy .lede { margin-bottom: 1.75rem; }
.hero-cards { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.hero-card {
  display: grid; gap: .3rem; padding: 1.25rem 1.35rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--line); color: var(--charcoal); text-decoration: none;
  position: relative; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.hero-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--slate); color: var(--charcoal); }
.hero-card-title { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; }
.hero-card-text { color: var(--muted); font-size: .95rem; }
.hero-card-arrow { position: absolute; right: 1.25rem; top: 1.25rem; color: var(--gold); font-weight: 700; }
.hero-media .img-ph, .hero-media .pic { border-radius: var(--radius-lg); }
@media (min-width: 640px) { .hero-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 4rem; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem); }
.page-hero h1 { max-width: 20em; }
.page-hero--image .page-hero-media { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.page-hero--dark { background: var(--charcoal); color: var(--ivory); }
.page-hero--dark .eyebrow { color: var(--gold); }
.page-hero--dark .lede { color: rgba(246,243,238,.8); }

/* ---------- Tabs ---------- */
.tabs { margin-top: 1rem; }
.tab-list {
  display: flex; gap: .25rem; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--line);
  margin-bottom: 2rem; -webkit-overflow-scrolling: touch;
}
.tab-list::-webkit-scrollbar { display: none; }
.tab-list [role="tab"] {
  flex: 0 0 auto; background: none; border: 0; border-bottom: 3px solid transparent; margin-bottom: -1px;
  padding: .85rem 1rem; font-weight: 500; color: var(--muted); cursor: pointer; white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.tab-list [role="tab"]:hover { color: var(--charcoal); }
.tab-list [role="tab"][aria-selected="true"] { color: var(--charcoal); border-bottom-color: var(--gold); font-weight: 600; }
.on-dark .tab-list { border-bottom-color: var(--line-dark); }
.on-dark .tab-list [role="tab"] { color: rgba(246,243,238,.65); }
.on-dark .tab-list [role="tab"]:hover, .on-dark .tab-list [role="tab"][aria-selected="true"] { color: var(--ivory); }
.tab-panel { display: none; }
.tab-panel.is-active { display: grid; gap: 2rem; align-items: center; animation: tabIn .35s var(--ease); }
@keyframes tabIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.tab-panel-copy h3 { margin-bottom: .75rem; }
.tab-panel-copy ul { padding-left: 1.1em; margin-bottom: 1.25rem; }
.tab-panel-copy li { margin-bottom: .5rem; }
.tab-panel-copy li::marker { color: var(--gold); }
@media (min-width: 860px) {
  .tab-panel.is-active { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

/* ---------- Bands ---------- */
.band-dark { background: var(--charcoal); color: var(--ivory); }
.band-slate { background: var(--slate); color: var(--white); }
.band-ivory-2 { background: var(--ivory-2); }
.band-white { background: var(--white); }

/* Why three-column */
.why-grid { display: grid; gap: 1.5rem; }
.why-card {
  padding: 1.75rem; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line);
}
.why-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.why-card p { color: var(--muted); margin: 0; }
.why-num {
  display: inline-block; font-family: var(--font-head); color: var(--gold); font-size: 1.9rem; line-height: 1; margin-bottom: .75rem;
}
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

/* Split (copy + image) */
.split { display: grid; gap: 2.5rem; align-items: center; }
.split .btn-row { margin-top: 1.5rem; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split--media-left > :first-child { order: 2; }
}

/* Cards / grids */
.grid-3 { display: grid; gap: 1.5rem; }
.grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-media { display: block; }
.card-media .img-ph, .card-media .pic { border-radius: 0; }
.card-body { padding: 1.35rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card-body .link-arrow { margin-top: auto; padding-top: .5rem; }
.card-meta { font-size: .8rem; color: var(--muted); margin: 0; letter-spacing: .02em; }
.card-title { font-size: 1.25rem; margin: 0; }
.card-title a { color: var(--charcoal); text-decoration: none; }
.card-title a:hover { color: var(--slate); }
.card-excerpt { color: var(--muted); font-size: .95rem; margin: 0; }
.card-link { text-decoration: none; color: inherit; }
.card-service .card-body { padding-top: 1.75rem; }
.card-service h3 { font-size: 1.35rem; margin: 0; }
.card-service p { color: var(--muted); margin: 0; }
.on-dark .card { background: var(--charcoal-2); border-color: var(--line-dark); }
.on-dark .card-title a { color: var(--ivory); }
.on-dark .card-excerpt, .on-dark .card-meta, .on-dark .card-service p { color: rgba(246,243,238,.72); }

/* Steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; counter-reset: step; }
.steps li { position: relative; padding: 1.5rem 1.5rem 1.5rem 4.25rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 1.35rem; top: 1.3rem; font-family: var(--font-head); font-size: 1.5rem; color: var(--gold);
}
.steps h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.steps p { margin: 0; color: var(--muted); }
@media (min-width: 900px) { .steps--2col { grid-template-columns: 1fr 1fr; } }

/* Feature lists */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.feature-list li { padding-left: 1.6rem; position: relative; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: .9rem; height: 2px; background: var(--gold);
}
.on-dark .feature-list li { color: rgba(246,243,238,.85); }
@media (min-width: 720px) { .feature-list--2col { grid-template-columns: 1fr 1fr; column-gap: 2rem; } }

/* Role chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0 0 1.5rem; }
.chips li { margin: 0; padding: .4rem .8rem; border: 1px solid var(--line); border-radius: 999px; font-size: .88rem; background: var(--white); }
.on-dark .chips li { background: transparent; border-color: var(--line-dark); }

/* Two-column prose */
.cols-2 { display: grid; gap: 2rem; }
@media (min-width: 860px) { .cols-2 { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-top: 2.25rem; }
.prose h3 { font-size: 1.25rem; margin-top: 1.75rem; }
.prose ul li, .prose ol li { margin-bottom: .5rem; }
.prose li::marker { color: var(--gold); }
.prose blockquote {
  margin: 1.75rem 0; padding: .25rem 0 .25rem 1.25rem; border-left: 3px solid var(--gold);
  font-family: var(--font-head); font-size: 1.25rem; line-height: 1.4; color: var(--charcoal);
}
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: .65rem .75rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-weight: 600; background: var(--ivory-2); }
.table-wrap { overflow-x: auto; }
.callout {
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--slate);
  padding: 1.25rem 1.5rem; border-radius: var(--radius); margin: 1.75rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.note { font-size: .9rem; color: var(--muted); }

/* Lead magnet */
.lead-grid { display: grid; gap: 2rem; align-items: center; }
.lead-badge {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold); color: var(--charcoal); padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem;
}
.lead-form { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); padding: 1.75rem; border-radius: var(--radius-lg); }
@media (min-width: 860px) { .lead-grid { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }

/* CTA band */
.cta-band { background: var(--charcoal); color: var(--ivory); text-align: center; }
.cta-inner { max-width: 760px; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
.cta-inner p { color: rgba(246,243,238,.75); font-size: 1.1rem; }
.cta-inner .btn-row { justify-content: center; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; font-size: .9rem; }
.field .hint { font-size: .82rem; color: var(--muted); margin: 0; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; padding: .8rem .9rem; border: 1px solid #B9B2A7; border-radius: var(--radius);
  background: var(--white); color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--slate); box-shadow: 0 0 0 3px rgba(58,90,120,.18);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input[type="file"] { padding: .6rem .9rem; background: var(--ivory-2); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #B3261E; }
.field-error { font-size: .82rem; color: #B3261E; margin: 0; display: none; }
.field.is-invalid .field-error { display: block; }
.on-dark .field label { color: var(--ivory); }
.on-dark .field input { border-color: transparent; }
.on-dark .field .hint { color: rgba(246,243,238,.7); }
.on-dark .field-error { color: #FFB4AB; }
.form-consent { font-size: .85rem; color: var(--muted); display: flex; gap: .6rem; align-items: flex-start; }
.form-consent input { margin-top: .25rem; flex: 0 0 auto; }
.on-dark .form-consent { color: rgba(246,243,238,.75); }
.form-status { display: none; padding: .9rem 1rem; border-radius: var(--radius); font-size: .95rem; }
.form-status.is-success { display: block; background: #E6F1E8; color: #1E4D2B; border: 1px solid #B9D8C1; }
.form-status.is-error { display: block; background: #FBEAEA; color: #7A1C16; border: 1px solid #EFC1BD; }
.on-dark .form-status.is-success { background: rgba(230,241,232,.95); }
.on-dark .form-status.is-error { background: rgba(251,234,234,.95); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* Contact layout */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.3fr .9fr; gap: 4rem; } }
.contact-aside { display: grid; gap: 1.75rem; align-content: start; }
.contact-block h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; margin-bottom: .3rem; letter-spacing: .02em; }
.contact-block p { margin: 0; }
.placeholder { background: #FFF3C4; color: #5C4600; padding: 0 .3rem; border-radius: 3px; font-size: .95em; }

/* Profile */
.profile { display: grid; gap: 2rem; align-items: start; }
.profile-photo { max-width: 360px; }
.profile-name { margin-bottom: .2rem; }
.profile-role { color: var(--slate); font-weight: 600; margin-bottom: 1.25rem; }
.profile-facts { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .75rem; }
.profile-facts li { padding: .9rem 1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.profile-facts strong { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
@media (min-width: 860px) { .profile { grid-template-columns: 360px 1fr; gap: 3.5rem; } }

/* Industries */
.industry { padding: 1.75rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.industry h3 { font-size: 1.3rem; }
.industry ul { margin: 0; padding-left: 1.1em; }
.industry li::marker { color: var(--gold); }

/* Article */
.article-head { padding-top: clamp(2.5rem, 6vw, 4.5rem); }
.article-head h1 { font-size: clamp(2rem, 4vw, 3rem); }
.article-meta { color: var(--muted); font-size: .92rem; }
.article-hero { margin-top: 2rem; }
.article-body { padding-block: clamp(2rem, 5vw, 3.5rem) 1rem; font-size: 1.08rem; }
.article-body > p:first-of-type { font-size: 1.2rem; color: var(--charcoal); }
.article-body h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-top: 2.25rem; }
.article-body h3 { font-size: 1.25rem; margin-top: 1.75rem; }
.article-body li::marker { color: var(--gold); }
.article-body blockquote {
  margin: 1.75rem 0; padding: .25rem 0 .25rem 1.25rem; border-left: 3px solid var(--gold);
  font-family: var(--font-head); font-size: 1.3rem; line-height: 1.4;
}
.article-foot { padding-block: 1.5rem clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line); margin-top: 2rem; }
.article-author { color: var(--muted); }

/* ---------- Disclaimer ---------- */
.disclaimer { background: var(--ivory-2); border-top: 1px solid var(--line); padding-block: 1.1rem; }
.disclaimer p { margin: 0; font-size: .78rem; line-height: 1.5; color: var(--muted-2); }
.disclaimer a { color: var(--muted-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(246,243,238,.82); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-brand .brand { color: var(--ivory); }
.footer-brand .wordmark { width: 196px; }
.footer-tagline { margin: 1.25rem 0 .5rem; max-width: 30em; font-family: var(--font-head); font-size: 1.05rem; color: var(--ivory); }
.footer-cred { font-size: .82rem; letter-spacing: .04em; margin: 0; }
.footer-heading { font-family: var(--font-body); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { color: rgba(246,243,238,.85); text-decoration: none; }
.footer-col a:hover { color: var(--ivory); text-decoration: underline; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .82rem;
}
.footer-copy { margin: 0; }
.footer-legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.footer-legal a { color: rgba(246,243,238,.8); text-decoration: none; }
.footer-legal a:hover { color: var(--ivory); text-decoration: underline; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .tab-panel.is-active { animation: none; }
  .btn, .link-arrow::after, .hero-card, .card { transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.max-w-prose { max-width: 70ch; }
.small { font-size: .9rem; }
.muted { color: var(--muted); }
.print-only { display: none; }
@media print {
  .site-header, .site-footer, .cta-band, .disclaimer, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
}
