/* ============================================================
   Re8 — Website styles
   Design system mirrors the Claude Design (direction-a) mockups.
   Fonts: Source Serif 4 (display) + Inter (body) + monospace (labels)
   ============================================================ */

:root {
  --bg: #FBF8F3;
  --bg-alt: #F5F0E8;
  --bg-deep: #1F1A14;
  --dark: #1A1A1A;
  --navy: #1A2B3C;

  --ink: #1A1410;
  --ink-soft: #5C5249;
  --ink-mute: #8A8076;

  --copper: #B87333;
  --copper-deep: #8B5524;
  --copper-soft: #E8D4BC;
  --ok: #3F6B3F;

  --rule: rgba(26, 20, 16, 0.10);
  --rule-soft: rgba(26, 20, 16, 0.06);

  --serif: "Source Serif 4", Georgia, serif;
  --sans: Inter, -apple-system, system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1320px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: 40px; padding-right: 40px; }

/* ---- Shared type helpers ---- */
.label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}
.label-mute { color: var(--ink-mute); letter-spacing: 0.12em; }

.serif { font-family: var(--serif); font-weight: 400; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; cursor: pointer; }
.nav-logo img { height: 52px; width: auto; display: block; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--copper);
}

/* Hamburger (mobile only) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 24px;
  background: var(--ink);
}

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: none;
  flex-direction: column;
  padding: 28px 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-top { display: flex; justify-content: flex-end; }
.mobile-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  width: 44px;
  height: 44px;
}
.mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-links a {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  text-decoration: none;
  text-align: center;
}
.mobile-links a.active { color: var(--copper); }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
section { position: relative; }
.sec { padding: 80px 0; }
.sec-pad-lg { padding: 90px 0; }
.sec-pad-sm { padding: 72px 0; }
.bordered-b { border-bottom: 1px solid var(--rule); }
.bg-alt { background: var(--bg-alt); }
.bg-deep { background: var(--bg-deep); }

/* ============================================================
   HERO
   ============================================================ */
.hero-cream { padding: 80px 0 90px; border-bottom: 1px solid var(--rule); }
.hero-cream .label { margin-bottom: 24px; display: block; }
.hero-cream h1 {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1.05;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 760px;
  text-wrap: balance;
}
.hero-cream h1 em { color: var(--copper); font-style: normal; }
.hero-cream p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 28px;
  max-width: 560px;
}

.hero-dark {
  background: var(--dark);
  padding: 80px 0 72px;
  border-bottom: 1px solid #2E2E2E;
}
.hero-dark .label { margin-bottom: 20px; display: block; }
.hero-dark h1 {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1.04;
  color: #F5EFE7;
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 860px;
  text-wrap: balance;
}
.hero-dark p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 239, 231, 0.72);
  margin-top: 24px;
  max-width: 600px;
}
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s, opacity 0.15s;
  white-space: nowrap;
}
.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-deep); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-ghost-light {
  background: transparent;
  color: #F5EFE7;
  border: 1px solid rgba(245, 239, 231, 0.35);
  font-weight: 500;
}
.btn-ghost-light:hover { background: rgba(245, 239, 231, 0.08); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
  font-weight: 600;
}
.btn-block { width: 100%; text-align: center; }

/* ============================================================
   HOME — route cards
   ============================================================ */
.route-cards { border-bottom: 1px solid var(--rule); background: var(--bg); }
.route-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.route-card {
  min-height: 360px;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 48px 44px;
  text-align: left;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  font-family: var(--sans);
  transition: background 0.15s;
}
.route-card .counter {
  position: absolute;
  top: 36px;
  right: 40px;
  font-family: var(--serif);
  font-size: 64px;
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}
.route-card .rc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 12px;
}
.route-card .rc-head {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 12px;
}
.route-card .rc-body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
  opacity: 0.88;
  max-width: 320px;
}

/* ============================================================
   SECTION HEADERS (split + simple)
   ============================================================ */
.split-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: flex-start;
}
.split-head h2,
.sec-h2 {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.sec-h2-sm {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 48px;
}
.sec-label-block { margin-bottom: 14px; display: block; }

/* ============================================================
   CARD GRIDS (categories / what we move)
   ============================================================ */
.cardgrid {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.cardgrid-4 { grid-template-columns: repeat(4, 1fr); }
.cardgrid-3 { grid-template-columns: repeat(3, 1fr); border: none; }
.card {
  background: var(--bg);
  padding: 36px 32px;
}
.card.compact { padding: 32px 28px; }
.card .card-icon { display: block; margin-bottom: 18px; }
.card .card-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}
.card.compact .card-title { font-size: 20px; margin-bottom: 12px; }
.card .card-body {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.55;
}
.card.compact .card-body { margin-top: 0; }

/* ============================================================
   STATS + PILLARS (home about)
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-bottom: 48px;
}
.stat {
  background: var(--bg);
  padding: 36px 32px;
}
.stat .stat-n {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--copper);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .stat-l {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.5;
}

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar { border-top: 2px solid var(--copper); padding-top: 24px; }
.pillar h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 12px;
}
.pillar p { font-family: var(--sans); font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* home about logo column */
.about-logo { width: 100%; max-width: 200px; height: auto; mix-blend-mode: multiply; display: block; }

/* ============================================================
   CHOOSE YOUR PATH (dark strip on home)
   ============================================================ */
.path-strip { padding: 48px 0; background: var(--bg-deep); color: var(--bg); }
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.path-card {
  background: var(--bg-deep);
  border: none;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  padding: 36px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.15s;
}
.path-card:hover { background: rgba(255, 255, 255, 0.06); }
.path-card .pc-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
}
.path-card .pc-head {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.path-card .pc-body {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(245, 239, 231, 0.7);
}

/* ============================================================
   STEP GRIDS (process)
   ============================================================ */
.step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--rule);
}
.step {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step:nth-child(odd) { background: var(--bg); }
.step:nth-child(even) { background: var(--bg-alt); }
.step .step-n { font-family: var(--mono); font-size: 28px; color: var(--copper); line-height: 1; }
.step .step-t {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.25;
}
.step .step-d { font-family: var(--sans); font-size: 13px; color: var(--ink-soft); line-height: 1.55; }

/* 4-up numbered steps (buy how it works) */
.numstep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.numstep { background: var(--bg); padding: 36px 28px; }
.numstep .ns-n { font-family: var(--mono); font-size: 11px; color: var(--copper); letter-spacing: 0.06em; }
.numstep .ns-t {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin-top: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.numstep .ns-d { font-family: var(--sans); font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; line-height: 1.55; }

/* ============================================================
   CTA BANDS
   ============================================================ */
.cta-band { padding: 72px 0; background: var(--ink); }
.cta-band-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--bg);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.cta-band p {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(245, 239, 231, 0.65);
  margin-top: 10px;
  max-width: 520px;
  line-height: 1.55;
}
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* compact cta (buy "get on the list") */
.cta-compact { padding: 64px 0; background: var(--bg-deep); color: var(--bg); }
.cta-compact h2 { font-family: var(--serif); font-size: 32px; color: var(--bg); font-weight: 400; letter-spacing: -0.01em; margin: 0; }
.cta-compact .label { margin-bottom: 14px; display: block; }

/* ============================================================
   ABOUT page
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-operate {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.beliefs { margin-top: 32px; display: grid; gap: 20px; }
.belief { display: grid; grid-template-columns: 32px 1fr; gap: 16px; }
.belief .marker { width: 8px; height: 8px; background: var(--copper); margin-top: 8px; }
.belief .b-t { font-family: var(--sans); font-size: 15px; color: var(--ink); font-weight: 600; }
.belief .b-d { font-family: var(--sans); font-size: 14px; color: var(--ink-soft); margin-top: 4px; line-height: 1.55; }
.about-h2 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 400;
  margin: 14px 0 0;
  letter-spacing: -0.01em;
}

.location-card { background: var(--bg); border: 1px solid var(--rule); padding: 40px 36px; }
.location-card .loc-place {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--ink);
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.location-card .loc-lines {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-soft);
  display: grid;
  gap: 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.location-card .loc-contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.operate-h2 {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 400;
  margin: 14px 0 0;
  letter-spacing: -0.01em;
}
.operate-p { font-family: var(--sans); font-size: 15px; color: var(--ink-soft); margin-top: 18px; line-height: 1.6; max-width: 380px; }

/* Image placeholder (About — Leiden photo to be added) */
.photo-slot {
  width: 100%;
  height: 400px;
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--rule-soft);
  overflow: hidden;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 13px, rgba(0,0,0,0.05) 13px, rgba(0,0,0,0.05) 14px
  );
}
.photo-slot .ps-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--copper);
  background: var(--bg-alt);
  padding: 4px 8px;
  border: 1px solid rgba(184, 115, 51, 0.2);
}
.photo-slot-empty {
  background: none;
  background-image: none;
  border: none;
}
.photo-slot-empty .ps-tag { display: none; }

/* ============================================================
   WHO BUYS (buy) — bordered columns
   ============================================================ */
.whocol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.whocol { border-top: 1px solid var(--ink); padding-top: 24px; }
.whocol h3 { font-family: var(--serif); font-size: 24px; color: var(--ink); font-weight: 500; line-height: 1.2; }
.whocol p { font-family: var(--sans); font-size: 14px; color: var(--ink-soft); margin-top: 12px; line-height: 1.55; }

/* pull quote */
.pullquote {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-left h1 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.05;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.contact-left p { font-family: var(--sans); font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-top: 22px; }
.contact-block { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--rule); }
.contact-block .cb-row { padding: 16px 0; border-bottom: 1px solid var(--rule-soft); }
.contact-block .cb-loc {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-block .cb-line { font-family: var(--sans); font-size: 14px; color: var(--ink); margin-top: 4px; }
.contact-block .cb-line span { color: var(--ink-soft); }
.contact-block a { color: inherit; text-decoration: none; }

.form-card { background: var(--bg-alt); padding: 36px; border: 1px solid var(--rule); }
.field { margin-bottom: 24px; }
.field-label {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.field input,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  padding: 12px 14px;
  outline: none;
}
.field textarea { height: 100px; resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--copper); }

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.seg-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  color: var(--ink);
  border: none;
  padding: 11px 8px;
  cursor: pointer;
}
.seg-btn + .seg-btn { border-left: 1px solid var(--rule); }
.seg-btn.active { background: var(--ink); color: #fff; font-weight: 600; }

.form-note {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 12px;
}
.form-result { text-align: center; padding: 40px 0; }
.form-result .fr-check {
  width: 48px;
  height: 48px;
  background: var(--copper);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.form-result.error .fr-check { background: #9a3b2e; }
.form-result h2 { font-family: var(--serif); font-size: 26px; color: var(--ink); margin-top: 18px; font-weight: 500; }
.form-result p { font-family: var(--sans); font-size: 14px; color: var(--ink-soft); margin-top: 8px; }
.form-result a { color: var(--copper); }
.is-hidden { display: none !important; }

/* ============================================================
   GRADING — document style
   ============================================================ */
.grade-doc { max-width: 880px; margin: 0 auto; padding: 0 40px; }
.grade-doc .doc-title h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
}
.grade-doc .doc-title p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); max-width: 620px; }
.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
  margin-top: 48px;
}
.grade-table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.grade-table th {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: left;
  padding: 0 16px 10px 0;
  border-bottom: 1px solid var(--rule);
}
.grade-table td {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.grade-table tr:last-child td { border-bottom: none; }
.grade-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  background: var(--copper-soft);
  color: var(--copper);
  white-space: nowrap;
}
.grade-tag.parts { background: #E8E4DC; color: var(--ink-soft); }
.grade-name { font-weight: 600; color: var(--ink); display: block; margin-bottom: 3px; }
.grade-desc { color: var(--ink-soft); }
.grade-use { color: var(--ink-soft); font-size: 12.5px; }

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  margin-bottom: 8px;
}
.cat-cell {
  padding: 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cat-cell:nth-child(2n) { border-right: none; }
.cat-cell:nth-last-child(-n+2) { border-bottom: none; }
.cat-name { font-family: var(--serif); font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.cat-note { font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); }

.info-box {
  background: var(--bg-alt);
  border-left: 3px solid var(--copper);
  padding: 16px 20px;
  margin-top: 32px;
}
.info-box p { font-size: 13px; line-height: 1.6; color: var(--ink-soft); }
.info-box strong { color: var(--ink); }
.grade-cta { margin-top: 40px; }

/* ============================================================
   LEGAL (terms / privacy)
   ============================================================ */
.legal { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.legal .label { margin-bottom: 18px; display: block; }
.legal h1 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.legal .updated {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-mute);
  font-style: italic;
  margin-bottom: 36px;
  line-height: 1.6;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 36px 0 12px;
  letter-spacing: -0.005em;
}
.legal p, .legal li {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal strong { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-deep); color: #C8BFB1; padding: 64px 40px 36px; }
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-legal {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
  color: #6A6056;
  letter-spacing: 0.03em;
}
.footer-legal .fl-name { color: #9A8F84; margin-bottom: 4px; }
.footer-legal .fl-k { color: #6A6056; }
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: #8A8076;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-col a {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: #C8BFB1;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: #5C5249;
  letter-spacing: 0.04em;
}
.footer-bottom a { color: #5C5249; text-decoration: none; }
.footer-bottom a:hover { color: #9A8F84; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: background 0.15s, transform 0.15s;
}
.whatsapp-float:hover { background: var(--copper-deep); transform: translateY(-2px); }
.whatsapp-float svg { width: 30px; height: 30px; display: block; }

/* ============================================================
   RESPONSIVE — single 768px breakpoint (+480 for grids)
   ============================================================ */
@media (max-width: 920px) {
  .hero-cream h1 { font-size: 52px; }
  .hero-dark h1 { font-size: 46px; }
}

@media (max-width: 1024px) {
  .wrap { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 768px) {
  .wrap { padding-left: 16px; padding-right: 16px; }

  /* Nav → hamburger */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 14px 22px; }
  .nav-logo img { height: 44px; }

  /* Hero sizes */
  .hero-cream { padding: 56px 0 64px; }
  .hero-cream h1 { font-size: 34px; line-height: 1.1; }
  .hero-cream p { font-size: 16px; margin-top: 22px; }
  .hero-dark { padding: 56px 0 56px; }
  .hero-dark h1 { font-size: 34px; line-height: 1.1; }
  .hero-dark p { font-size: 15px; }

  /* Section paddings */
  .sec, .sec-pad-lg, .sec-pad-sm { padding: 56px 0; }
  .sec-h2, .split-head h2, .pullquote { font-size: 26px; }
  .sec-h2-sm { font-size: 26px; margin-bottom: 32px; }

  /* Split headers stack */
  .split-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }

  /* Route cards stack */
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 260px; padding: 40px 32px; }
  .route-card .rc-head { font-size: 28px; }

  /* Card grids → 2 cols */
  .cardgrid-4, .cardgrid-3, .numstep-grid { grid-template-columns: 1fr 1fr; }

  /* Stats → 2 cols */
  .stat-grid { grid-template-columns: 1fr 1fr; }

  /* Pillars / paths / who-buys stack */
  .pillars, .path-grid, .whocol-grid { grid-template-columns: 1fr; }
  .path-grid { gap: 1px; }

  /* Steps stack */
  .step-grid { grid-template-columns: 1fr; }
  .step:nth-child(even), .step:nth-child(odd) { background: var(--bg); }
  .step:nth-child(even) { background: var(--bg-alt); }

  /* Two-column sections stack (top content first) */
  .two-col, .two-col-operate { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; padding: 0 22px; }

  /* CTA bands stack */
  .cta-band-inner { flex-direction: column; align-items: flex-start; padding: 0 22px; }
  .cta-compact .cta-band-inner { gap: 24px; }

  /* Grading: category grid → 1 col, tables scroll */
  .cat-grid { grid-template-columns: 1fr; }
  .cat-cell { border-right: none; }
  .grade-doc, .legal { padding: 0 22px; }
  .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-scroll table { min-width: 560px; }

  /* Footer → 2 cols */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer { padding: 48px 22px 28px; }

  /* WhatsApp tap target */
  .whatsapp-float { right: 16px; bottom: 16px; width: 56px; height: 56px; }

  /* About headings */
  .operate-h2 { font-size: 28px; }
  .about-h2 { font-size: 26px; }
  .contact-left h1 { font-size: 34px; }
  .legal h1 { font-size: 34px; }
}

@media (max-width: 480px) {
  .cardgrid-4, .cardgrid-3, .numstep-grid, .stat-grid, .footer-inner {
    grid-template-columns: 1fr;
  }
}
