/* ============================================================
   Tacticity Advisors — Production Stylesheet v3
   Aesthetic: Scientific editorial. Restrained luxury.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Figtree:wght@300;400;500&family=IBM+Plex+Mono:wght@300;400&display=swap');

/* ── TOKENS ── */
:root {
  --ink:         #17171a;
  --ink-65:      #525258;
  --ink-40:      #818188;
  --ink-18:      #d0d0d6;
  --canvas:      #fafaf8;
  --white:       #ffffff;
  --surface:     #f2f2ef;
  --teal:        #1a6b5a;
  --teal-mid:    #1f8470;
  --teal-pale:   #edf4f2;
  --teal-light:  #6dbf9c;
  --border:      #e2e2de;
  --font-serif:  'EB Garamond', Georgia, serif;
  --font-sans:   'Figtree', system-ui, sans-serif;
  --font-mono:   'IBM Plex Mono', 'Courier New', monospace;
  --nav-h:       72px;
  --max-w:       860px;
  --max-w-wide:  1100px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--canvas); color: var(--ink);
  font-family: var(--font-sans); font-weight: 300;
  line-height: 1.65; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* ── SKIP LINK ── */
.skip {
  position: absolute; top: -100%; left: 1rem;
  background: var(--ink); color: #fff;
  padding: .4rem 1rem; font-size: .75rem;
  font-family: var(--font-mono); z-index: 9999;
}
.skip:focus { top: 1rem; }

/* ============================================================
   LAYOUT SYSTEM — consistent centring across all sections
   ============================================================ */
.section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 2.5rem;
}
.section-inner--wide {
  max-width: var(--max-w-wide);
  margin-inline: auto;
  padding-inline: 2.5rem;
}

/* ── SECTION LABEL ── */
.section-label {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-mono); font-size: .58rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: ''; display: block; width: 1.75rem; height: 1.5px;
  background: var(--teal); flex-shrink: 0;
}

/* ── HEADINGS ── */
h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.02em; color: var(--ink);
  margin-bottom: 1.75rem;
  animation: fadeUp .55s var(--ease) .2s both;
}
h1 em { font-style: italic; color: var(--teal); }

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -.01em; color: var(--ink);
  margin-bottom: 1.25rem;
}
h2 em { font-style: italic; color: var(--teal); }

/* ── BODY COPY ── */
.body-copy { font-size: .97rem; font-weight: 300; line-height: 1.9; color: var(--ink-65); }
.body-copy p + p { margin-top: 1rem; }
.body-copy strong { font-weight: 500; color: var(--ink); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .875rem 1.75rem; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); color: #fff; border: 1px solid var(--teal); }
.btn-primary:hover { background: var(--teal-mid); border-color: var(--teal-mid); }
.btn-outline { background: transparent; color: var(--ink-65); border: 1px solid var(--border); }
.btn-outline:hover { color: var(--ink); border-color: var(--ink-40); }
.btn-ghost-light { background: var(--canvas); color: var(--ink); border: 1px solid transparent; }
.btn-ghost-light:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .22s; }
.reveal-d3 { transition-delay: .32s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: 0 1px 28px rgba(0,0,0,.07); }

.logo-link { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-divider { width: 1px; height: 46px; background: var(--border); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; gap: 3px; }
.logo-name { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 400; color: var(--ink); letter-spacing: .01em; line-height: 1; }
.logo-sub { font-family: var(--font-mono); font-size: .52rem; letter-spacing: .24em; text-transform: uppercase; color: var(--teal); line-height: 1; }

.nav-links { display: flex; gap: 2.25rem; }
.nav-link { font-size: .82rem; font-weight: 400; color: var(--ink-65); position: relative; padding-bottom: 2px; transition: color .15s; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--teal); transition: width .25s var(--ease); }
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { width: 100%; }
.nav-cta { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .08em; color: var(--white); background: var(--teal); padding: .6rem 1.4rem; transition: background .15s; flex-shrink: 0; }
.nav-cta:hover { background: var(--teal-mid); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .35rem; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .25s var(--ease), opacity .15s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; z-index: 99; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform .25s var(--ease), opacity .2s; }
.nav-drawer.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-drawer a { display: block; padding: .75rem 0; border-bottom: 1px solid var(--border); font-size: .95rem; color: var(--ink); }
.nav-drawer .nav-cta { display: block; text-align: center; margin-top: 1rem; }

/* ============================================================
   HERO — full width, centred
   ============================================================ */
.hero {
  padding-top: var(--nav-h);
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,107,90,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,107,90,.028) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero-copy {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 820px;
  padding: 6rem 2.5rem 5rem;
  margin-inline: auto;
}

.hero-kicker {
  font-family: var(--font-mono); font-size: .6rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 1.75rem;
  animation: fadeUp .55s var(--ease) .1s both;
}

.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.85;
  color: var(--ink-65); max-width: 56ch;
  margin-bottom: 2.5rem;
  animation: fadeUp .55s var(--ease) .3s both;
}

.hero-btns {
  display: flex; gap: .85rem; flex-wrap: wrap;
  animation: fadeUp .55s var(--ease) .4s both;
}

.hero-accent {
  display: flex; align-items: flex-end; gap: 5px;
  margin-bottom: 2.25rem;
  animation: fadeUp .45s var(--ease) 0s both;
}
.hero-accent span { display: block; width: 4px; background: var(--teal); border-radius: 1px; }
.hero-accent span:nth-child(1) { height: 18px; opacity: .5; }
.hero-accent span:nth-child(2) { height: 32px; opacity: .8; }
.hero-accent span:nth-child(3) { height: 24px; opacity: .65; }
.hero-accent span:nth-child(4) { height: 32px; opacity: .8; }
.hero-accent span:nth-child(5) { height: 18px; opacity: .5; }

.provenance {
  margin-top: 2.75rem;
  border-left: 2px solid var(--teal);
  padding: 1.5rem 1.75rem;
  background: var(--teal-pale);
  animation: fadeUp .55s var(--ease) .5s both;
  max-width: 56ch;
}
.provenance-label { font-family: var(--font-mono); font-size: .54rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); margin-bottom: .85rem; }
.provenance-statement { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; line-height: 1.7; color: var(--ink); }
.provenance-statement em { font-style: italic; color: var(--teal); }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip { background: var(--teal); border-bottom: 1px solid #134f42; padding: 2.25rem 2.5rem; }
.stat-strip-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-w); margin-inline: auto; gap: 1rem; }
.stat-item { text-align: center; flex: 1; }
.stat-val { display: block; font-family: var(--font-serif); font-size: 1.75rem; font-weight: 400; color: #fff; letter-spacing: -.01em; line-height: 1; margin-bottom: .4rem; }
.stat-label { font-family: var(--font-mono); font-size: .55rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.88); line-height: 1.5; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ============================================================
   EXPERTISE STRIP
   ============================================================ */
.expertise { padding: 3rem 0; border-bottom: 1px solid var(--border); }
.exp-label { font-family: var(--font-mono); font-size: .54rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.exp-list { display: flex; flex-direction: column; }
.exp-item { display: flex; align-items: center; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--border); font-size: .92rem; font-weight: 400; color: var(--ink); transition: padding-left .2s var(--ease); }
.exp-item:last-child { border-bottom: none; }
.exp-item:hover { padding-left: .4rem; }
.exp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.what    { padding: 6rem 0; background: var(--white); border-bottom: 1px solid var(--border); }
.why     { padding: 6rem 0; border-bottom: 1px solid var(--border); background: var(--surface); background-image: radial-gradient(circle, rgba(26,107,90,.06) 1px, transparent 1px); background-size: 28px 28px; }
.working { padding: 6rem 0; background: var(--white); border-bottom: 1px solid var(--border); }
.services{ padding: 6rem 0; background: var(--white); border-bottom: 1px solid var(--border); }
.stages  { padding: 6rem 0; border-bottom: 1px solid var(--border); background: var(--surface); background-image: radial-gradient(circle, rgba(26,107,90,.06) 1px, transparent 1px); background-size: 28px 28px; }
.founder { padding: 6rem 0; background: var(--white); border-bottom: 1px solid var(--border); }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.principles { border: 1px solid var(--border); margin-top: 2.5rem; }
.principle { padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); position: relative; transition: background .15s; }
.principle:last-child { border-bottom: none; }
.principle::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--teal); transform: scaleY(0); transform-origin: bottom; transition: transform .3s var(--ease); }
.principle:hover { background: var(--teal-pale); }
.principle:hover::before { transform: scaleY(1); }
.p-tag-label { font-family: var(--font-mono); font-size: .54rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: .4rem; }
.p-text { font-size: .93rem; color: var(--ink); line-height: 1.6; font-weight: 300; }
.p-text strong { font-weight: 600; }

/* Client types */
.client-types { margin-top: 3rem; }
.client-types-label { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .75rem; }
.client-types-label::before { content: ''; display: block; width: 1.5rem; height: 1.5px; background: var(--teal); flex-shrink: 0; }
.client-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); }
.client-card { padding: 1.75rem 2rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background .15s; position: relative; overflow: hidden; }
.client-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--teal); transform: scaleY(0); transform-origin: bottom; transition: transform .3s var(--ease); }
.client-card:hover { background: var(--teal-pale); }
.client-card:hover::before { transform: scaleY(1); }
.client-card:nth-child(2n) { border-right: none; }
.client-card:nth-child(3), .client-card:nth-child(4) { border-bottom: none; }
.client-card-icon { color: var(--teal); margin-bottom: .85rem; opacity: .75; }
.client-card-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: .5rem; line-height: 1.25; }
.client-card-body { font-size: .855rem; font-weight: 300; color: var(--ink-65); line-height: 1.75; }

/* ============================================================
   WHY TACTICITY
   ============================================================ */
.pullquote { background: var(--ink); padding: 2.25rem 2.75rem; border-left: 2.5px solid var(--teal); margin: 2rem 0; }
.pullquote p { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; line-height: 1.55; color: #ffffff; }

/* ============================================================
   WHAT TO EXPECT (Working With Us)
   ============================================================ */
.working-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); margin-top: 2.5rem; }
.working-card { padding: 2.25rem 2rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background .15s; position: relative; overflow: hidden; }
.working-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.working-card:hover { background: var(--teal-pale); }
.working-card:hover::after { transform: scaleX(1); }
.working-card:nth-child(2n) { border-right: none; }
.working-card:nth-child(3), .working-card:nth-child(4) { border-bottom: none; }
.wc-num { font-family: var(--font-mono); font-size: .72rem; font-weight: 400; letter-spacing: .1em; color: var(--teal); margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1.5px solid var(--teal); display: inline-block; }
.wc-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--ink); line-height: 1.25; margin-bottom: .75rem; }
.wc-body { font-size: .875rem; font-weight: 300; color: var(--ink-65); line-height: 1.8; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-intro { margin-top: 1.5rem; }
.svc-intro-text { font-size: .97rem; font-weight: 300; color: var(--ink-65); line-height: 1.9; }
.svc-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 3rem; border: 1px solid var(--border); }
.svc-group { padding: 2rem 2.25rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background .18s; position: relative; overflow: hidden; }
.svc-group::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--teal); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.svc-group:hover { background: var(--teal-pale); }
.svc-group:hover::before { transform: scaleY(1); }
.svc-group:nth-child(2n) { border-right: none; }
.svc-group:nth-last-child(-n+2) { border-bottom: none; }
.svc-group-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.svc-group-num { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; color: var(--teal); background: var(--teal-pale); border: 1px solid rgba(26,107,90,.2); padding: .25rem .6rem; flex-shrink: 0; margin-top: .1rem; }
.svc-group-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--ink); line-height: 1.2; margin-bottom: .3rem; }
.svc-group-sub { font-family: var(--font-mono); font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-65); line-height: 1.5; }
.svc-items { list-style: none; display: flex; flex-direction: column; }
.svc-items li { font-size: .855rem; font-weight: 300; color: var(--ink-65); line-height: 1.65; padding: .45rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: baseline; gap: .65rem; }
.svc-items li:last-child { border-bottom: none; }
.svc-items li::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: .45rem; }

/* ============================================================
   STAGES
   ============================================================ */
.stage-list { border: 1px solid var(--border); margin-top: 2rem; }
.stage { padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); background: var(--white); transition: background .15s; }
.stage:last-child { border-bottom: none; }
.stage:hover { background: var(--teal-pale); }
.st-tag { font-family: var(--font-mono); font-size: .54rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: .4rem; }
.st-title { font-size: .92rem; font-weight: 600; color: var(--ink); margin-bottom: .3rem; }
.st-body { font-size: .875rem; font-weight: 300; color: var(--ink-65); line-height: 1.7; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder-card { border: 1px solid var(--border); margin-bottom: 4rem; overflow: hidden; }
.founder-top { display: grid; grid-template-columns: 260px 1fr; min-height: 320px; }
.founder-photo { overflow: hidden; border-right: 1px solid var(--border); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; transition: transform .6s var(--ease); }
.founder-card:hover .founder-photo img { transform: scale(1.03); }
.founder-info { padding: 2.25rem 2.5rem; display: flex; flex-direction: column; justify-content: flex-end; }
.founder-name { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; color: var(--ink); line-height: 1.1; margin-bottom: .35rem; }
.founder-role { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); line-height: 1.9; }
.about-story { margin-top: 2rem; }
.about-story p { font-size: .95rem; font-weight: 300; line-height: 1.95; color: var(--ink-65); margin-bottom: 1.25rem; }
.about-story p:last-child { margin-bottom: 0; }
.about-story strong { font-weight: 500; color: var(--ink); }
.about-talks { font-size: .9rem; font-weight: 300; line-height: 1.85; color: var(--ink); margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid var(--border); font-style: italic; opacity: .75; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta { padding: 7rem 2.5rem; background: var(--ink); text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; opacity: .04; background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px); background-size: 52px 52px; }
.cta .section-label { justify-content: center; color: var(--teal-light); }
.cta .section-label::before { background: var(--teal-light); }
.cta h2 { color: #fff; }
.cta h2 em { color: var(--teal-light); }
.cta-body { font-size: .97rem; font-weight: 300; color: rgba(255,255,255,.82); line-height: 1.85; max-width: 52ch; margin: 0 auto 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #111113; padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.05); gap: 2rem; }
.footer-copy { font-family: var(--font-mono); font-size: .55rem; letter-spacing: .07em; color: rgba(255,255,255,.72); }
.footer-copy a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-address { display: block; font-size: .52rem; letter-spacing: .05em; color: rgba(255,255,255,.55); margin-top: .4rem; line-height: 1.5; }
.footer-nav { display: flex; gap: 1.75rem; }
.footer-nav a { font-size: .78rem; color: rgba(255,255,255,.68); transition: color .15s; }
.footer-nav a:hover { color: #ffffff; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .nav { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer { display: block; }
  .section-inner, .section-inner--wide { padding-inline: 1.5rem; }
  .hero-copy { padding: 5rem 1.5rem 4rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  .hero-copy { padding: 4rem 1.5rem 3rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .client-grid { grid-template-columns: 1fr; }
  .client-card { border-right: none; }
  .client-card:nth-child(3), .client-card:nth-child(4) { border-bottom: 1px solid var(--border); }
  .client-card:last-child { border-bottom: none; }
  .working-cards { grid-template-columns: 1fr; }
  .working-card { border-right: none; }
  .working-card:nth-child(3), .working-card:nth-child(4) { border-bottom: 1px solid var(--border); }
  .working-card:last-child { border-bottom: none; }
  .svc-groups { grid-template-columns: 1fr; }
  .svc-group { border-right: none; }
  .svc-group:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .svc-group:last-child { border-bottom: none; }
  .founder-top { grid-template-columns: 1fr; }
  .founder-photo { border-right: none; border-bottom: 1px solid var(--border); aspect-ratio: 4/3; }
  .founder-photo img { object-position: center 20%; }
  .stat-strip { padding: 2rem 1.5rem; }
  .stat-strip-inner { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
  .stat-divider { display: none; }
  .footer { flex-direction: column; gap: 1rem; padding: 1.5rem; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
  .pullquote { padding: 1.5rem; }
  .pullquote p { font-size: 1.05rem; }
}

/* ============================================================
   PRINT & REDUCED MOTION
   ============================================================ */
@media print { .nav, .hero-btns, .cta { display: none; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── LINKEDIN ── */
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.68) !important;
  font-size: .78rem;
  transition: color .15s;
  white-space: nowrap;
}
.footer-linkedin:hover { color: #ffffff !important; }
.footer-linkedin svg { flex-shrink: 0; }

.cta-linkedin {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .06em;
}
.cta-linkedin a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 1px;
}
.cta-linkedin a:hover { color: var(--teal-light); border-color: var(--teal-light); }
