/* ============================================================
   Normington Digital
   Editorial monochrome system — v2
   Type: Fraunces (display) · Inter (text/labels)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500&family=Inter:wght@400;500;600&display=swap");

:root {
  /* Monochrome surfaces */
  --ink:        #0d0d0d;
  --ink-2:      #1a1a1a;
  --paper:      #ffffff;
  --paper-2:    #f5f4f1;   /* warm near-white for alternating sections */
  --paper-3:    #ececea;
  --muted:      #767672;
  --muted-2:    #9a9a96;
  --hair:       rgba(13, 13, 13, 0.12);
  --hair-soft:  rgba(13, 13, 13, 0.07);
  --hair-inv:   rgba(255, 255, 255, 0.16);

  /* Forest-green accent */
  --green:      #1b4332;   /* deep pine — for light backgrounds */
  --green-2:    #74a98f;   /* sage — for dark backgrounds & imagery */

  /* System */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(22px, 5vw, 64px);
  --maxw: 1440px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--paper); }

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

.section { padding-block: clamp(80px, 11vw, 160px); }
.section--sm { padding-block: clamp(56px, 7vw, 96px); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--paper2 { background: var(--paper-2); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-optical-sizing: auto;
}
.display em { font-style: italic; font-weight: 400; color: var(--green); }
.on-ink .display em, .hero .display em, .cta .display em { color: var(--green-2); }

h1.display { font-size: clamp(44px, 8vw, 116px); }
h2.display { font-size: clamp(32px, 5vw, 68px); }
h3.display { font-size: clamp(23px, 2.4vw, 32px); line-height: 1.05; }

.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.label::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.label--bare::before { display: none; }
.on-ink .label, .label--inv { color: var(--green-2); }

.lead {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.012em;
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 400;
}
.muted { color: var(--muted); }
.on-ink .lead { color: rgba(255, 255, 255, 0.74); }
.on-ink .muted { color: var(--muted-2); }

p.body + p.body { margin-top: 1.1em; }

/* ---------- Buttons & links ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 26px 15px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bg);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.btn span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 12px; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.btn:hover { color: var(--ink); border-color: var(--ink); }
.btn:hover::after { transform: scaleX(1); }

.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--hair); }
.btn--ghost:hover { color: var(--paper); }
.btn--ghost::after { background: var(--ink); }

.btn--inv { --bg: var(--paper); --fg: var(--ink); }
.btn--inv::after { background: var(--ink); }
.btn--inv:hover { color: var(--paper); border-color: var(--paper); }

.btn--line {
  --bg: transparent; --fg: currentColor;
  border-color: rgba(255,255,255,0.4);
  color: var(--paper);
}
.btn--line::after { background: var(--paper); }
.btn--line:hover { color: var(--ink); border-color: var(--paper); }

.btn .ico { transition: transform 0.5s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--hair);
  transition: border-color 0.4s var(--ease), gap 0.4s var(--ease);
}
.tlink:hover { border-color: currentColor; gap: 14px; }
.tlink .ico { transition: transform 0.4s var(--ease); }
.tlink:hover .ico { transform: translateX(3px); }

.ico { width: 15px; height: 15px; flex-shrink: 0; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  color: var(--ink);
  transition: background 0.5s var(--ease), color 0.5s var(--ease),
              border-color 0.5s var(--ease), padding 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--over-hero { color: var(--paper); }
.nav--solid {
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  color: var(--ink);
  border-bottom-color: var(--hair-soft);
  padding-block: 15px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand__mark { height: 23px; width: auto; display: block; }
.nav--over-hero .brand__mark { filter: invert(1); }
.brand__txt { display: inline-flex; align-items: baseline; gap: 9px; }
.brand b { font-weight: 600; }
.brand .brand__sub {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 44px);
  list-style: none;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  position: relative;
  opacity: 0.78;
  transition: opacity 0.3s var(--ease);
}
.nav__menu a:hover, .nav__menu a[aria-current="page"] { opacity: 1; }
.nav__menu a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
}
.nav__cta { padding: 11px 20px; font-size: 13px; }

.nav__toggle {
  display: none;
  width: 40px; height: 28px;
  background: none; border: none; cursor: pointer;
  position: relative;
  color: inherit;
}
.nav__toggle span {
  position: absolute; left: 6px; right: 6px; height: 1.5px;
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 9px; }
.nav__toggle span:nth-child(2) { bottom: 9px; }
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__bg img {
  width: 100%; height: 116%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.06) brightness(0.82);
  will-change: transform;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 32%, rgba(0,0,0,0.72) 100%);
}
.hero__inner { width: 100%; padding-block: 16vh 9vh; }
.hero h1 { max-width: 15ch; margin: 26px 0 0; }
.hero__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(34px, 5vw, 56px);
  flex-wrap: wrap;
}
.hero .lead { color: rgba(255,255,255,0.82); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .label { color: var(--green-2); }

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.scroll-cue i {
  width: 1px; height: 34px; background: rgba(255,255,255,0.4);
  position: relative; overflow: hidden;
}
.scroll-cue i::after {
  content:""; position:absolute; inset:0; background: var(--paper);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  60%,100% { transform: translateY(100%); }
}

/* ---------- Page header (interior) ---------- */
.phead {
  padding: clamp(150px, 20vh, 240px) 0 clamp(48px, 6vw, 88px);
  border-bottom: 1px solid var(--hair);
}
.phead__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
.phead h1 { margin-top: 22px; }
.phead .lead { padding-bottom: 8px; }

/* ---------- Intro / statement ---------- */
.statement {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
}
.statement .display { max-width: 18ch; }

/* ---------- Index headings ---------- */
.head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(40px, 5vw, 72px);
  flex-wrap: wrap;
}
.head-row h2 { margin-top: 18px; max-width: 16ch; }

/* ---------- Services (editorial list) ---------- */
.svc {
  border-top: 1px solid var(--hair);
}
.svc__row {
  display: grid;
  grid-template-columns: 90px 1.3fr 2fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 3.2vw, 44px) 8px;
  border-bottom: 1px solid var(--hair);
  position: relative;
  isolation: isolate;
  transition: padding-left 0.5s var(--ease), color 0.5s var(--ease);
}
.svc__row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--ink);
  z-index: -1;
  transition: width 0.5s var(--ease);
}
.svc__row:hover { color: var(--paper); padding-left: 30px; }
.svc__row:hover::before { width: 100%; }
.svc__num { font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.svc__row:hover .svc__num { color: rgba(255,255,255,0.55); }
.svc__title { font-family: var(--serif); font-weight: 400; font-size: clamp(21px, 2vw, 28px); letter-spacing: -0.02em; }
.svc__desc { color: var(--muted); font-size: 15.5px; max-width: 46ch; }
.svc__row:hover .svc__desc { color: rgba(255,255,255,0.72); }
.svc__tag {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.svc__row:hover .svc__tag { color: rgba(255,255,255,0.6); }
.svc__arrow { opacity: 0; transform: translateX(-8px); transition: all 0.5s var(--ease); }
.svc__row:hover .svc__arrow { opacity: 1; transform: none; }

/* ---------- Feature (image + text) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: center;
}
.feature--rev .feature__text { order: 2; }
.figure { position: relative; overflow: hidden; }
.figure img {
  width: 100%; height: 118%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
  will-change: transform;
}
.figure--portrait { aspect-ratio: 4/5; }
.figure--wide { aspect-ratio: 16/10; }
.figure--pano { aspect-ratio: 21/8; }
.figure--scene { aspect-ratio: 16/9; border-radius: 2px; }
@media (max-width: 640px) { .figure--scene { aspect-ratio: 4/3; } }
.figure__cap {
  position: absolute; left: 18px; bottom: 16px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper);
  background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 7px 12px;
}
.feature__text h2 { margin-bottom: 22px; }
.feature__text .btn, .feature__text .tlink { margin-top: 30px; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hair-inv);
}
.stat { padding: clamp(34px, 4vw, 56px) 28px; border-right: 1px solid var(--hair-inv); }
.stat:last-child { border-right: none; }
.stat__n {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(44px, 5.2vw, 76px); line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat__l { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.6); max-width: 22ch; }

/* ---------- Values / principles ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 36px); }
.tile {
  border-top: 1px solid var(--ink);
  padding-top: 26px;
}
.tile__n { font-size: 13px; color: var(--green); font-variant-numeric: tabular-nums; font-weight: 500; letter-spacing: 0.04em; }
.tile h3 { margin: 22px 0 12px; font-family: var(--serif); font-weight: 400; font-size: 25px; letter-spacing: -0.02em; }
.tile p { color: var(--muted); font-size: 15.5px; }
.on-ink .tile { border-top-color: var(--hair-inv); }
.on-ink .tile__n { color: var(--green-2); }
.on-ink .tile p { color: rgba(255,255,255,0.6); }

/* ---------- Clients ---------- */
.notice {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 26px;
  background: var(--ink); color: var(--paper);
  border-radius: 2px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.notice__dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--paper);
  flex-shrink: 0; position: relative;
}
.notice__dot::after {
  content:""; position:absolute; inset:0; border-radius:50%;
  background: var(--paper); animation: ping 2s var(--ease) infinite;
}
@keyframes ping { 0%{transform:scale(1);opacity:.7} 70%,100%{transform:scale(3);opacity:0} }
.notice b { font-weight: 600; font-size: 15px; letter-spacing: 0.01em; }
.notice span.sub { color: rgba(255,255,255,0.66); font-size: 14px; }

.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.case {
  border: 1px solid var(--hair);
  padding: 30px 28px 26px;
  min-height: 300px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--paper);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}
.case:hover { transform: translateY(-5px); box-shadow: 0 26px 60px -28px rgba(0,0,0,0.4); border-color: var(--ink); }
.case__top { display: flex; justify-content: space-between; align-items: start; }
.case__idx { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--paper-3); }
.case:hover .case__idx { color: var(--ink); }
.case__tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.case h3 { font-family: var(--serif); font-weight: 400; font-size: 23px; letter-spacing: -0.02em; margin: 26px 0 12px; }
.case p { color: var(--muted); font-size: 15px; }
.case__meta {
  margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--hair);
  display: flex; justify-content: space-between; font-size: 12.5px; color: var(--muted);
  letter-spacing: 0.01em;
}
.case--empty {
  border-style: dashed; background: var(--paper-2);
  align-items: center; justify-content: center; text-align: center;
}
.case--empty:hover { transform: none; box-shadow: none; border-color: var(--muted-2); }
/* Empty state — no clients yet */
.empty {
  border: 1px solid var(--hair);
  background: var(--paper-2);
  border-radius: 2px;
  padding: clamp(48px, 8vw, 100px) 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.empty__mark {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  margin-bottom: 30px;
}
.empty__mark svg { width: 30px; height: 30px; }
.empty h2 { font-size: clamp(26px, 3.4vw, 42px); max-width: 18ch; }
.empty p { margin-top: 18px; color: var(--muted); max-width: 44ch; font-size: 16.5px; }
.empty .btn { margin-top: 34px; }

.case--empty .plus {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--muted-2);
  display: grid; place-items: center; margin: 0 auto 18px; color: var(--muted);
}
.case--empty b { font-weight: 600; font-size: 15px; }
.case--empty p { margin-top: 4px; font-size: 13px; }

/* ---------- LinkedIn feed ---------- */
.feed { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 3.5vw, 56px); align-items: start; }
.feed__main { display: grid; gap: 22px; }

.post {
  border: 1px solid var(--hair);
  padding: 28px 30px 24px;
  background: var(--paper);
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.post:hover { border-color: var(--ink); box-shadow: 0 22px 50px -30px rgba(0,0,0,0.4); }
.post__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.post__av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center; font-weight: 600; font-size: 15px; letter-spacing: -0.02em;
  flex-shrink: 0;
}
.post__name { font-weight: 600; font-size: 15px; }
.post__meta { font-size: 13px; color: var(--muted); }
.post__body { font-size: 16px; color: var(--ink-2); line-height: 1.6; }
.post__body b { font-weight: 600; }
.post__tags { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-size: 13px; color: var(--muted); font-weight: 500; }
.post__act {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--hair);
  display: flex; gap: 26px; color: var(--muted);
}
.post__act button {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: none; cursor: pointer; color: inherit;
  font: inherit; font-size: 13px; padding: 0;
  transition: color 0.3s var(--ease);
}
.post__act button:hover { color: var(--ink); }
.post__act .ico { width: 16px; height: 16px; }

/* LinkedIn company card */
.li-card { border: 1px solid var(--hair); background: var(--paper); overflow: hidden; border-radius: 2px; }
.li-card__banner { height: 130px; overflow: hidden; }
.li-card__banner img { width: 100%; height: 150%; object-fit: cover; filter: grayscale(100%) contrast(1.04) brightness(0.82); will-change: transform; }
.li-card__body { padding: 0 30px 32px; }
.li-card__logo {
  width: 76px; height: 76px; border-radius: 16px;
  background: var(--paper); border: 1px solid var(--hair);
  display: grid; place-items: center;
  margin-top: -38px; margin-bottom: 18px;
  box-shadow: 0 10px 30px -14px rgba(0,0,0,0.35);
}
.li-card__logo img { width: 46px; height: auto; display: block; }
.li-card h3 { font-family: var(--serif); font-weight: 400; font-size: 27px; letter-spacing: -0.02em; }
.li-card__sub { color: var(--green); font-size: 13px; font-weight: 500; letter-spacing: 0.02em; margin-top: 5px; }
.li-card__desc { color: var(--muted); font-size: 15.5px; margin-top: 14px; max-width: 46ch; }
.li-card__act { margin-top: 26px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.li-btn span { gap: 10px; }
.li-btn .ico { width: 17px; height: 17px; }

.feed__side { position: sticky; top: 96px; display: grid; gap: 20px; }
.embed {
  border: 1px solid var(--hair);
  padding: 28px;
  background: var(--paper);
}
.embed h3 { font-family: var(--serif); font-weight: 400; font-size: 20px; letter-spacing: -0.02em; margin-bottom: 8px; }
.embed > p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.embed--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.embed--ink h3 { color: var(--paper); }
.embed--ink > p { color: rgba(255,255,255,0.66); }
.slot {
  border: 1px dashed var(--muted-2);
  background: var(--paper-2);
  padding: 40px 22px; text-align: center;
  color: var(--muted); font-size: 13px; letter-spacing: 0.01em;
  border-radius: 2px;
}
.slot .in {
  width: 36px; height: 36px; margin: 0 auto 12px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center; border-radius: 4px;
}
.slot .in svg { width: 20px; height: 20px; }
.slot small { display: block; margin-top: 6px; font-size: 12px; color: var(--muted-2); }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; isolation: isolate;
  color: var(--paper); text-align: center;
  padding-block: clamp(96px, 14vw, 190px);
}
.cta__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.cta__bg img { width: 100%; height: 122%; object-fit: cover; filter: grayscale(100%) brightness(0.46); will-change: transform; }
.cta::after { content:""; position:absolute; inset:0; z-index:-1; background: rgba(0,0,0,0.42); }
.cta h2 { max-width: 17ch; margin: 22px auto 34px; }
.cta .label { color: var(--green-2); justify-content: center; }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--paper); padding: clamp(64px, 8vw, 110px) 0 36px; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(44px, 6vw, 72px);
  border-bottom: 1px solid var(--hair-inv);
}
.footer__brand { display: block; max-width: 30ch; }
.footer__brand .ico-wordmark { display: flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; width: fit-content; }
.footer__tag { font-family: var(--serif); font-weight: 300; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; letter-spacing: -0.02em; margin-top: 24px; color: rgba(255,255,255,0.82); max-width: 18ch; }
.footer__mark { height: 30px; width: auto; display: block; filter: invert(1); }
.footer__col h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; font-weight: 600; }
.footer__col a, .footer__col p {
  display: block; font-size: 15px; color: rgba(255,255,255,0.78);
  margin-bottom: 11px; transition: color 0.3s var(--ease); width: fit-content;
}
.footer__col a:hover { color: var(--paper); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 13px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}

.dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; display: inline-block; }

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 100;
  background: var(--ink);
}
.nav--over-hero ~ .progress { background: var(--paper); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-d="1"] { transition-delay: 0.08s; }
[data-d="2"] { transition-delay: 0.16s; }
[data-d="3"] { transition-delay: 0.24s; }
[data-d="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .feature, .feature--rev, .statement, .phead__grid, .feed { grid-template-columns: 1fr; }
  .feature--rev .feature__text { order: 0; }
  .figure--portrait { aspect-ratio: 16/11; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--hair-inv); }
  .grid-3, .cases { grid-template-columns: repeat(2, 1fr); }
  .feed__side { position: static; }
  .svc__row { grid-template-columns: 60px 1fr; gap: 8px 24px; }
  .svc__desc { grid-column: 2; max-width: none; }
  .svc__tag, .svc__arrow { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 380px);
    background: var(--ink); color: var(--paper);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 8px; padding: 0 40px;
    transform: translateX(100%); transition: transform 0.55s var(--ease);
  }
  .nav--open .nav__menu { transform: none; }
  .nav__menu a { font-family: var(--serif); font-size: 30px; font-weight: 300; opacity: 0.85; }
  .grid-3, .cases, .stats, .footer__top { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--hair-inv); }
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .scroll-cue { display: none; }
}
