/* =========================================================================
   FENNWICK PRACTICE — bespoke stylesheet
   Display: Prata · Body/UI: Karla · Mono accent: Martian Mono
   Palette: near-black + concrete grey + safety-orange
   Motion: clip-path wipe reveals + parallax layers
   ========================================================================= */

:root {
  --ink:        #121110;   /* near-black */
  --ink-2:      #1c1a18;
  --concrete:   #8a8782;   /* concrete grey */
  --concrete-2: #b8b4ad;
  --paper:      #f4f1ec;   /* warm off-white */
  --paper-2:    #e9e4db;
  --orange:     #ff4d1c;   /* safety orange */
  --orange-2:   #ff6a3c;
  --orange-deep:#d83a10;
  --line:       rgba(18,17,16,.14);
  --line-light: rgba(244,241,236,.16);

  --font-display: "Prata", Georgia, "Times New Roman", serif;
  --font-body:    "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "Martian Mono", "SFMono-Regular", ui-monospace, monospace;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --r: 4px;

  --ease: cubic-bezier(.16,.84,.34,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.62;
  font-size: clamp(16px, 1.05vw, 18px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ---------- skip link ---------- */
.skip {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--paper); padding: 12px 20px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
}
.skip:focus { left: 12px; top: 12px; }

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

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 820px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px; background: var(--orange);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.06; letter-spacing: -.01em; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: inline-flex; align-items: baseline; gap: .55rem; }
.brand .mark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -.02em;
  color: var(--ink);
}
.brand .mark b { color: var(--orange); font-weight: 400; }
.brand .sub {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--concrete);
}
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-2);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1.5px; background: var(--orange);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-links a[aria-current="page"] { color: var(--orange-deep); }
.nav-cta {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: 11px 20px; border-radius: 100px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--orange); transform: translateY(-1px); }
.nav-toggle { display: none; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase;
  padding: 15px 26px; border-radius: 100px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--orange); color: #fff; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 8% -10%, rgba(255,77,28,.10), transparent 55%),
    radial-gradient(140% 120% at 100% 0%, rgba(18,17,16,.06), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
}
.hero-mesh {
  position: absolute; inset: -10% -10% auto -10%; height: 120%;
  pointer-events: none; z-index: 0; opacity: .9;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 78%);
  opacity: .5;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-tag { margin-bottom: clamp(20px, 3vw, 32px); }
.hero h1 {
  font-size: clamp(2.7rem, 7.4vw, 6rem);
  max-width: 16ch;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: italic; color: var(--orange-deep); }
.hero-lead {
  margin-top: clamp(22px, 3vw, 32px);
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--ink-2);
}
.hero-actions { margin-top: clamp(30px, 4vw, 44px); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-figure {
  margin-top: clamp(44px, 6vw, 72px);
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}
.hero-figure .badge {
  position: absolute; left: 22px; bottom: 22px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 100px;
}

/* ticker */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ink); color: var(--paper);
  overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-flex; gap: 0; will-change: transform; animation: tick 34s linear infinite; }
.ticker-track span {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  padding: 15px 30px; display: inline-flex; align-items: center; gap: 30px;
}
.ticker-track span::after { content: "✦"; color: var(--orange); }
@keyframes tick { to { transform: translateX(-50%); } }

/* =========================================================================
   SECTION SCAFFOLD
   ========================================================================= */
section { position: relative; }
.section { padding: clamp(64px, 10vw, 132px) 0; }
.section-head { max-width: 60ch; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-top: 18px; }
.section-head p { margin-top: 20px; color: var(--ink-2); font-size: 1.1rem; max-width: 56ch; }
.section.dark { background: var(--ink); color: var(--paper); }
.section.dark .section-head p { color: var(--concrete-2); }
.section.dark .eyebrow { color: var(--orange-2); }
.section.dark .eyebrow::before { background: var(--orange-2); }

/* =========================================================================
   INTRO / TRUST STATS
   ========================================================================= */
.intro-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.intro-grid .lede { font-family: var(--font-display); font-size: clamp(1.5rem, 2.7vw, 2.15rem); line-height: 1.28; letter-spacing: -.01em; }
.intro-grid .lede span { color: var(--orange-deep); }
.intro-body p + p { margin-top: 1.1em; color: var(--ink-2); }
.intro-sign { margin-top: 26px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; color: var(--concrete); text-transform: uppercase; }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-top: clamp(48px, 7vw, 80px); border-radius: var(--r); overflow: hidden;
}
.stat { background: var(--paper); padding: clamp(24px,3vw,36px) clamp(20px,2.4vw,28px); }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 4.6vw, 3.6rem); line-height: 1; color: var(--ink); }
.stat .num em { color: var(--orange); font-style: normal; }
.stat .lbl { margin-top: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--concrete); line-height: 1.5; }

/* =========================================================================
   SERVICES / CARDS
   ========================================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; min-height: 320px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px -30px rgba(18,17,16,.4); border-color: rgba(18,17,16,.22); }
.card:hover::before { transform: scaleX(1); }
.card .idx { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: var(--orange-deep); }
.card h3 { font-size: 1.7rem; margin: 18px 0 12px; }
.card p { color: var(--ink-2); font-size: .98rem; }
.card .meta {
  margin-top: auto; padding-top: 22px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--concrete); display: flex; gap: 8px; flex-wrap: wrap;
}
.card .meta span { border: 1px solid var(--line); padding: 5px 10px; border-radius: 100px; }

/* dark section cards (approach) */
.section.dark .card { background: var(--ink-2); border-color: var(--line-light); }
.section.dark .card p { color: var(--concrete-2); }
.section.dark .card .meta span { border-color: var(--line-light); color: var(--concrete-2); }
.section.dark .card:hover { box-shadow: 0 26px 60px -30px rgba(0,0,0,.7); border-color: rgba(244,241,236,.3); }

/* =========================================================================
   FEATURE / SPLIT
   ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.split-media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; filter: saturate(.94); }
.split-media .clip-mask { position: absolute; inset: 0; background: var(--ink); z-index: 2; }
.split h3 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.split .list { margin-top: 26px; display: grid; gap: 2px; }
.split .list li {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: baseline;
  padding: 16px 0; border-top: 1px solid var(--line);
}
.split .list li:last-child { border-bottom: 1px solid var(--line); }
.split .list .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--orange-deep); text-transform: uppercase; }
.split .list .v strong { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; display: block; }
.split .list .v p { color: var(--ink-2); font-size: .95rem; margin-top: 4px; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.4vw,26px); }
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(28px,3vw,38px); display: flex; flex-direction: column;
}
.section.dark .quote { background: var(--ink-2); border-color: var(--line-light); }
.quote .mk { font-family: var(--font-display); font-size: 3.4rem; line-height: .6; color: var(--orange); height: .5em; }
.quote blockquote { font-family: var(--font-display); font-size: 1.22rem; line-height: 1.4; margin: 18px 0 26px; letter-spacing: -.01em; }
.section.dark .quote blockquote { color: var(--paper); }
.quote .who { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.quote .who .av {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: grid; place-items: center; color: #fff; font-family: var(--font-mono); font-size: 13px; font-weight: 700;
}
.quote .who .n { font-weight: 700; font-size: .98rem; }
.quote .who .r { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--concrete); }
.section.dark .quote .who .r { color: var(--concrete-2); }

/* =========================================================================
   TEAM
   ========================================================================= */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,32px); }
.member { }
.member .ph {
  border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4/5; background: var(--paper-2); position: relative;
}
.member .ph img { width:100%; height:100%; object-fit: cover; filter: grayscale(.25) saturate(.95); transition: filter .5s var(--ease), transform .6s var(--ease); }
.member:hover .ph img { filter: grayscale(0) saturate(1); transform: scale(1.03); }
.member h3 { font-size: 1.4rem; margin-top: 18px; }
.member .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-deep); margin-top: 6px; }
.member p { color: var(--ink-2); font-size: .94rem; margin-top: 12px; }

/* =========================================================================
   INSIGHTS / POSTS
   ========================================================================= */
.insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,2.6vw,30px); }
.post-card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 24px 54px -30px rgba(18,17,16,.42); }
.post-card .thumb { overflow: hidden; aspect-ratio: 16/10; background: var(--paper-2); }
.post-card .thumb img { width:100%; height:100%; object-fit: cover; transition: transform .6s var(--ease); filter: saturate(.95); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .pc-body { padding: 24px clamp(20px,2vw,26px) 26px; display: flex; flex-direction: column; flex: 1; }
.post-card .pc-cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-deep); }
.post-card h3 { font-size: 1.28rem; line-height: 1.18; margin: 12px 0 10px; }
.post-card p { color: var(--ink-2); font-size: .92rem; flex: 1; }
.post-card .pc-foot { margin-top: 18px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--concrete); display:flex; justify-content: space-between; align-items: center; }
.post-card .pc-foot .read { color: var(--orange-deep); }

/* =========================================================================
   RESOURCES / BLOGROLL
   ========================================================================= */
.resources { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-light); border:1px solid var(--line-light); border-radius: var(--r); overflow: hidden; }
.resource {
  background: var(--ink); padding: clamp(22px,2.6vw,30px); display:flex; flex-direction:column; gap: 8px;
  transition: background .35s var(--ease);
}
.resource:hover { background: var(--ink-2); }
.resource .r-anchor { font-family: var(--font-display); font-size: 1.3rem; color: var(--paper); display:inline-flex; align-items:center; gap:.5em; }
.resource:hover .r-anchor { color: var(--orange-2); }
.resource .r-url { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--concrete); word-break: break-all; }
.resource p { color: var(--concrete-2); font-size: .94rem; }

/* =========================================================================
   CTA BANNER
   ========================================================================= */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 130% at 90% 10%, rgba(255,77,28,.22), transparent 55%),
    var(--ink);
  color: var(--paper); border-radius: var(--r);
  padding: clamp(48px, 7vw, 92px) clamp(28px, 5vw, 72px);
  text-align: center;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.6rem); max-width: 18ch; margin: 16px auto 0; }
.cta-band p { margin: 22px auto 0; max-width: 48ch; color: var(--concrete-2); }
.cta-band .actions { margin-top: 36px; display:flex; gap:14px; justify-content:center; flex-wrap: wrap; }
.cta-band .eyebrow { color: var(--orange-2); }
.cta-band .eyebrow::before { background: var(--orange-2); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--ink); color: var(--paper); padding: clamp(56px,7vw,90px) 0 40px; }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px,4vw,48px); }
.footer-brand .mark { font-family: var(--font-display); font-size: 1.7rem; }
.footer-brand .mark b { color: var(--orange); }
.footer-brand p { color: var(--concrete-2); margin-top: 16px; max-width: 34ch; font-size: .95rem; }
.fcol h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--concrete); font-weight: 600; margin-bottom: 18px; }
.fcol a, .fcol p { display:block; color: var(--paper); opacity: .82; padding: 5px 0; font-size: .95rem; transition: opacity .3s, color .3s; }
.fcol a:hover { opacity: 1; color: var(--orange-2); }
.footer-bottom { margin-top: clamp(40px,5vw,64px); padding-top: 26px; border-top: 1px solid var(--line-light); display:flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p, .footer-bottom a { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--concrete); text-transform: uppercase; }

/* =========================================================================
   ARTICLE PAGES
   ========================================================================= */
.article-hero { padding: clamp(48px,7vw,96px) 0 clamp(28px,4vw,44px); background: linear-gradient(180deg, var(--paper), var(--paper-2)); border-bottom: 1px solid var(--line); }
.breadcrumb { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--concrete); display:flex; gap:10px; align-items:center; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--orange-deep); }
.breadcrumb .sep { color: var(--line); }
.article-hero h1 { font-size: clamp(2.1rem, 5vw, 4rem); max-width: 20ch; margin: 24px 0 0; }
.article-meta { margin-top: 26px; display:flex; gap: 22px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--concrete); }
.article-meta strong { color: var(--orange-deep); font-weight: 600; }
.article-feature { margin: clamp(28px,4vw,48px) auto 0; max-width: var(--maxw); padding-inline: var(--gutter); }
.article-feature img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--r); border:1px solid var(--line); }

.article-body { padding: clamp(40px,6vw,72px) 0 clamp(56px,8vw,96px); }
.article-body .prose { max-width: 720px; margin-inline: auto; }
.prose p { margin: 1.15em 0; color: var(--ink-2); font-size: 1.08rem; line-height: 1.74; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 1.9em 0 .5em; letter-spacing: -.01em; }
.prose h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); margin: 1.6em 0 .4em; }
.prose h2 + p, .prose h3 + p { margin-top: .4em; }
.prose a { color: var(--orange-deep); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; font-weight: 700; }
.prose a:hover { color: var(--orange); }
.prose strong { color: var(--ink); }
.prose em { color: var(--ink-2); }
.prose ul, .prose ol { margin: 1.1em 0; padding-left: 1.3em; }
.prose ul li { list-style: none; position: relative; padding: 7px 0 7px 4px; }
.prose ul li::before { content: ""; position: absolute; left: -16px; top: 18px; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }
.prose ol { list-style: decimal; }
.prose ol li { padding: 7px 0 7px 6px; margin-left: 6px; }
.prose ol li::marker { font-family: var(--font-mono); color: var(--orange-deep); font-size: .85em; }
.prose figure { margin: 2em 0; }
.prose figure img, .prose p > img { border-radius: var(--r); border:1px solid var(--line); width: 100%; }
.prose img { margin: 1.6em auto; }
.prose section { margin-top: 1.2em; }
.prose section h2 { margin-top: 1.4em; }
.prose [itemprop="name"] { font-family: var(--font-display); }
.prose .prose-faq-q { font-weight: 700; }

.article-cta {
  max-width: 720px; margin: clamp(40px,5vw,56px) auto 0;
  background: var(--ink); color: var(--paper); border-radius: var(--r);
  padding: clamp(30px,4vw,44px); text-align: center;
}
.article-cta h3 { font-size: 1.7rem; }
.article-cta p { color: var(--concrete-2); margin: 14px 0 24px; }

/* related */
.related { border-top: 1px solid var(--line); padding-top: clamp(40px,5vw,60px); margin-top: clamp(40px,5vw,60px); }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,72px); align-items: start; }
.contact-info .lede { font-family: var(--font-display); font-size: clamp(1.5rem,2.6vw,2.1rem); line-height: 1.3; }
.contact-rows { margin-top: 34px; display:grid; gap:2px; }
.contact-rows .row { padding: 18px 0; border-top: 1px solid var(--line); display:grid; grid-template-columns: 130px 1fr; gap: 16px; }
.contact-rows .row:last-child { border-bottom:1px solid var(--line); }
.contact-rows .row .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--concrete); }
.contact-rows .row .v a { color: var(--orange-deep); font-weight: 700; }
.contact-rows .row .v a:hover { color: var(--orange); }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(28px,3.4vw,42px); }
.field { margin-bottom: 22px; }
.field label { display:block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 10px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 16px; transition: border-color .3s, background .3s;
}
.field input:focus, .field textarea:focus { border-color: var(--orange); background: #fff; outline: none; }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; }
.form-note { margin-top: 16px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .04em; color: var(--concrete); text-align: center; }

/* =========================================================================
   MOTION — clip-path wipe reveals + parallax
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }

/* clip wipe for media */
.wipe { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s var(--ease); }
.wipe.in { clip-path: inset(0 0 0 0); }

/* word stagger (hero) */
.line { display: block; overflow: hidden; }
.word { display: inline-block; transform: translateY(110%); opacity: 0; }
.loaded .word { animation: wordUp .9s var(--ease) forwards; }
@keyframes wordUp { to { transform: translateY(0); opacity: 1; } }

.parallax { will-change: transform; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 980px) {
  .intro-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .cards, .quotes, .team, .insights { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .resources { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .cards, .quotes, .team, .insights { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-figure img { aspect-ratio: 4/3; }
  .contact-rows .row { grid-template-columns: 1fr; gap: 4px; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .wipe { clip-path: none !important; }
  .word { transform: none !important; opacity: 1 !important; }
  .ticker-track { animation: none !important; }
}
