/* ARET — Design System v3 · Taiko-inspired clean */
:root {
  --navy:      #0E2E5B;
  --navy-2:    #0a2447;
  --navy-3:    #06122c;
  --gold:      #D3B973;
  --gold-2:    #b89e58;
  --white:     #ffffff;
  --gray-1:    #f7f7f8;
  --gray-2:    #efefef;
  --ink:       #111827;
  --muted:     #6b7280;
  --line:      rgba(14, 46, 91, 0.09);
  --line-dark: rgba(255,255,255,0.12);
  --maxw:      1200px;
  --pad:       clamp(20px, 4vw, 64px);
  --radius-pill: 99px;
  --radius-card: 12px;
  --radius-sm:   6px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Taiko-style dot grid */
  background-image: radial-gradient(circle, rgba(14,46,91,0.10) 1px, transparent 1px);
  background-size: 26px 26px;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; }
p { margin: 0 0 1em; }

/* ── Typography ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
}
h1,h2,h3,h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(42px, 6.4vw, 96px); }
h2 { font-size: clamp(32px, 4vw, 58px); }
h3 { font-size: clamp(22px, 2vw, 30px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }

.lede {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
}

/* ── Layout ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); position: relative; }
.section { padding: clamp(80px, 9vw, 140px) 0; position: relative; }
.section.tight { padding: clamp(56px, 6vw, 88px) 0; }

/* Section backgrounds */
.section.bg-white  { background: var(--white); }
.section.bg-gray   { background: var(--gray-1); background-image: none; }
.section.bg-navy   { background: var(--navy); color: rgba(255,255,255,0.9); }
.section.bg-navy h1,.section.bg-navy h2,.section.bg-navy h3,.section.bg-navy h4 { color: #fff; }
.section.bg-navy .lede { color: rgba(255,255,255,0.65); }
.section.bg-navy .eyebrow { color: var(--gold); }
.section.bg-navy .muted { color: rgba(255,255,255,0.55); }
.section.bg-dark-navy { background: var(--navy-3); color: rgba(255,255,255,0.9); }
.section.bg-dark-navy h1,.section.bg-dark-navy h2,.section.bg-dark-navy h3 { color: #fff; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, background .2s ease;
  cursor: pointer;
  white-space: nowrap;
  padding: 15px 28px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: #e0c988;
  box-shadow: 0 16px 40px -16px rgba(211,185,115,0.55);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.btn-outline:hover {
  border-color: rgba(14,46,91,0.24);
  background: rgba(14,46,91,0.04);
}
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); }
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-2); box-shadow: 0 16px 40px -16px rgba(14,46,91,0.4); }

.btn .arrow { width: 16px; height: 16px; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 24px -8px rgba(14,46,91,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 var(--pad);
  transition: height .3s ease;
}
.site-header.scrolled .header-inner { height: 64px; }

.brand-mark {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; letter-spacing: 0.12em;
  color: var(--navy);
  transition: opacity .2s ease;
}
.brand-mark:hover { opacity: 0.75; }
.brand-mark .logo-wrap { display: flex; align-items: center; }
.brand-mark img { height: 34px; width: auto; }
/* logo swap: always show navy version on light header */
.brand-mark .logo-white { display: none; }
.brand-mark .logo-navy  { display: block; }

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color .2s ease, background .2s ease;
  letter-spacing: 0.01em;
}
.nav a:hover { color: var(--navy); background: rgba(14,46,91,0.05); }
.nav a.active { color: var(--navy); font-weight: 600; background: rgba(14,46,91,0.06); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }

@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 8px 0 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px var(--pad);
  border-top: 1px solid var(--line);
  font-weight: 500;
  font-size: 15px;
  color: var(--navy);
}
.mobile-nav .btn { margin: 16px var(--pad) 0; justify-content: center; }

/* ── Hero ── */
.hero {
  background: var(--white);
  padding-top: clamp(140px, 18vw, 220px);
  padding-bottom: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero h1 { color: var(--ink); font-size: clamp(42px, 7.5vw, 108px); line-height: 0.96; }
.hero h1 em {
  font-style: normal;
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
}
.hero .lede { max-width: 52ch; margin-top: 24px; font-size: clamp(16px, 1.2vw, 19px); color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }

/* Decorative: radiating golden arcs */
.hero-rays {
  position: relative;
  width: 100%;
  margin-top: clamp(48px, 6vw, 80px);
  flex-shrink: 0;
}
.hero-rays svg {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}

/* Scatter marks */
.scatter-mark {
  position: absolute;
  color: var(--gold);
  font-size: 18px;
  font-weight: 300;
  opacity: 0.55;
  pointer-events: none;
  animation: floatMark 6s ease-in-out infinite alternate;
}
@keyframes floatMark {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-8px) scale(1.15); }
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--white);
  padding: clamp(120px, 14vw, 200px) 0 clamp(64px, 8vw, 112px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { margin-bottom: 20px; display: block; }
.page-hero h1 { color: var(--ink); max-width: 18ch; margin: 0 auto; }
.page-hero h1 em { font-style: italic; color: var(--navy); font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.page-hero .lede { max-width: 54ch; margin: 24px auto 0; }
.page-hero .hero-actions { margin-top: 36px; }
/* decorative letter */
.page-hero .deco-letter {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(360px, 55vw, 720px);
  color: rgba(14,46,91,0.04);
  right: -4%; top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

/* Breadcrumb */
.crumb {
  display: flex; gap: 10px; justify-content: center;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.crumb b { color: var(--gold-2); font-weight: 600; }

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-wrap.dark {
  background: transparent;
  border-color: rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  display: flex; align-items: center; gap: 52px;
  padding: 0 0 0 52px;
}
.marquee-wrap.dark .marquee-item { color: rgba(255,255,255,0.45); }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── Section header (centered) ── */
.sec-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.sec-header .eyebrow { margin-bottom: 18px; display: block; }
.sec-header h2 { color: var(--ink); }
.bg-navy .sec-header h2 { color: #fff; }
.sec-header p { color: var(--muted); margin-top: 18px; font-size: 17px; line-height: 1.65; }
.bg-navy .sec-header p { color: rgba(255,255,255,0.6); }

/* ── Stat row ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
}
.stat-cell {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line);
  position: relative;
  text-align: center;
}
.stat-cell:last-child { border-right: 0; }
.stat-cell .num {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-cell .num .suffix { color: var(--gold-2); }
.stat-cell .lbl {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: 0; }
  .stat-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ── Approach / feature cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feat-card {
  background: var(--gray-1);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -20px rgba(14,46,91,0.13);
}
.feat-card .card-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-2);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.feat-card .card-num::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.feat-card h3 { color: var(--navy); margin-bottom: 12px; font-size: clamp(20px, 1.6vw, 24px); }
.feat-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }
@media (max-width: 720px) { .cards-grid { grid-template-columns: 1fr; } }

/* ── Big numbers / results ── */
.results-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  overflow: visible;
  margin-top: clamp(48px, 6vw, 80px);
}
.result-cell {
  padding: clamp(32px, 4vw, 56px) clamp(16px, 2.5vw, 40px);
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  min-width: 0;
  overflow: hidden;
}
.result-cell:last-child { border-right: 0; }
.result-big {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.045em;
  line-height: 0.92;
}
.result-label {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 860px) {
  .results-row { grid-template-columns: 1fr; }
  .result-cell { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .result-cell:last-child { border-bottom: 0; }
}

/* ── Process steps ── */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: clamp(48px, 6vw, 72px);
}
.process-cell {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line);
  background: var(--white);
  transition: background .3s ease;
}
.process-cell:last-child { border-right: 0; }
.process-cell:hover { background: var(--gray-1); }
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.process-cell h4 { margin-top: 16px; color: var(--navy); font-size: 18px; }
.process-cell p { margin-top: 8px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 880px) { .process-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process-row { grid-template-columns: 1fr; } }

/* ── Pullquote ── */
.pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 38px);
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  max-width: 58ch;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: clamp(48px, 6vw, 80px) 0;
  letter-spacing: -0.01em;
}
.bg-navy .pullquote { color: #fff; }
.pullquote cite {
  display: block;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-top: 16px;
}
.bg-navy .pullquote cite { color: rgba(255,255,255,0.4); }

/* ── Split layout ── */
.split { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.split.equal { grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) { .split, .split.equal { grid-template-columns: 1fr; gap: 32px; } }

/* ── Clients strip ── */
.clients-section { padding: clamp(56px, 6vw, 80px) 0; }
.clients-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 500;
}

/* ── Final CTA ── */
.final-cta {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "A";
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(420px, 55vmin, 800px);
  color: rgba(211,185,115,0.06);
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  pointer-events: none;
}
.final-cta h2 { color: #fff; max-width: 24ch; margin: 0 auto 20px; }
.final-cta p { color: rgba(255,255,255,0.65); max-width: 52ch; margin: 0 auto 36px; font-size: 17px; line-height: 1.65; }
.final-cta .cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }

/* ── Modules grid ── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
}
.module-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -20px rgba(14,46,91,0.12);
}
.module-card .mod-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.module-card .mod-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.module-card .mod-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px; font-weight: 600; font-style: italic;
  color: rgba(211,185,115,0.14);
  line-height: 1;
  transition: color .4s ease;
}
.module-card:hover .mod-num { color: rgba(211,185,115,0.35); }
.module-card h3 { color: var(--navy); margin-bottom: 12px; max-width: 20ch; }
.module-card p { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0; }
@media (max-width: 720px) { .modules-grid { grid-template-columns: 1fr; } }

/* ── Tools list ── */
.tools-list { border-top: 1px solid var(--line); margin-top: clamp(40px, 5vw, 56px); }
.tool-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding-left .3s ease;
}
.tool-row:hover { padding-left: 12px; }
.tool-row h4 { color: var(--navy); font-size: 17px; }
.tool-row p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }
@media (max-width: 680px) { .tool-row { grid-template-columns: 1fr; gap: 6px; } }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px -20px rgba(14,46,91,0.12); }
.price-card .tier { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.price-card h3 { color: var(--navy); margin: 14px 0 16px; font-size: 22px; }
.price-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; flex: 1; }
.price-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: rgba(255,255,255,0.88);
  transform: scale(1.02);
  box-shadow: 0 20px 48px -20px rgba(14,46,91,0.35);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-card.featured h3 { color: #fff; }
.price-card.featured .tier { color: var(--gold); }
.price-card.featured p { color: rgba(255,255,255,0.65); }
.price-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* ── Case numbers ── */
.case-nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin: clamp(48px, 6vw, 72px) 0;
}
.case-num-cell {
  padding: clamp(36px, 4vw, 56px) clamp(16px, 2.5vw, 40px);
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  min-width: 0;
  overflow: hidden;
}
.case-num-cell:last-child { border-right: 0; }
.case-num-cell .n {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.045em;
  line-height: 0.92;
}
.case-num-cell .l { color: rgba(255,255,255,0.65); font-size: 14px; margin-top: 16px; }
@media (max-width: 860px) {
  .case-nums { grid-template-columns: 1fr; }
  .case-num-cell { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .case-num-cell:last-child { border-bottom: 0; }
}

/* ── Case meta ── */
.case-meta {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden;
  margin: 40px 0;
}
.meta-cell { padding: 24px; border-right: 1px solid var(--line); }
.meta-cell:last-child { border-right: 0; }
.meta-cell .k { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.meta-cell .v { font-size: 15px; font-weight: 600; color: var(--navy); }
@media (max-width: 840px) {
  .case-meta { grid-template-columns: 1fr 1fr; }
  .meta-cell { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ── Bio / Sobre ── */
.bio-grid { display: grid; grid-template-columns: 0.9fr 1.3fr; gap: clamp(40px, 5vw, 88px); align-items: start; }
.bio-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, rgba(14,46,91,0.05) 0, rgba(14,46,91,0.05) 10px, rgba(14,46,91,0.08) 10px, rgba(14,46,91,0.08) 20px);
  display: flex; align-items: flex-end; padding: 20px;
}
.bio-photo span {
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--white); padding: 6px 10px; color: var(--navy);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
}
.credentials { border-top: 1px solid var(--line); margin-top: 32px; padding-top: 8px; }
.cred { display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.cred:last-child { border-bottom: 0; }
.cred .k { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 600; padding-top: 2px; }
.cred .v { color: var(--navy); font-weight: 600; }
@media (max-width: 720px) {
  .bio-grid { grid-template-columns: 1fr; }
  .cred { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Contact form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 96px); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field input, .field textarea {
  font-family: inherit; font-size: 15px; padding: 14px 0;
  border: 0; border-bottom: 1px solid var(--line);
  background: transparent; color: var(--navy); outline: none;
  transition: border-color .2s ease; resize: vertical;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--gold); }
.field textarea { min-height: 96px; }
.field .err { font-size: 12px; color: #b3343a; min-height: 14px; margin-top: 4px; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.form-actions small { font-size: 12px; color: var(--muted); max-width: 40ch; line-height: 1.5; }
.form-success {
  grid-column: 1 / -1; background: var(--navy); color: rgba(255,255,255,0.88);
  padding: 32px; border-radius: var(--radius-card); border-left: 3px solid var(--gold);
}
.form-success h3 { color: #fff; margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,0.7); margin: 0; }
@media (max-width: 680px) { .form { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info .k { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.contact-info .v { font-size: 17px; font-weight: 500; color: var(--navy); }

/* ── Divider ── */
hr.divider { border: 0; border-top: 1px solid var(--line); margin: clamp(48px, 6vw, 80px) 0; }

/* ── Pill tag ── */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,46,91,0.06);
  color: var(--navy);
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.tag.gold { background: rgba(211,185,115,0.18); color: var(--gold-2); }
.bg-navy .tag { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

/* ── CountUp ── */
.countup { font-feature-settings: "tnum" 1, "lnum" 1; }

/* ── Footer ── */
.site-footer {
  background: var(--navy-3);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
.site-footer::after {
  content: "A";
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(360px, 50vw, 640px);
  color: rgba(211,185,115,0.04);
  bottom: -25%; right: -6%;
  line-height: 1; pointer-events: none;
}
.site-footer h4 { color: rgba(255,255,255,0.9); margin-bottom: 16px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; position: relative; z-index: 1; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.35);
  position: relative; z-index: 1;
}
@media (max-width: 680px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ── Reveal animation ── */
.reveal { transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.hidden { opacity: 0; transform: translateY(20px); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Page transition ── */
.page-fade { opacity: 1; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: rgba(14,46,91,0.15); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(14,46,91,0.3); }

/* ── Compare ── */
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line); border-radius: var(--radius-card); overflow: hidden;
  margin: clamp(40px, 5vw, 64px) 0;
}
.compare-side { padding: clamp(36px, 4vw, 60px); background: var(--gray-1); }
.compare-side.alt { background: var(--navy); }
.compare-pct { font-size: clamp(80px, 13vw, 180px); font-weight: 700; letter-spacing: -0.05em; line-height: 0.9; color: var(--muted); }
.compare-side.alt .compare-pct { color: var(--gold); }
.compare-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-top: 14px; }
.compare-side.alt .compare-label { color: rgba(255,255,255,0.5); }
.compare-desc { margin-top: 20px; font-size: 15px; line-height: 1.6; color: var(--ink); max-width: 36ch; }
.compare-side.alt .compare-desc { color: rgba(255,255,255,0.75); }
@media (max-width: 680px) { .compare { grid-template-columns: 1fr; } }

/* ── Hl gold ── */
.hl {
  background: linear-gradient(180deg, transparent 58%, rgba(211,185,115,0.3) 58%);
  padding: 0 2px;
}
