/* ============================================================================
   Woodlark site — shared styles
   Imports tokens from ../colors_and_type.css
   ============================================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--wl-ink);
  color: var(--wl-bone);
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; border: none; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }

/* Diagonal-line texture echoing the logo's 50° geometry */
body::before {
  content: ""; position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background-image: repeating-linear-gradient(50deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px);
  mix-blend-mode: screen;
}

main, header, footer { position: relative; z-index: 2; }

/* Eyebrow override on sub-brand surfaces — accent colour */
[data-product] .wl-eyebrow { color: var(--accent); }
[data-product="parent"] .wl-eyebrow { color: var(--fg-muted); }

/* Sub-brand accent override for fulfilment */
[data-product="fulfilment"] {
  --accent: var(--brand-3pl);
  --accent-hover: var(--brand-3pl-hover);
  --accent-tint: var(--brand-3pl-tint);
}
[data-product="parent"] { --accent: var(--wl-bone); --accent-hover: var(--wl-violet-2); }

/* ============================================================================
   Layout primitives
   ============================================================================ */
.container { max-width: 1200px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--divider { border-top: 1px solid var(--border); }

/* ============================================================================
   Top nav — four pills + utility + Book a call
   ============================================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
  padding: 16px 40px;
  background: rgba(14, 11, 20, 0.62);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav__brand { display: flex; align-items: center; gap: 10px; color: var(--wl-bone); }
.nav__brand svg { width: 28px; height: 28px; fill: var(--wl-bone); }
.nav__wm { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 0.18em; text-transform: uppercase; }
.nav__wm .wl-wordmark__ext { color: var(--accent); }

.nav__primary {
  display: inline-flex; align-items: center;
  justify-self: center;
  padding: 5px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border);
  gap: 0;
}
.nav__pill {
  display: inline-flex; align-items: center;
  padding: 9px 22px;
  border-radius: var(--r-pill);
  font: 500 14px var(--font-display);
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-muted);
  background: transparent;
  border: none;
  transition: color 180ms, background 180ms;
  white-space: nowrap;
}
.nav__pill:hover { color: var(--wl-bone); background: rgba(255,255,255,0.05); }
.nav__pill.on {
  color: var(--wl-bone);
  background: rgba(255,255,255,0.08);
}
.nav__pill .dot { display: none; }

/* Per-brand hover and active tint — picks up the sub-brand accent */
.nav__pill[data-pill="ai"]:hover         { background: var(--brand-ai-tint);     color: var(--brand-ai); }
.nav__pill[data-pill="growth"]:hover     { background: var(--brand-growth-tint); color: var(--brand-growth); }
.nav__pill[data-pill="studio"]:hover     { background: var(--brand-studio-tint); color: var(--brand-studio); }
.nav__pill[data-pill="fulfilment"]:hover { background: var(--brand-3pl-tint);    color: var(--brand-3pl); }

.nav__pill[data-pill="ai"].on         { background: var(--brand-ai-tint);     color: var(--brand-ai); }
.nav__pill[data-pill="growth"].on     { background: var(--brand-growth-tint); color: var(--brand-growth); }
.nav__pill[data-pill="studio"].on     { background: var(--brand-studio-tint); color: var(--brand-studio); }
.nav__pill[data-pill="fulfilment"].on { background: var(--brand-3pl-tint);    color: var(--brand-3pl); }

.nav__right { display: flex; align-items: center; gap: 24px; }
.nav__util { display: flex; gap: 18px; }
.nav__util a {
  font: 500 13px var(--font-body);
  color: var(--fg-muted);
  transition: color 180ms;
}
.nav__util a:hover, .nav__util a.on { color: var(--wl-bone); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--r-pill);
  background: var(--wl-purple); color: var(--wl-bone);
  font: 600 12px var(--font-display); letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 180ms;
}
.nav__cta:hover { background: var(--wl-purple-2); }
.nav__cta .arr { font-weight: 400; font-size: 14px; }

/* Mobile hamburger — hidden on desktop. Sized to the 44px minimum
   recommended touch-target on phones. */
.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 0; padding: 0; margin: 0;
  background: transparent; cursor: pointer;
  color: var(--wl-bone);
  align-items: center; justify-content: center;
}
.nav__hamburger svg { width: 24px; height: 24px; }

/* Mobile menu container — hidden by default; shown when .nav.is-open */
.nav__mobile {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(14, 11, 20, 0.97);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-top: 1px solid var(--border);
  padding: 12px 20px 28px;
  flex-direction: column;
  gap: 0;
  z-index: 49;
}
.nav__mobile a {
  display: block;
  padding: 16px 4px;
  font: 600 18px var(--font-display);
  letter-spacing: -0.01em;
  color: var(--wl-bone);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a.--util {
  font-size: 14px; font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0;
  padding: 12px 4px;
}
.nav__mobile a.--cta {
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: var(--r-pill);
  background: var(--wl-purple);
  color: var(--wl-bone);
  font: 600 12px var(--font-display);
  letter-spacing: 0.10em; text-transform: uppercase;
  text-align: center;
  border: 0;
}
.nav__mobile a.--cta:hover { background: var(--wl-purple-2); }

/* ============================================================================
   Buttons
   ============================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: var(--r-md);
  font: 600 14px var(--font-display);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 180ms cubic-bezier(0.22,1,0.36,1);
}
.btn--lg { padding: 18px 28px; font-size: 16px; }
.btn--primary { background: var(--wl-purple); color: var(--wl-bone); box-shadow: 0 0 0 1px rgba(152,63,178,0.30), 0 12px 40px rgba(77,14,136,0.30); }
.btn--primary:hover { background: var(--wl-purple-2); }
.btn--accent { background: var(--accent); color: var(--wl-ink); }
.btn--accent:hover { background: var(--accent-hover); }
.btn--ghost { background: transparent; border-color: var(--border-strong); color: var(--wl-bone); }
.btn--ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.28); }
.btn .arr { font-weight: 400; }

/* ============================================================================
   Hero variants
   ============================================================================ */
.hero {
  position: relative;
  padding: 112px 40px 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero__inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.hero__mark {
  position: absolute; right: -90px; top: -40px;
  width: 540px; height: 540px;
  opacity: 0.05; pointer-events: none;
}
.hero__eb { color: var(--accent); margin: 0 0 18px; }

/* Variant A — strapline hero (home only). Matches sub-brand spotlight rhythm. */
.hero--a {
  background: var(--wl-ink);
  text-align: center;
  isolation: isolate;
}
.hero--a::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(176,107,223,0.45) 0%, rgba(81,112,255,0.30) 40%, transparent 100%);
  pointer-events: none;
}
.hero--a .hero__inner { position: relative; z-index: 2; }
.hero--a .hero__mark  { z-index: 1; }

/* Crossfading background slideshow on the home hero */
.hero--a .hero__bg-stack {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.hero--a .hero__bg-stack img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 30%;
  opacity: 0;
  filter: grayscale(0.7) contrast(1.05);
  animation: heroBgRotate 56s linear infinite;
}
/* Per-image focal-point overrides for hero stack */
.hero--a .hero__bg-stack img[data-focus="center"]      { object-position: 50% 50%; }
.hero--a .hero__bg-stack img[data-focus="center-up"]   { object-position: 50% 40%; }
.hero--a .hero__bg-stack img[data-focus="upper"]       { object-position: 50% 25%; }
.hero--a .hero__bg-stack img[data-focus="top"]         { object-position: 50% 5%; }
/* Selectors target both picture-wrapped imgs (slots 1–5, desktop only)
   and direct imgs (slots 6–7, always present) */
.hero--a .hero__bg-stack > picture:nth-child(1) img { animation-delay:  0s; }
.hero--a .hero__bg-stack > picture:nth-child(2) img { animation-delay:  8s; }
.hero--a .hero__bg-stack > picture:nth-child(3) img { animation-delay: 16s; }
.hero--a .hero__bg-stack > picture:nth-child(4) img { animation-delay: 24s; }
.hero--a .hero__bg-stack > picture:nth-child(5) img { animation-delay: 32s; }
.hero--a .hero__bg-stack > img:nth-child(6)        { animation-delay: 40s; }
.hero--a .hero__bg-stack > img:nth-child(7)        { animation-delay: 48s; }

@keyframes heroBgRotate {
  0%   { opacity: 0; }
  3.5% { opacity: 0.08; }
  12.5%{ opacity: 0.08; }
  14.3%{ opacity: 0; }
  100% { opacity: 0; }
}

@keyframes heroBgRotateMobile {
  0%   { opacity: 0; }
  3%   { opacity: 0.10; }
  22%  { opacity: 0.10; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Mobile-only slides in the hero rotation. Hidden on desktop so they
   don't run the 56s desktop animation invisibly in the background. */
.hero--a .hero__bg-stack > img.is-mobile-only { display: none; }

.hero__mark-mobile {
  display: none;
  position: absolute;
  bottom: 24px; left: 20px;
  width: 40px; height: 40px;
  opacity: 0.55;
  z-index: 2;
  pointer-events: none;
}

/* Slow Ken Burns "pull down" — used on the Trent Speech image (hero-08).
   Translates downward across the visible window while scale 1.3 keeps full coverage. */
@keyframes kenBurnsPullDown {
  0%    { transform: scale(1.3) translateY(0%); }
  12.5% { transform: scale(1.3) translateY(15%); }
  100%  { transform: scale(1.3) translateY(0%); }
}
.hero--a .hero__bg-stack img[data-kenburns="pull-down"] {
  animation: heroBgRotate 56s linear infinite, kenBurnsPullDown 56s ease-in-out infinite;
}

/* Ken Burns variations — each animates transform across the visible window
   (0–16% of the 56s loop), then drifts gently back to start during the
   invisible 84% so the next cycle has no jump. ease-in-out for natural motion. */
@keyframes kenBurnsZoomIn {
  0%   { transform: scale(1.00); }
  16%  { transform: scale(1.18); }
  100% { transform: scale(1.00); }
}
@keyframes kenBurnsZoomOut {
  0%   { transform: scale(1.18); }
  16%  { transform: scale(1.00); }
  100% { transform: scale(1.18); }
}
@keyframes kenBurnsPanLeft {
  0%   { transform: scale(1.10) translateX( 2.5%); }
  16%  { transform: scale(1.10) translateX(-2.5%); }
  100% { transform: scale(1.10) translateX( 2.5%); }
}
@keyframes kenBurnsPanRight {
  0%   { transform: scale(1.10) translateX(-2.5%); }
  16%  { transform: scale(1.10) translateX( 2.5%); }
  100% { transform: scale(1.10) translateX(-2.5%); }
}
@keyframes kenBurnsDriftUp {
  0%   { transform: scale(1.10) translateY( 2%); }
  16%  { transform: scale(1.10) translateY(-2%); }
  100% { transform: scale(1.10) translateY( 2%); }
}
@keyframes kenBurnsHero01 {
  /* Portrait source — keep elevated base scale (1.25), zoom further */
  0%   { transform: scale(1.25); }
  16%  { transform: scale(1.40); }
  100% { transform: scale(1.25); }
}

/* Mobile-only Ken Burns: subtle NE drift while the image is visible
   (first 50% of the 16s cycle), then continues unseen. The opacity
   keyframe holds the image at 0% for the back half, so the snap on
   loop is invisible. */
@keyframes kenBurnsMobileNE {
  0%   { transform: scale(1.10) translate(-2%, 2%); }
  100% { transform: scale(1.20) translate(2%, -2%); }
}

.hero--a .hero__bg-stack img[data-kenburns="zoom-in"]   { animation: heroBgRotate 56s linear infinite, kenBurnsZoomIn   56s ease-in-out infinite; }
.hero--a .hero__bg-stack img[data-kenburns="zoom-out"]  { animation: heroBgRotate 56s linear infinite, kenBurnsZoomOut  56s ease-in-out infinite; }
.hero--a .hero__bg-stack img[data-kenburns="pan-left"]  { animation: heroBgRotate 56s linear infinite, kenBurnsPanLeft  56s ease-in-out infinite; }
.hero--a .hero__bg-stack img[data-kenburns="pan-right"] { animation: heroBgRotate 56s linear infinite, kenBurnsPanRight 56s ease-in-out infinite; }
.hero--a .hero__bg-stack img[data-kenburns="drift-up"]  { animation: heroBgRotate 56s linear infinite, kenBurnsDriftUp  56s ease-in-out infinite; }
.hero--a .hero__bg-stack img[data-kenburns="hero-01"]   { animation: heroBgRotate 56s linear infinite, kenBurnsHero01   56s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .hero--a .hero__bg-stack img { animation: none !important; opacity: 0.15; }
  .livedot { animation: none !important; }
  .post-tile:hover img,
  .team-card:hover img,
  .card:hover .card__bar { transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
.hero--a .hero__inner { max-width: 1100px; }
.hero--a .hero__eb { color: var(--fg-muted); margin: 0 0 24px; }
.hero--a .hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 auto;
  background: var(--grad-strapline);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  display: inline-block;
  max-width: 980px;
  text-wrap: balance;
  padding-bottom: 0.06em;
}
.hero--a .hero__lede {
  margin: 28px auto 0;
  max-width: 720px;
  font-size: 18px; line-height: 1.55;
  color: var(--fg-muted);
}
.hero--a .hero__cta { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* Variant B — stat hero (sub-brand pages). Pillar image behind spotlight gradient. */
.hero--b {
  background-color: var(--wl-ink);
  text-align: center;
  isolation: isolate;
}
.hero--b::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(1) contrast(1.1);
  pointer-events: none;
  z-index: 0;
}
.hero--b::after {
  content: ""; position: absolute; inset: 0;
  background: var(--hero-overlay, none);
  pointer-events: none;
  z-index: 0;
}

.hero--b[data-accent="ai"] {
  --hero-bg: url('assets/photography/ai/ai-abstract.jpg');
  --hero-overlay: radial-gradient(60% 50% at 50% 0%, rgba(165,108,255,0.55) 0%, rgba(77,14,136,0.55) 40%, transparent 100%);
}
.hero--b[data-accent="growth"] {
  --hero-bg: url('assets/photography/growth/growth-open-office.jpg');
  --hero-overlay: radial-gradient(60% 50% at 50% 0%, rgba(176,107,223,0.50) 0%, rgba(77,14,136,0.55) 40%, transparent 100%);
}
.hero--b[data-accent="studio"] {
  --hero-bg: url('assets/photography/studio/studio-desk-wordpress.jpg');
  --hero-overlay: radial-gradient(60% 50% at 50% 0%, rgba(255,102,196,0.40) 0%, rgba(152,63,178,0.45) 40%, transparent 100%);
}
.hero--b[data-accent="fulfilment"] {
  --hero-bg: url('assets/photography/3pl/3pl-loading-bay.jpg');
  --hero-overlay: radial-gradient(60% 50% at 50% 0%, rgba(81,112,255,0.45) 0%, rgba(36,46,140,0.55) 40%, transparent 100%);
}

.hero--b .hero__inner { z-index: 1; }
.hero--b .hero__mark  { z-index: 0; }

.hero--b .hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 88px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0 auto;
  max-width: 980px;
  text-wrap: balance;
}
.hero--b .hero__title .strap-text {
  font-style: italic;
  background: var(--grad-strapline);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  font-weight: 700;
}
.hero--b .hero__lede {
  margin: 28px auto 0;
  max-width: 720px;
  font-size: 18px; line-height: 1.55;
  color: var(--fg-muted);
}
.hero--b .hero__cta { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* Variant C — editorial hero (about, blog) */
.hero--c { background: var(--wl-ink); text-align: left; padding-top: 96px; padding-bottom: 96px; }
.hero--c .hero__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: end; }
.hero--c .hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0;
  text-wrap: balance;
}
.hero--c .hero__title em { font-style: italic; color: var(--accent); font-weight: 700; }
.hero--c .hero__lede {
  font-size: 17px; line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

/* ============================================================================
   Mono eyebrow utility
   ============================================================================ */
.eb-mono { font-family: var(--font-mono); font-weight: 500; font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; }

/* ============================================================================
   Section heads
   ============================================================================ */
.section__head { display: flex; flex-direction: column; gap: 14px; max-width: 760px; margin-bottom: 56px; }
.section__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.6vw, 52px);
  letter-spacing: -0.028em; line-height: 1.04;
  margin: 0; text-wrap: balance;
}
.section__title em { font-style: italic; color: var(--accent); }
.strap-text {
  font-style: italic; font-weight: inherit;
  background: var(--grad-strapline);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  display: inline;
}
.section__lede { font-size: 17px; line-height: 1.55; color: var(--fg-muted); margin: 0; max-width: 700px; }

/* ============================================================================
   Cards
   ============================================================================ */
.cards { display: grid; gap: 18px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--2x2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: var(--wl-ink-3);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 200ms, background 200ms, transform 200ms;
  overflow: hidden;
}
.card:hover { border-color: rgba(255,255,255,0.28); background: #25202f; }

/* Pillar cards on the home page — strongest outline so the four arms read as peers */
.cards--2x2 .card {
  border: 1px solid rgba(255,255,255,0.18);
  padding: 36px;
}
.cards--2x2 .card:hover { border-color: var(--card-accent, rgba(255,255,255,0.40)); }
.cards--2x2 .card .card__h { font-size: 26px; }

/* Override the global a:hover violet — pillar cards should glow their
   own brand color, not the parent violet. Title shifts to the pillar
   accent on hover; body/meta stay readable. */
.card:hover .card__h { color: var(--card-accent, var(--wl-bone)); transition: color 180ms; }
.card:hover .card__p { color: var(--fg-muted); }
.card:hover .card__meta { color: var(--wl-bone); }
.card__bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--card-accent, var(--accent));
  transform: scaleX(0); transform-origin: 0 0;
  transition: transform 220ms cubic-bezier(0.2,0.8,0.2,1);
}
.card:hover .card__bar { transform: scaleX(1); }
.card__eb { color: var(--card-accent, var(--accent)); margin: 0; }
.card__h {
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.02em;
  margin: 0; text-wrap: balance;
}
.card__p { font-size: 15px; line-height: 1.55; color: var(--fg-muted); margin: 0; }
.card__meta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 12px var(--font-display); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--wl-bone);
}
.card__glyph { position: absolute; right: -30px; bottom: -30px; width: 200px; opacity: 0.07; pointer-events: none; }

.card[data-pillar="ai"]         { --card-accent: var(--brand-ai); }
.card[data-pillar="growth"]     { --card-accent: var(--brand-growth); }
.card[data-pillar="studio"]     { --card-accent: var(--brand-studio); }
.card[data-pillar="fulfilment"] { --card-accent: var(--brand-3pl); }

.card__lockup {
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--card-accent, var(--accent));
}
.card__lockup .ext { font-weight: 400; color: var(--card-accent, var(--accent)); }

.vp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.vp-grid--4 { grid-template-columns: repeat(2, 1fr); }
.vp-cell {
  background: var(--wl-ink-3); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 180ms;
}
.vp-cell:hover { background: #25202f; }
.vp-cell__icon { width: 28px; height: 28px; color: var(--accent); margin-bottom: 6px; }
.vp-cell__h { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.15; letter-spacing: -0.015em; margin: 0; text-wrap: balance; }
.vp-cell__p { font-size: 15px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

/* ============================================================================
   Stat blocks
   ============================================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: -0.028em; line-height: 1;
  background: var(--grad-strapline);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.stat__lab {
  font: 500 12px var(--font-mono);
  color: var(--fg-faint);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 10px;
  line-height: 1.4;
}

/* ============================================================================
   Process bar
   ============================================================================ */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--wl-ink-3);
}
.process__step {
  padding: 28px 24px; position: relative;
  border-right: 1px solid var(--border);
}
.process__step:last-child { border-right: none; }
.process__day { color: var(--accent); margin: 0 0 10px; }
.process__h { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.015em; margin: 0 0 8px; line-height: 1.2; }
.process__p { font-size: 13px; line-height: 1.5; color: var(--fg-muted); margin: 0; }

/* ============================================================================
   Pricing tiers
   ============================================================================ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tier {
  background: var(--wl-ink-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 200ms, background 200ms;
}
.tier:hover { border-color: var(--border-strong); }
.tier--feature { border-color: var(--accent); background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); }
.tier__name { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.015em; margin: 0; }
.tier__price { font-family: var(--font-display); font-weight: 700; font-size: 40px; letter-spacing: -0.028em; line-height: 1; margin: 0; }
.tier__price small { font: 500 12px var(--font-mono); color: var(--fg-faint); margin-left: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.tier__p { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin: 0; }
.tier__list { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.tier__list li { display: flex; gap: 10px; font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.tier__list li::before { content: "→"; color: var(--accent); flex: none; }
.tier__cta { margin-top: auto; }

/* ============================================================================
   Cases / receipts cards
   ============================================================================ */
.cases-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; }
.case {
  position: relative;
  background: var(--wl-ink-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  transition: border-color 180ms, background 180ms;
  overflow: hidden;
}
.case:hover { border-color: var(--border-strong); background: #25202f; }
.case--feature { border: none; min-height: 320px; background: var(--grad-spotlight); }
.case--feature[data-accent="ai"]         { background: radial-gradient(60% 50% at 30% 20%, rgba(165,108,255,0.40), rgba(77,14,136,0.30) 60%, var(--wl-ink-3) 100%); }
.case--feature[data-accent="growth"]     { background: radial-gradient(60% 50% at 30% 20%, rgba(176,107,223,0.40), rgba(77,14,136,0.30) 60%, var(--wl-ink-3) 100%); }
.case--feature[data-accent="studio"]     { background: radial-gradient(60% 50% at 30% 20%, rgba(255,102,196,0.35), rgba(152,63,178,0.30) 60%, var(--wl-ink-3) 100%); }
.case--feature[data-accent="fulfilment"] { background: radial-gradient(60% 50% at 30% 20%, rgba(81,112,255,0.40), rgba(36,46,140,0.30) 60%, var(--wl-ink-3) 100%); }
.case__glyph { position: absolute; right: -40px; bottom: -40px; width: 240px; opacity: 0.10; pointer-events: none; }
.case__eb { color: var(--accent); }
.case--feature .case__eb { color: rgba(255,255,255,0.85); }
.case__status {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: 10px; color: var(--wl-fern-2);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
}
.case__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wl-fern-2);
  box-shadow: 0 0 8px var(--wl-fern);
  animation: livePulse 2.2s ease-in-out infinite;
}
.case__h { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.1; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.case--feature .case__h { font-size: 30px; }
.case__p { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin: 0; }
.case--feature .case__p { color: rgba(242,242,237,0.82); }
.case__meta { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font: 600 12px var(--font-display); letter-spacing: 0.06em; text-transform: uppercase; }

/* ============================================================================
   FAQ accordion
   ============================================================================ */
.faqs { display: flex; flex-direction: column; }
.faq {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.faq:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; line-height: 1.35; letter-spacing: -0.01em;
  color: var(--wl-bone);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-mono); font-weight: 500; font-size: 22px;
  color: var(--accent); flex: none; line-height: 1;
}
.faq[open] summary::after { content: "−"; }
.faq__body { color: var(--fg-muted); font-size: 15px; line-height: 1.6; margin: 14px 0 0; max-width: 760px; }

/* ============================================================================
   CTA banner
   ============================================================================ */
.cta {
  position: relative; overflow: hidden;
  padding: 80px 40px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(60% 80% at 20% 0%, rgba(176,107,223,0.30) 0%, transparent 60%),
    radial-gradient(50% 80% at 80% 100%, rgba(81,112,255,0.30) 0%, transparent 60%),
    var(--wl-ink-3);
  border: 1px solid var(--border-strong);
  display: grid; grid-template-columns: 1.4fr auto; align-items: center; gap: 40px;
}
.cta__h {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.4vw, 48px);
  letter-spacing: -0.028em; line-height: 1.05;
  margin: 0 0 16px; max-width: 720px; text-wrap: balance;
}
.cta__p { font-size: 16px; line-height: 1.55; color: var(--fg-muted); max-width: 620px; margin: 0; }

/* ============================================================================
   Two-column (why us)
   ============================================================================ */
.twocol { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.twocol__media {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--wl-ink-3);
  filter: grayscale(1) contrast(1.05);
}
.twocol__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Contact page — founder row with name + LinkedIn icon + email button */
.contact-people { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.contact-person { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.contact-person__name { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--wl-bone); margin-right: 4px; }

/* Footer Founders column — inline icons next to each founder name */
.footer__founder {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 14px; color: var(--fg-muted); padding: 2px 0;
}
.footer__founder-name { color: var(--wl-bone); }
.footer__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  transition: border-color 180ms, color 180ms;
}
.footer__icon:hover { color: var(--wl-bone); border-color: var(--border-strong); }
.footer__icon svg { width: 11px; height: 11px; fill: currentColor; }

/* Touch-friendly footer icons on phones */
@media (max-width: 860px) {
  .footer__icon { width: 36px; height: 36px; }
  .footer__icon svg { width: 15px; height: 15px; }
}

/* Blog article author footer — contact strip under bio */
.article-foot__contact { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.article-foot__contact .bio-icon { width: 36px; height: 36px; }
.article-foot__contact .bio-icon svg { width: 14px; height: 14px; }

/* Founder bio contact strip — LinkedIn icon + email button */
.bio-contact {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; flex-wrap: wrap;
}
.bio-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--fg-muted);
  transition: border-color 180ms, color 180ms, background 180ms;
}
.bio-icon:hover { color: var(--wl-bone); border-color: var(--accent); background: rgba(255,255,255,0.04); }
.bio-icon svg { width: 18px; height: 18px; fill: currentColor; }
.btn--sm { padding: 11px 18px; font-size: 13px; }

/* Headshot variant — constrained to native resolution, square crop */
.twocol__media--headshot {
  max-width: 320px;
  aspect-ratio: 1 / 1;
  align-self: start;
}
.twocol__body p + p { margin-top: 16px; }
.twocol__body p { font-size: 17px; line-height: 1.6; color: var(--fg-muted); margin: 0; }
.twocol__body p strong { color: var(--wl-bone); font-weight: 600; }

/* ============================================================================
   Writing strip (3 essays on home) + blog list
   ============================================================================ */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post {
  background: var(--wl-ink-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 180ms, background 180ms;
}
.post:hover { border-color: var(--border-strong); background: #25202f; }
.post__meta { display: flex; justify-content: space-between; align-items: center; }
.post__date { color: var(--fg-faint); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.post__tag { font: 600 10px var(--font-display); letter-spacing: 0.10em; text-transform: uppercase; color: var(--accent); }
.post__h { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.post__p { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin: 0; }
.post__more { display: inline-flex; align-items: center; gap: 6px; font: 600 12px var(--font-display); letter-spacing: 0.06em; text-transform: uppercase; color: var(--wl-bone); }

/* Branded blog tiles — frosted-glass cards over photographic backgrounds */
.post-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.post-tile {
  position: relative;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--wl-ink-3);
  transition: transform 300ms cubic-bezier(0.22,1,0.36,1);
}
.post-tile:hover { transform: translateY(-3px); }
.post-tile__media { position: absolute; inset: 0; }
.post-tile__media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 50%;
  transition: transform 700ms cubic-bezier(0.22,1,0.36,1);
}
.post-tile:hover .post-tile__media img { transform: scale(1.05); }

/* Per-image focal-point overrides */
.post-tile__media img[data-focus="upper"]    { object-position: 50% 30%; transform: scale(1.12); transform-origin: center 30%; }
.post-tile__media img[data-focus="center-up"]{ object-position: 50% 40%; transform: scale(1.10); transform-origin: center 40%; }
.post-tile:hover .post-tile__media img[data-focus="upper"]    { transform: scale(1.17); }
.post-tile:hover .post-tile__media img[data-focus="center-up"]{ transform: scale(1.15); }
.post-tile__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,20,0.25) 0%, rgba(14,11,20,0) 25%, rgba(14,11,20,0) 45%, rgba(14,11,20,0.55) 100%);
  pointer-events: none;
}

.post-tile__signifier {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 8px;
  background: var(--tile-accent, var(--accent));
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  z-index: 2;
}
.post-tile__signifier-dot {
  width: 12px; height: 12px;
  border-radius: 3px;
  background: rgba(255,255,255,0.32);
  flex: none;
}
.post-tile__signifier-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.96);
}

.post-tile__body {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  padding: 24px 28px 24px 26px;
  border-radius: var(--r-md);
  background: rgba(14, 11, 20, 0.50);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 12px 32px rgba(0,0,0,0.30);
  z-index: 1;
}
.post-tile__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.02em;
  margin: 0;
  color: var(--wl-bone);
  padding-right: 76px;
  text-wrap: balance;
}
.post-tile__meta {
  display: flex; gap: 10px; align-items: center;
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(242,242,237,0.70);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.post-tile__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.40); }
.post-tile__avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  border: 1px solid rgba(255,255,255,0.25);
  flex: none;
  margin-right: 2px;
}

/* Glassy Woodlark mark in the corner of the body card */
.post-tile__mark {
  position: absolute;
  right: 18px; bottom: 18px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  backdrop-filter: blur(16px) saturate(200%);
  -webkit-backdrop-filter: blur(16px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 6px 20px rgba(0,0,0,0.30);
  display: flex; align-items: center; justify-content: center;
}
.post-tile__mark img {
  width: 28px; height: 28px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.45));
}

.post-tile[data-brand="ai"]         { --tile-accent: var(--brand-ai); }
.post-tile[data-brand="growth"]     { --tile-accent: var(--brand-growth); }
.post-tile[data-brand="studio"]     { --tile-accent: var(--brand-studio); }
.post-tile[data-brand="fulfilment"] { --tile-accent: var(--brand-3pl); }

.post-list { display: flex; flex-direction: column; }
.post-row {
  display: grid; grid-template-columns: 140px 1fr auto;
  gap: 28px; padding: 28px 0; align-items: baseline;
  border-top: 1px solid var(--border);
}
.post-list .post-row:last-child { border-bottom: 1px solid var(--border); }
.post-row__date { font-family: var(--font-mono); font-size: 12px; color: var(--fg-faint); letter-spacing: 0.06em; text-transform: uppercase; }
.post-row__title { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.015em; line-height: 1.2; color: var(--wl-bone); }
.post-row__title p { font-size: 14px; color: var(--fg-muted); margin: 6px 0 0; line-height: 1.55; font-weight: 400; letter-spacing: 0; }
.post-row__tag { font: 600 11px var(--font-display); color: var(--accent); letter-spacing: 0.10em; text-transform: uppercase; }

/* ============================================================================
   Contact page
   ============================================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-block { padding: 32px; background: var(--wl-ink-3); border: 1px solid var(--border); border-radius: var(--r-lg); }
.contact-block h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.015em; margin: 0 0 12px; }
.contact-block p { font-size: 15px; line-height: 1.55; color: var(--fg-muted); margin: 0 0 16px; }
.contact-block a { color: var(--accent); border-bottom: 1px solid currentColor; }

.form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font: 600 11px var(--font-display); letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--wl-ink); color: var(--wl-bone);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font: 400 15px var(--font-body);
  transition: border-color 180ms, background 180ms;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  background: #14101c;
}
.field textarea { min-height: 140px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 860px) {
  .field--row { grid-template-columns: 1fr; }
}

/* ============================================================================
   Footer
   ============================================================================ */
.footer {
  background: var(--wl-ink-2);
  border-top: 1px solid var(--border);
  padding: 72px 40px 32px;
  margin-top: 96px;
}
.footer__cols {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__brand svg { width: 28px; height: 28px; fill: var(--wl-bone); }
.footer__small { color: var(--fg-muted); font-size: 14px; max-width: 360px; line-height: 1.55; }
.footer__col .wl-eyebrow { display: block; margin-bottom: 14px; color: var(--fg-muted); }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a { font-size: 14px; color: var(--fg-muted); transition: color 180ms; }
.footer__col li a:hover, .footer__col li a.on { color: var(--wl-bone); }
.footer__strap {
  max-width: 1200px; margin: 32px auto 0;
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px;
}
.footer__strap-text {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.02em; line-height: 1.15;
  background: var(--grad-strapline);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  display: inline-block;
  padding: 0.08em 0.04em;
}
.footer__fine {
  max-width: 1200px; margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font: 400 12px var(--font-mono);
  color: var(--fg-faint);
  letter-spacing: 0.02em;
}
.footer__live { display: inline-flex; align-items: center; gap: 8px; color: var(--wl-fern-2); }
.livedot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--wl-fern-2);
  box-shadow: 0 0 8px var(--wl-fern);
  animation: livePulse 2.2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* ============================================================================
   From the team — 2x2 image-card grid (home)
   ============================================================================ */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.team-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  background: var(--wl-ink-3);
  border: 1px solid var(--border);
}
.team-card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 600ms ease;
}
.team-card:hover img { transform: scale(1.04); }
.team-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.team-card__cap {
  position: absolute; left: 20px; bottom: 20px; right: 60px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(14, 11, 20, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  z-index: 1;
}
.team-card__eb { font-family: var(--font-mono); font-weight: 500; font-size: 10px; color: var(--fg-faint); letter-spacing: 0.10em; text-transform: uppercase; margin: 0 0 6px; }
.team-card__h { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; margin: 0; color: var(--wl-bone); line-height: 1.3; }
.team-card__p { font-size: 13px; color: var(--fg-muted); margin: 6px 0 0; line-height: 1.45; }

/* ============================================================================
   Article / blog post page
   ============================================================================ */
.article-hero {
  position: relative;
  padding: 96px 40px 64px;
  background: var(--wl-ink);
  border-bottom: 1px solid var(--border);
}
.article-hero__inner { max-width: 820px; margin: 0 auto; }
.article-hero__meta {
  display: flex; gap: 18px; align-items: center;
  margin-bottom: 24px;
}
.article-hero__date { font-family: var(--font-mono); font-size: 12px; color: var(--fg-faint); letter-spacing: 0.06em; text-transform: uppercase; }
.article-hero__tag { font: 600 11px var(--font-display); color: var(--accent); letter-spacing: 0.10em; text-transform: uppercase; }
.article-hero__author { font-family: var(--font-mono); font-size: 12px; color: var(--wl-bone); letter-spacing: 0.04em; }
.article-hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 6.4vw, 72px);
  letter-spacing: -0.03em; line-height: 1.02;
  margin: 0 0 24px;
  text-wrap: balance;
}
.article-hero__lede {
  font-size: 19px; line-height: 1.55; color: var(--fg-muted);
  margin: 0;
}
.article-hero__image {
  max-width: 1200px; margin: 56px auto 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.article-hero__image img { width: 100%; height: auto; display: block; }

.article-body {
  max-width: 720px; margin: 0 auto;
  padding: 72px 40px 96px;
  font-size: 18px; line-height: 1.7;
  color: var(--fg-muted);
}
.article-body p { margin: 0 0 22px; }
.article-body p strong { color: var(--wl-bone); font-weight: 600; }
.article-body h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28px; letter-spacing: -0.02em; line-height: 1.15;
  color: var(--wl-bone);
  margin: 48px 0 18px;
  text-wrap: balance;
}
.article-body h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; letter-spacing: -0.015em; line-height: 1.25;
  color: var(--wl-bone);
  margin: 32px 0 12px;
}
.article-body ul { margin: 0 0 22px; padding-left: 24px; }
.article-body ul li { margin-bottom: 8px; }
.article-body ul li::marker { color: var(--accent); }
.article-body hr {
  border: none; height: 1px;
  background: var(--border);
  margin: 40px 0;
}
.article-body figure {
  margin: 32px 0;
}
.article-body figure img {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.article-body figure figcaption {
  margin-top: 12px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
}

/* Tappable figure (zoom to full-size) */
.article-body figure .figure-zoom {
  position: relative;
  display: block;
  border: 0;
  cursor: zoom-in;
}
.article-body figure .figure-zoom__hint {
  position: absolute;
  top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  background: rgba(14, 11, 20, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wl-bone);
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms;
}
.article-body figure .figure-zoom:hover .figure-zoom__hint { opacity: 1; }
@media (max-width: 860px) {
  .article-body figure .figure-zoom__hint { opacity: 1; } /* always show on mobile */
}
.article-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: var(--wl-ink-3);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; line-height: 1.4; letter-spacing: -0.015em;
  color: var(--wl-bone);
}
.article-body blockquote cite {
  display: block;
  margin-top: 14px;
  font: 500 13px var(--font-mono);
  color: var(--fg-muted);
  letter-spacing: 0.04em; font-style: normal;
}

.article-foot {
  max-width: 720px; margin: 0 auto;
  padding: 0 40px 96px;
  display: flex; flex-direction: column; gap: 28px;
}
.article-foot__line { height: 1px; background: var(--border); }
.article-foot__author {
  display: grid; grid-template-columns: 80px 1fr; gap: 20px; align-items: center;
}
.article-foot__author img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  border: 1px solid var(--border);
}
.article-foot__author h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.015em; margin: 0 0 4px; }
.article-foot__author p { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

.related {
  max-width: 1200px; margin: 0 auto;
  padding: 0 40px 96px;
}
.related__head { margin-bottom: 32px; }
.related__title { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.015em; margin: 0; color: var(--wl-bone); }

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 1080px) {
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .twocol { grid-template-columns: 1fr; gap: 32px; }
  .hero--c .hero__inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 860px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
  }
  .nav__primary { display: none; }
  .nav__util { display: none; }
  .nav__cta { display: none; }
  .nav__right { margin-left: auto; }
  .nav__hamburger { display: inline-flex; }
  .nav.is-open .nav__mobile { display: flex; }
  .nav.is-open .nav__hamburger svg path { stroke-dasharray: 20; }

  /* Hero slideshow on mobile: 4 slides rotate on phones (Trent Speech,
     Richard Mic, a working meeting, a quiet workspace). The 5 desktop
     <picture> slots are hidden. Each visible image gets a slow NE Ken
     Burns so the subject drifts up-and-right over the title during its
     visible window. */
  .hero--a .hero__bg-stack img {
    object-position: 50% 35% !important;
  }
  .hero--a .hero__bg-stack > picture { display: none !important; }
  .hero--a .hero__bg-stack > img.is-mobile-only { display: block; }
  .hero--a .hero__bg-stack > img:nth-child(6),
  .hero--a .hero__bg-stack > img:nth-child(7),
  .hero--a .hero__bg-stack > img:nth-child(8),
  .hero--a .hero__bg-stack > img:nth-child(9) {
    animation: heroBgRotateMobile 32s linear infinite,
               kenBurnsMobileNE   32s ease-in-out infinite !important;
  }
  .hero--a .hero__bg-stack > img:nth-child(6) { animation-delay:  0s,  0s !important; }
  .hero--a .hero__bg-stack > img:nth-child(7) { animation-delay:  8s,  8s !important; }
  .hero--a .hero__bg-stack > img:nth-child(8) { animation-delay: 16s, 16s !important; }
  .hero--a .hero__bg-stack > img:nth-child(9) { animation-delay: 24s, 24s !important; }

  /* Drop the pillar imagery behind sub-brand heroes on phones.
     The wide source crops awkwardly to a portrait viewport and each
     image is 400–650KB of bandwidth. The spotlight gradient alone
     carries the surface fine on mobile. */
  .hero--b[data-accent="ai"],
  .hero--b[data-accent="growth"],
  .hero--b[data-accent="studio"],
  .hero--b[data-accent="fulfilment"] {
    --hero-bg: none;
  }

  /* Make the home hero fill the viewport on phones — stops the next
     section peeking in at the bottom and looking unfinished. */
  .hero--a {
    min-height: 100svh;
    min-height: 100vh; /* fallback for browsers without svh */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Small Woodlark mark anchored bottom-left of the hero on mobile.
     The large desktop watermark (.hero__mark) is hidden — redundant
     here since we have the small corner mark. */
  .hero__mark-mobile { display: block; }
  .hero--a .hero__mark { display: none; }

  .hero { padding: 88px 20px 96px; }
  .hero__mark { width: 360px; height: 360px; right: -120px; top: 20px; }
  .cards--3, .cards--2x2, .vp-grid, .cases-grid, .tiers, .posts, .process, .contact-grid { grid-template-columns: 1fr; }
  .vp-grid--4 { grid-template-columns: 1fr; }
  .cases-grid { gap: 14px; }
  .process__step { border-right: none; border-bottom: 1px solid var(--border); }
  .process__step:last-child { border-bottom: none; }
  .cta { grid-template-columns: 1fr; padding: 40px 24px; gap: 24px; }
  .cta__h { font-size: clamp(28px, 7vw, 34px); margin-bottom: 12px; }
  .cta__p { font-size: 15px; }
  .footer { padding: 56px 20px 28px; }
  .footer__cols { grid-template-columns: 1fr; gap: 32px; }
  .post-row { grid-template-columns: 1fr; gap: 8px; }
  .post-tiles { grid-template-columns: 1fr; gap: 18px; }
  .post-tile { aspect-ratio: 4/5; }
  .post-tile__body {
    left: 12px; right: 12px; bottom: 12px;
    padding: 14px 16px 14px 16px;
    background: rgba(14, 11, 20, 0.38);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
  }
  .post-tile__h { font-size: 17px; padding-right: 52px; line-height: 1.18; }
  .post-tile__meta { margin-top: 8px; }
  .post-tile__avatar { width: 22px; height: 22px; }
  .post-tile__mark { width: 40px; height: 40px; right: 12px; bottom: 12px; }
  .post-tile__mark img { width: 20px; height: 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .article-hero { padding: 64px 20px 48px; }
  .article-body { padding: 56px 20px 72px; font-size: 17px; }
  .article-foot { padding: 0 20px 72px; }
  .article-foot__author { grid-template-columns: 64px 1fr; }
  .article-foot__author img { width: 64px; height: 64px; }
  .related { padding: 0 20px 72px; }

  /* Tighten section spacing on mobile — desktop's 96px top+bottom is
     ~27% of a phone viewport in pure whitespace per section. */
  .section { padding: 56px 0; }
  .section--tight { padding: 44px 0; }
  .section__head { margin-bottom: 36px; }

  /* Cap the 'Why us' founder portrait so it doesn't fill the full
     viewport on mobile. The 4:5 ratio at 375px wide = 469px tall —
     pushes the copy way down the page. .twocol__media--headshot
     keeps its own (smaller) cap defined elsewhere. */
  .twocol__media:not(.twocol__media--headshot) {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Tighten cards on mobile (covers all .card uses + the heavier 2x2
     pillar grid on the home page). Same content, ~25% less height
     per card. */
  .card { padding: 24px; }
  .cards--2x2 .card { padding: 24px; }
  .cards--2x2 .card .card__h { font-size: 22px; }
  .card__h { font-size: 21px; }
  .card__p { font-size: 14px; }

  /* Tighten pricing tiers — three tall cards stacked vertically on
     mobile was a long scroll. Same content, more compact. */
  .tier { padding: 22px 22px 24px; gap: 12px; }
  .tier__name { font-size: 18px; }
  .tier__price { font-size: 32px; }
  .tier__p { font-size: 13px; line-height: 1.5; }
  .tier__list { gap: 6px; }
  .tier__list li { font-size: 13px; line-height: 1.45; }

  /* Stats: 2×2 on mobile (inherited from 1080px breakpoint). Tighten
     the gap and vertical padding so the strip doesn't dominate the
     scroll. Labels go a touch smaller to keep them on one line. */
  .stats { gap: 20px 24px; padding: 36px 0; }
  .stat__lab { font-size: 11px; margin-top: 8px; }

  /* FAQ accordion: smaller summary, tighter padding, smaller +
     marker. Long question lines now wrap on ~3 lines instead of 4,
     and a 6-row FAQ section is ~25% shorter. */
  .faq { padding: 18px 0; }
  .faq summary { font-size: 16px; gap: 16px; }
  .faq summary::after { font-size: 20px; }
  .faq__body { font-size: 14px; margin-top: 10px; }

  /* Section headings: the desktop clamp floor of 36px feels chunky
     on a 375px viewport when every section opens with one. 30px
     is still display-weight (700, -0.028em, line-height 1.04) but
     wraps cleaner and trims ~2 lines off the average page. */
  .section__title { font-size: clamp(28px, 8vw, 34px); line-height: 1.08; }
  .section__lede { font-size: 15px; }

  /* Article hero + body: blog post titles were clamping to a 40px
     floor on phones, which forced 5-line wraps for the longer
     headlines. Tighten the floor, lede, and image margin. Body h2
     and its top margin also come down so the rhythm matches the
     17px body type. */
  .article-hero__title { font-size: clamp(28px, 9vw, 36px); line-height: 1.06; }
  .article-hero__lede { font-size: 16px; }
  .article-hero__meta { gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
  .article-hero__image { margin-top: 32px; }
  .article-body h2 { font-size: 22px; margin: 32px 0 14px; }
  .article-body h3 { font-size: 18px; margin: 24px 0 10px; }
  .article-body p { margin-bottom: 16px; }

  /* Sub-brand heroes (AI, Growth, Studio, Fulfilment, Hospitality):
     the desktop clamp floors at 48px which is too big for a phone.
     Tighten title, lede, and CTA gap. */
  .hero--b .hero__title { font-size: clamp(32px, 9.5vw, 44px); line-height: 1.04; }
  .hero--b .hero__lede { margin-top: 20px; font-size: 15px; }
  .hero--b .hero__cta { margin-top: 24px; }

  /* Editorial heroes (About, Blog): override the variant-specific
     96px vertical padding and tighten the title. */
  .hero--c { padding-top: 64px; padding-bottom: 56px; }
  .hero--c .hero__title { font-size: clamp(28px, 9vw, 36px); line-height: 1.05; }
  .hero--c .hero__lede { font-size: 15px; }

  /* Contact page: stacked contact-grid had a 56px gap and 32px block
     padding — the email block in particular ate most of the viewport
     width. Tighten padding, shrink gap, allow long emails to wrap. */
  .contact-grid { gap: 36px; }
  .contact-block { padding: 22px; }
  .contact-block h3 { font-size: 18px; }
  .contact-block a { word-break: break-word; overflow-wrap: anywhere; }

  /* Footer link touch targets: 14px text with a 10px gap gave each
     link a ~14px tap height — fine for a mouse, fiddly on a phone.
     Make text links display:block with light vertical padding so the
     tap target is ~28px. Exclude the round .footer__icon glyphs,
     whose inline-flex centering would otherwise be broken. */
  .footer__col ul { gap: 0; }
  .footer__col li a:not(.footer__icon) { display: block; padding: 6px 0; font-size: 15px; }
  .footer__col li.footer__founder { padding: 4px 0; }

  /* 'Why us' / about twocol body copy: 17px on phones was bigger
     than every other body class. 16px slots into the same rhythm
     as section ledes (15) and article body (17). */
  .twocol__body p { font-size: 16px; line-height: 1.55; }
  .twocol__body p + p { margin-top: 14px; }

  /* Home page Writing strip cards (.post): tighten padding and
     headline so the three stacked cards aren't a long scroll. */
  .post { padding: 22px; gap: 12px; }
  .post__h { font-size: 19px; }
  .post__p { font-size: 13.5px; }
}
