/* ============================================================
   TURNKEY SERVICES — v4
   Modern services firm. Not a holding company.
   Brand-locked: black/grayscale/silver per official brand guide.
   Single font: Plus Jakarta Sans.
   ============================================================ */

:root {
  /* Brand-guide palette — exact hex from services - brand guide.png */
  --c-000:  #080808;
  --c-100:  #1A1A1A;
  --c-200:  #2D2D2D;
  --c-300:  #5A5A5A;
  --c-400:  #A1A1A1;
  --c-500:  #EDEDED;
  --c-600:  #FFFFFF;

  --bg:        var(--c-000);
  --bg-2:      var(--c-100);
  --bg-3:      var(--c-200);
  --surface:   rgba(255, 255, 255, 0.02);
  --surface-2: rgba(255, 255, 255, 0.04);
  --ink:       var(--c-600);
  --ink-soft:  rgba(255, 255, 255, 0.78);
  --muted:     rgba(255, 255, 255, 0.55);
  --muted-2:   rgba(255, 255, 255, 0.32);
  --rule:      rgba(255, 255, 255, 0.08);
  --rule-soft: rgba(255, 255, 255, 0.04);

  /* Silver gradient — drawn from K-arm in the brand guide */
  --silver:        linear-gradient(135deg, #F4F1E8 0%, #C9C3B4 25%, #7A766D 55%, #B5AFA2 78%, #EFEAE0 100%);
  --silver-line:   linear-gradient(90deg, transparent 0%, rgba(244,241,232,0.6) 50%, transparent 100%);
  --silver-edge:   linear-gradient(180deg, rgba(244,241,232,0.5), rgba(122,118,109,0.05));

  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --maxw:    1440px;
  --content: 1240px;
  --gutter:  clamp(24px, 4vw, 80px);
  --ease:    cubic-bezier(0.7, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 600px at 80% -200px, rgba(244, 241, 232, 0.04), transparent 60%),
    radial-gradient(900px 480px at -80px 600px, rgba(244, 241, 232, 0.03), transparent 60%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
::selection { background: #fff; color: var(--c-000); }

/* ── grain ── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  opacity: 0.32;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ── silver text helper ── */
.silver-text {
  background: var(--silver);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: silverShift 14s ease-in-out infinite alternate;
}
@keyframes silverShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  background: rgba(8, 8, 8, 0.65);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--rule);
  background: rgba(8, 8, 8, 0.92);
  padding-top: 14px; padding-bottom: 14px;
}

.brand {
  display: flex; align-items: center; gap: 14px;
  transition: opacity 0.3s;
}
.brand:hover { opacity: 0.82; }
.brand-mark { width: 42px; height: auto; }
.brand-text {
  display: flex; flex-direction: column;
  line-height: 1;
  letter-spacing: 0.04em;
}
.brand-text .t1 {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.18em;
}
.brand-text .t2 {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.32em;
  margin-top: 5px;
  text-transform: uppercase;
}
.nav.scrolled .brand-mark { width: 36px; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
  background: var(--surface-2);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--rule);
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 9px 18px;
  border-radius: 999px;
  transition: color 0.3s, background 0.3s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--c-000); background: var(--ink); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--silver);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.nav-cta:hover { color: var(--c-000); border-color: transparent; transform: translateY(-1px); }
.nav-cta:hover::before { opacity: 1; }
.nav-cta .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-500);
  box-shadow: 0 0 0 3px rgba(237,237,237,0.18);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(237,237,237,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(237,237,237,0.06); }
}

@media (max-width: 920px) { .nav-links { display: none; } }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap   { max-width: var(--maxw);    margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.narrow { max-width: var(--content); margin: 0 auto; padding: 0 var(--gutter); position: relative; z-index: 2; }
.section { padding: clamp(100px, 12vw, 180px) 0; position: relative; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 9px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--surface);
}
.kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--silver);
}

/* ============================================================
   HERO — center-anchored monogram + tagline
   ============================================================ */
.hero {
  min-height: 96vh;
  padding-top: clamp(140px, 16vw, 200px);
  padding-bottom: clamp(60px, 7vw, 100px);
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 70% at 50% 50%, rgba(244,241,232,0.08) 0%, transparent 70%);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.hero-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px;
}
.hero-meta-right {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: right;
  display: flex; flex-direction: column; gap: 8px;
}
.hero-meta-right span:first-child { color: var(--ink); }

.hero-mark {
  display: flex; align-items: center; justify-content: center;
  margin-top: clamp(50px, 7vw, 90px);
}
.hero-mark svg {
  width: clamp(220px, 28vw, 460px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(244,241,232,0.06));
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(48px, 8.4vw, 144px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin: clamp(40px, 5vw, 64px) 0 0;
  text-align: center;
}
.hero h1 .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}
.hero h1 .silver-text { font-weight: 700; }

.hero-lede {
  max-width: 680px;
  margin: clamp(32px, 4vw, 56px) auto 0;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: center;
}
.hero-lede strong { font-weight: 700; color: var(--ink); }

.hero-cta-row {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: clamp(36px, 4.5vw, 64px);
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--silver);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
.btn-primary { background: var(--ink); color: var(--c-000); border-color: var(--ink); }
.btn-primary:hover { transform: translateY(-2px); color: var(--c-000); border-color: transparent; }
.btn-primary:hover::before { opacity: 1; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--c-000); border-color: var(--ink); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.4s; }
.btn:hover .arrow { transform: translateX(6px); }

.hero-meta-strip {
  display: flex; justify-content: center; gap: clamp(20px, 4vw, 60px);
  margin-top: clamp(48px, 6vw, 90px);
  padding-top: clamp(32px, 4vw, 52px);
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.hero-meta-strip .pin {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta-strip .pin::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-500);
  opacity: 0.7;
}

@media (max-width: 720px) {
  .hero-meta-right { text-align: left; }
  .hero-top { flex-direction: column; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.ribbon-section {
  padding: clamp(36px, 4.5vw, 56px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  position: relative;
  background: var(--bg-2);
}
.marquee {
  display: flex; gap: 56px;
  white-space: nowrap;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 100px);
  letter-spacing: -0.04em;
  line-height: 1;
  animation: marquee 38s linear infinite;
}
.marquee .glyph {
  display: inline-flex; align-items: center; gap: 56px;
  background: var(--silver);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: silverShift 14s ease-in-out infinite alternate;
}
.marquee .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
}
.marquee em { font-style: italic; font-weight: 300; color: var(--muted); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CAPABILITIES (6 PILLARS BENTO)
   ============================================================ */
.capabilities { padding: clamp(100px, 13vw, 180px) 0; }
.cap-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 100px);
}
.cap-head h2 {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-top: 24px;
  max-width: 14ch;
}
.cap-head h2 em { font-style: italic; font-weight: 300; color: var(--muted); }
.cap-head .cap-lede {
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.cap-tile {
  background: var(--bg);
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
  min-height: 320px;
}
.cap-tile::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.cap-tile:hover { background: var(--bg-2); }
.cap-tile:hover::before { transform: scaleX(1); }

.cap-tile .ic {
  width: 44px; height: 44px;
  color: var(--ink);
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center;
}
.cap-tile .num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.cap-tile h3 {
  font-weight: 700;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cap-tile p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 1000px) {
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .cap-head { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cap-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES (three service tracks as tiles)
   ============================================================ */
.services-sec {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.services-sec::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--silver-line);
  opacity: 0.45;
}

.svc-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px;
  margin-bottom: clamp(60px, 7vw, 100px);
}
.svc-head h2 {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-top: 24px;
  max-width: 16ch;
}
.svc-head h2 em { font-style: italic; font-weight: 300; color: var(--muted); }
.svc-head .svc-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: right;
  white-space: nowrap;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
}
.svc-tile {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: clamp(36px, 4vw, 52px);
  display: flex; flex-direction: column;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s, transform 0.4s;
}
.svc-tile::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.svc-tile:hover {
  background: var(--bg-3);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.svc-tile:hover::after { transform: scaleX(1); }

.svc-tile .svc-num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.svc-tile .svc-name {
  margin-top: 28px;
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1;
  letter-spacing: -0.025em;
}
.svc-tile .svc-name .label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}
.svc-tile .svc-body {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.svc-tile .svc-list {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.svc-tile .svc-list span {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.svc-tile .svc-list span::before {
  content: ""; width: 14px; height: 1px; background: var(--c-300);
  flex-shrink: 0;
}
.svc-tile .svc-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
}
.svc-tile .svc-footer .visit-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.svc-tile:hover .svc-footer .visit-link { color: var(--ink); }
.svc-tile .svc-footer .arrow-circle {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.svc-tile .svc-footer .arrow-circle::before {
  content: ""; position: absolute; inset: 0;
  background: var(--silver);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.svc-tile:hover .svc-footer .arrow-circle { border-color: transparent; color: var(--c-000); }
.svc-tile:hover .svc-footer .arrow-circle::before { opacity: 1; }
.svc-tile .svc-footer .arrow-circle svg { width: 14px; height: 14px; transition: transform 0.4s; }
.svc-tile:hover .svc-footer .arrow-circle svg { transform: translate(2px, -2px); }

@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-head { flex-direction: column; align-items: flex-start; }
  .svc-head .svc-tag { text-align: left; }
}

/* ============================================================
   PROCESS (4 steps)
   ============================================================ */
.process { padding: clamp(100px, 13vw, 180px) 0; }
.process-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 100px);
}
.process-head h2 {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-top: 24px;
  max-width: 14ch;
}
.process-head h2 em { font-style: italic; font-weight: 300; color: var(--muted); }
.process-head p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 520px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.proc-step {
  padding: clamp(36px, 4vw, 56px) clamp(20px, 2.5vw, 36px) clamp(36px, 4vw, 56px) 0;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column;
  position: relative;
  transition: background 0.4s;
}
.proc-step:last-child { border-right: 0; }
.proc-step::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--silver);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.proc-step:hover::before { transform: scaleX(1); }
.proc-step:hover { background: var(--surface); }

.proc-step .step-num {
  font-weight: 700;
  font-size: clamp(48px, 5vw, 80px);
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--silver);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 32px;
}
.proc-step h3 {
  font-weight: 700;
  font-size: clamp(22px, 1.85vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.proc-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (max-width: 1000px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .proc-step:nth-child(2) { border-right: 0; }
  .proc-step { border-bottom: 1px solid var(--rule); }
  .process-head { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .process-grid { grid-template-columns: 1fr; }
  .proc-step { border-right: 0; padding-right: 0; }
}

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 14vw, 200px) 0;
}
.manifesto::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--silver-line);
}
.manifesto-inner { max-width: 1080px; margin: 0 auto; text-align: center; padding: 0 var(--gutter); position: relative; z-index: 2; }
.manifesto blockquote {
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 60px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.manifesto blockquote em { font-style: italic; font-weight: 300; color: var(--muted); }
.manifesto blockquote .silver-text { font-weight: 600; }
.manifesto-mark {
  display: flex; justify-content: center;
  margin-bottom: 48px;
  opacity: 0.85;
}
.manifesto-mark svg { width: 64px; height: auto; }
.manifesto .source {
  display: block;
  margin-top: 48px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-style: normal;
}

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: clamp(96px, 12vw, 160px) 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
.cta h2 {
  font-weight: 700;
  font-size: clamp(40px, 6vw, 100px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}
.cta h2 em { font-style: italic; font-weight: 300; color: var(--muted); }
.cta-actions { display: flex; flex-direction: column; gap: 14px; }
.btn-block {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px;
  border-radius: 6px;
  border: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  width: 100%;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.btn-block::before {
  content: ""; position: absolute; inset: 0;
  background: var(--silver);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
.btn-block.primary { background: var(--ink); color: var(--c-000); border-color: var(--ink); }
.btn-block.primary:hover { transform: translateY(-2px); color: var(--c-000); border-color: transparent; }
.btn-block.primary:hover::before { opacity: 1; }
.btn-block.ghost:hover { background: var(--ink); color: var(--c-000); border-color: var(--ink); transform: translateY(-2px); }
.btn-block .arrow { transition: transform 0.4s; }
.btn-block:hover .arrow { transform: translateX(8px); }

@media (max-width: 800px) { .cta-inner { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  padding: clamp(80px, 9vw, 140px) 0 36px;
  position: relative;
}
footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: var(--silver-line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(60px, 7vw, 100px);
  border-bottom: 1px solid var(--rule);
}
.footer-brand p {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 22px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 60px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ============================================================
   PAGE HERO (about/services/contact)
   ============================================================ */
.page-hero {
  padding-top: clamp(160px, 18vw, 240px);
  padding-bottom: clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-weight: 700;
  font-size: clamp(48px, 8vw, 144px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  max-width: 18ch;
  margin: 28px 0 0;
}
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--muted); }
.page-hero-lede {
  margin-top: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.page-hero-lede p {
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
}
.page-hero-lede .meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: right;
  display: flex; flex-direction: column; gap: 8px;
}
.page-hero-lede .meta span:first-child { color: var(--ink); }
@media (max-width: 720px) {
  .page-hero-lede { grid-template-columns: 1fr; gap: 28px; }
  .page-hero-lede .meta { text-align: left; }
}

/* ── Contact cards ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(60px, 8vw, 100px);
}
.contact-card {
  border: 1px solid var(--rule);
  background: var(--bg-2);
  padding: clamp(36px, 4vw, 48px);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.contact-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--silver-line);
  opacity: 0;
  transition: opacity 0.4s;
}
.contact-card:hover { background: var(--bg-3); border-color: rgba(255,255,255,0.18); transform: translateY(-3px); }
.contact-card:hover::before { opacity: 1; }
.contact-card h3 {
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.contact-card p { color: var(--ink-soft); line-height: 1.65; margin-bottom: 28px; }
.contact-card .channel {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 10px;
}
.contact-card .value {
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.contact-card .value:hover { text-decoration: underline; }
.contact-card .pill {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.contact-card .pill::before {
  content: ""; position: absolute; inset: 0;
  background: var(--silver);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.contact-card .pill:hover { color: var(--c-000); border-color: transparent; transform: translateY(-1px); }
.contact-card .pill:hover::before { opacity: 1; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── About principles list ── */
.principles-list {
  margin-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--rule);
}
.principle-row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: clamp(20px, 3vw, 60px);
  align-items: start;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding-left 0.5s var(--ease);
}
.principle-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--silver);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s var(--ease);
}
.principle-row:hover { padding-left: 16px; }
.principle-row:hover::before { transform: scaleY(1); }
.principle-row .pr-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-top: 12px;
}
.principle-row h3 {
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.principle-row h3 em { font-style: italic; font-weight: 300; color: var(--muted); }
.principle-row p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 520px;
}
@media (max-width: 900px) {
  .principle-row { grid-template-columns: 70px 1fr; }
  .principle-row p { grid-column: 2; }
}

/* ============================================================
   FADES
   ============================================================ */
.fade { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.fade.in { opacity: 1; transform: translateY(0); }
.fade.d1 { transition-delay: 0.08s; }
.fade.d2 { transition-delay: 0.16s; }
.fade.d3 { transition-delay: 0.24s; }
.fade.d4 { transition-delay: 0.32s; }
.fade.d5 { transition-delay: 0.40s; }
.fade.d6 { transition-delay: 0.48s; }
