/* Shared nav + footer */
.nav-row {display:flex;align-items:center;justify-content:space-between;height:68px;}
.nav-brand {display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--ink);font-family:var(--display);font-weight:700;font-size:22px;letter-spacing:-0.02em;}
.nav-brand img {width:44px;height:44px;border-radius:10px;}
.nav-links {display:flex;align-items:center;gap:clamp(18px,2.5vw,32px);}
.nav-link {font-family:var(--sans);font-size:14px;color:var(--ink-soft);text-decoration:none;padding:6px 0;position:relative;transition:color .3s;}
.nav-link:hover {color:var(--ink);}
.nav-link[data-active="true"] {color:var(--ink);}
.nav-link[data-active="true"]::after {content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;background:var(--plum);border-radius:2px;}
.footer {padding-block:clamp(56px,7vw,100px);background:white;border-top:1px solid var(--line);}
.footer-grid {
  align-items: start;display:grid;grid-template-columns:1fr;gap:clamp(32px,4vw,64px);}
@media (min-width:800px) {.footer-grid{grid-template-columns:1.5fr 1fr 1fr 1fr;}}
.footer-brand { margin-top: 0; }
.footer-brand .display {
  margin-top: 0;font-size:30px;}
.footer-brand p {margin-top:14px;max-width:320px;color:var(--ink-soft);font-size:15px;line-height:1.55;}
.footer-col h4 {font-family:var(--sans);font-size:12px;letter-spacing:0.18em;text-transform:uppercase;color:var(--ink-muted);font-weight:500;margin:0 0 14px;}
.footer-col ul {list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px;}
.footer-col a {color:var(--ink-soft);text-decoration:none;font-size:15px;transition:color .3s;}
.footer-col a:hover {color:var(--plum);}
.footer-base {margin-top:clamp(48px,6vw,72px);padding-top:24px;border-top:1px solid var(--line);display:flex;flex-wrap:wrap;gap:16px 24px;justify-content:space-between;align-items:center;font-size:12px;color:var(--ink-muted);letter-spacing:0.06em;}
.footer-base a {color:var(--ink-muted);text-decoration:none;}
.footer-base a:hover {color:var(--ink);}
.shead {max-width:720px;}
.shead h2 {margin:14px 0 0;font-family:var(--display);font-weight:700;font-size:clamp(40px,5.6vw,80px);line-height:0.96;letter-spacing:-0.035em;color:var(--ink);}
.shead h2 em {font-family:var(--serif);font-style:italic;font-weight:400;color:var(--plum);}
.shead p {margin:20px 0 0;font-size:17px;line-height:1.6;color:var(--ink-soft);max-width:560px;}

/* Page hero */
.h-hero {
  position: relative;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(40px, 5vw, 80px);
  overflow: hidden;
}
.h-hero .blob {
  position: absolute;
  top: -120px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, var(--plum-haze), transparent 70%);
  filter: blur(50px); opacity: 0.5;
}
.h-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--plum-ink);
  margin: 24px 0 0;
  max-width: 12ch;
}
.h-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.h-hero .lead {
  margin: 32px 0 0;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
}

/* Featured case */
.feat-case {
  padding-block: clamp(60px, 7vw, 100px);
}
.feat-case-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--plum-ink);
  color: white;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 900px) {
  .feat-case-card { grid-template-columns: 1fr 1.1fr; }
}
.feat-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
@media (min-width: 900px) {
  .feat-photo { aspect-ratio: auto; min-height: 600px; }
}
.feat-photo img { width: 100%; height: 100%; object-fit: cover; }
.feat-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(21, 16, 42, .6) 100%);
}
.feat-badge {
  position: absolute;
  top: 28px; left: 28px;
  padding: 8px 14px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
}
.feat-badge .pulse {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.55); }
  70% { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.feat-content {
  padding: clamp(32px, 5vw, 64px);
  display: flex; flex-direction: column;
}
.feat-eyebrow { color: var(--plum-soft); }
.feat-title {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.feat-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum-soft);
}
.feat-body {
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.78);
  max-width: 520px;
}
.feat-body p + p { margin-top: 14px; }
.feat-body strong { color: white; font-weight: 500; }
.feat-stats {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .feat-stats { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.feat-stat {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 14px;
}
.feat-stat .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--plum-soft);
  letter-spacing: -0.025em;
}
.feat-stat .l {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.06em;
}
.feat-quote {
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.feat-quote .qt {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  color: white;
  letter-spacing: -0.01em;
}
.feat-quote .qt span { color: var(--plum-soft); }
.feat-quote .qa {
  margin-top: 18px;
  display: flex; gap: 12px; align-items: center;
}
.feat-quote .qa .av {
  width: 48px; height: 48px; border-radius: 999px;
  background-size: cover; background-position: center;
  box-shadow: 0 0 0 2px var(--plum-ink), 0 0 0 3px var(--plum-soft);
}
.feat-quote .qa .name { font-family: var(--display); font-weight: 500; font-size: 14px; color: white; }
.feat-quote .qa .role { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }

/* Stories grid */
.stories {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--plum-wash);
}
.stories-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .stories-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .stories-grid { grid-template-columns: 1fr 1fr 1fr; } }
.story-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: all .5s var(--ease-out);
  display: flex; flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.story-card:hover {
  transform: translateY(-6px);
  border-color: var(--plum-soft);
  box-shadow: var(--shadow-lg);
}
.story-card .sphoto {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.story-card .sphoto img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.story-card:hover .sphoto img { transform: scale(1.05); }
.story-card .sphoto::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(21,16,42,.4) 100%);
}
.story-card .sloc {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 4px 10px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum-deep);
  font-weight: 500;
  z-index: 1;
}
.story-card .sbody {
  padding: 28px;
  display: flex; flex-direction: column;
  flex: 1;
}
.story-card .stitle {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.story-card .stitle em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.story-card .sdesc {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}
.story-card .smini {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; gap: 18px;
}
.story-card .smini .it {
  font-size: 12px;
}
.story-card .smini .it .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--plum);
  letter-spacing: -0.02em;
}
.story-card .smini .it .l {
  margin-top: 2px;
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}

/* Press section */
.press {
  padding-block: clamp(64px, 8vw, 100px);
  border-top: 1px solid var(--line);
}
.press-grid {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 800px) { .press-grid { grid-template-columns: 1fr 1fr 1fr; } }
.press-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  transition: all .4s var(--ease-out);
}
.press-card:hover {
  border-color: var(--plum-soft);
  background: var(--plum-wash);
}
.press-card .src {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--plum-deep);
}
.press-card q {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
}
.press-card q::before, .press-card q::after { content: ""; }
.press-card .date {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}

/* CTA */
.bottom-cta {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--plum-void);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bottom-cta::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(closest-side, var(--plum-deep), transparent 65%);
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}
.bottom-cta h2 {
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.bottom-cta h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum-soft);
}
.bottom-cta p {
  position: relative;
  margin: 24px auto 0;
  max-width: 520px;
  color: rgba(255,255,255,.7);
  font-size: 17px;
}
.bottom-cta .ctas {
  position: relative;
  margin-top: 36px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.bottom-cta .btn-primary { background: white; color: var(--plum-ink); }
.bottom-cta .btn-primary:hover { background: var(--plum-soft); color: white; }
.bottom-cta .btn-ghost {
  border-color: rgba(255,255,255,.2);
  color: white;
}
.bottom-cta .btn-ghost:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.4);
  color: white;
}
