/* ─────────────────────────────────────────────
   Cookie Kitchen — Legal Pages
   Shares design system with main landing page
   Mobile-first · No framework
───────────────────────────────────────────── */

/* ════════════════════════════════════════════
   DESIGN TOKENS — light mode
════════════════════════════════════════════ */
:root {
  /* Surfaces */
  --bg:             #FFFCF5;
  --surface:        rgba(255, 255, 255, 0.88);
  --surface-strong: #FFFFFF;
  --surface-soft:   #FFFAEB;

  /* Text */
  --text:    #1A1A1A;
  --muted:   #6B6B6B;
  --subtle:  #888888;

  /* Borders */
  --line:        rgba(122, 46, 14, 0.12);
  --line-strong: rgba(122, 46, 14, 0.22);

  /* Brand — warm amber/yellow (matches landing page) */
  --brand:        #DC6803;   /* yellow-600 */
  --brand-strong: #B54708;   /* yellow-700 */

  /* Accent colours (for callouts, tables, etc.) */
  --coral:  #d94f3d;
  --gold:   #9a6700;
  --blue:   #2563eb;
  --violet: #6d5bd0;
  --green:  #067647;

  /* Shadows */
  --shadow:      0 18px 60px rgba(122, 46, 14, 0.10);
  --shadow-soft: 0 8px 28px  rgba(122, 46, 14, 0.07);

  /* Layout */
  --radius:  8px;
  --content: 780px;
  --sidebar: 268px;

  /* Typography — Bricolage Grotesque (matches landing page) */
  --font-sans:  'Bricolage Grotesque', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
  --font-mono:  ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Focus ring */
  --focus: 0 0 0 3px rgba(220, 104, 3, 0.25);
}

/* ════════════════════════════════════════════
   DESIGN TOKENS — dark mode
════════════════════════════════════════════ */
[data-theme="dark"] {
  --bg:             #1C0E06;
  --surface:        rgba(38, 20, 10, 0.86);
  --surface-strong: #2C1508;
  --surface-soft:   #3A1D0C;

  --text:   #FAF4ED;
  --muted:  #CCBAA4;
  --subtle: #9E8474;

  --line:        rgba(250, 244, 237, 0.12);
  --line-strong: rgba(250, 244, 237, 0.22);

  --brand:        #FDB022;   /* yellow-400 */
  --brand-strong: #FEC84B;   /* yellow-300 */

  --coral:  #ff8b78;
  --gold:   #f3c46b;
  --blue:   #8bb7ff;
  --violet: #b7a9ff;
  --green:  #47CD89;

  --shadow:      0 22px 70px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 10px 34px rgba(0, 0, 0, 0.30);

  --focus: 0 0 0 3px rgba(253, 176, 34, 0.30);
}

/* ════════════════════════════════════════════
   RESET
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(220, 104, 3, 0.07), transparent 36%),
    linear-gradient(225deg, rgba(181, 71, 8, 0.05),  transparent 42%),
    linear-gradient(180deg, var(--bg), var(--surface-soft));
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: var(--brand-strong);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}
[data-theme="dark"] a { color: var(--brand); }
a:hover { text-decoration-thickness: 0.14em; }
button { font: inherit; }
:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 6px; }

/* ════════════════════════════════════════════
   PROGRESS BAR
════════════════════════════════════════════ */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #B54708, #7A2E0E);
  transform: scaleX(0);
  transform-origin: left;
}

/* ════════════════════════════════════════════
   SKIP LINK
════════════════════════════════════════════ */
.skip-link {
  position: fixed;
  top: 14px; left: 14px;
  z-index: 1100;
  padding: 10px 14px;
  background: var(--surface-strong);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 160ms ease;
  text-decoration: none;
  font-weight: 650;
}
.skip-link:focus { transform: translateY(0); }

/* ════════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}
.brand-lockup:hover { text-decoration: none; }

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  object-fit: contain;
  background: var(--surface-soft);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.brand-text strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.brand-text span {
  color: var(--muted);
  font-size: 12px;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}
.topbar-nav::-webkit-scrollbar { display: none; }
.topbar-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 500;
}
.topbar-nav a:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--brand) 10%, transparent);
}
.topbar-nav a[aria-current="page"] {
  color: var(--brand-strong);
  background: color-mix(in srgb, var(--brand) 13%, transparent);
  font-weight: 700;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.icon-button,
.pill-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.icon-button {
  width: 42px;
  display: inline-grid;
  place-items: center;
}
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  text-decoration: none;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
}
.icon-button:hover,
.pill-button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: var(--surface-strong);
  text-decoration: none;
}

/* "← Cookie Kitchen" home button */
.home-button {
  border-color: rgba(220, 104, 3, 0.3);
  color: var(--brand-strong);
  font-weight: 600;
}
.home-button:hover {
  border-color: var(--brand);
  color: var(--brand-strong);
  background: color-mix(in srgb, var(--brand) 8%, var(--surface-strong));
}

.icon {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ════════════════════════════════════════════
   MOBILE NAV
════════════════════════════════════════════ */
.mobile-nav {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--surface-strong);
  max-height: 74vh;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 22px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.mobile-nav a[aria-current="page"] {
  color: var(--brand-strong);
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  font-weight: 700;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  padding: clamp(50px, 8vw, 104px) clamp(18px, 4vw, 48px) clamp(34px, 6vw, 70px);
  border-bottom: 1px solid var(--line);
}
.compact-hero { padding-top: clamp(44px, 7vw, 86px); }

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(26px, 6vw, 78px);
  align-items: end;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}
.home-hero h1 { font-size: clamp(48px, 8vw, 96px); }

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.hero-meta {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.hero-meta div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.hero-meta div:last-child { padding-bottom: 0; border-bottom: 0; }
.hero-meta strong { color: var(--text); font-weight: 700; text-align: right; }

/* ════════════════════════════════════════════
   NOTICE STRIP
════════════════════════════════════════════ */
.notice-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px) 34px;
}
.notice-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-strong) 88%, var(--brand) 5%);
  box-shadow: var(--shadow-soft);
}
.notice-card p { margin: 0; color: var(--muted); }

/* ════════════════════════════════════════════
   PAGE LAYOUT
════════════════════════════════════════════ */
.layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 48px) 92px;
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, var(--content));
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}
.home-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 48px) 92px;
}

/* ════════════════════════════════════════════
   SIDEBAR / TOC
════════════════════════════════════════════ */
.sidebar {
  position: sticky;
  top: 98px;
  max-height: calc(100vh - 118px);
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.sidebar h2 {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}
.toc { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}
.toc a:hover,
.toc a[aria-current="true"] {
  color: var(--text);
  background: color-mix(in srgb, var(--brand) 12%, transparent);
}

/* ════════════════════════════════════════════
   MAIN CONTENT
════════════════════════════════════════════ */
main { min-width: 0; }

.policy-section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}
.policy-section:first-child { padding-top: 0; }
.policy-section:last-child { border-bottom: 0; }

.policy-section h2 {
  position: relative;
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.policy-section h3 {
  margin: 30px 0 10px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.anchor { color: inherit; text-decoration: none; }
.anchor::after {
  content: "#";
  margin-left: 8px;
  color: var(--subtle);
  font-family: var(--font-mono);
  font-size: 0.5em;
  opacity: 0;
  transition: opacity 140ms ease;
}
h2:hover .anchor::after,
h3:hover .anchor::after { opacity: 1; }

p { margin: 0 0 16px; color: var(--muted); }
.lede { color: var(--text); font-size: 19px; line-height: 1.68; }
strong { color: var(--text); }
ul, ol { margin: 0 0 18px; padding-left: 1.35rem; color: var(--muted); }
li { margin: 7px 0; }

/* ════════════════════════════════════════════
   CARDS
════════════════════════════════════════════ */
.card-grid,
.doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}
.doc-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 28px;
}

.info-card,
.doc-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset;
}
.doc-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.doc-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}
.doc-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}
.doc-card p { margin: 0; font-size: 15px; line-height: 1.55; }

.card-arrow {
  color: var(--subtle);
  transition: transform 160ms ease, color 160ms ease;
}
.doc-card:hover .card-arrow {
  transform: translateX(4px);
  color: var(--brand);
}

.info-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}
.info-card p { margin: 0; font-size: 15px; }

/* ════════════════════════════════════════════
   BADGE
════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 13%, transparent);
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ════════════════════════════════════════════
   CALLOUTS
════════════════════════════════════════════ */
.callout {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface-strong) 88%, var(--blue) 5%);
}
.callout--warning {
  border-left-color: var(--gold);
  background: color-mix(in srgb, var(--surface-strong) 88%, var(--gold) 6%);
}
.callout--strong {
  border-left-color: var(--coral);
  background: color-mix(in srgb, var(--surface-strong) 88%, var(--coral) 6%);
}
.callout p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════
   TRUTH LIST
════════════════════════════════════════════ */
.truth-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.truth-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  margin: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
}
.check {
  width: 22px; height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 15%, transparent);
  color: var(--brand-strong);
  font-weight: 900;
  line-height: 1;
  font-size: 13px;
}

/* ════════════════════════════════════════════
   DATA TABLE
════════════════════════════════════════════ */
.data-table {
  width: 100%;
  margin: 20px 0 24px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.data-table th,
.data-table td {
  padding: 14px;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.data-table th {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 800;
  background: color-mix(in srgb, var(--surface-soft) 82%, transparent);
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table td { color: var(--muted); }

/* ════════════════════════════════════════════
   STEP LIST
════════════════════════════════════════════ */
.step-list {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.step-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
}
.step-list li::before {
  content: counter(steps);
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand-strong);
  font-weight: 900;
  line-height: 1;
}
.step-list p { margin-bottom: 0; }

/* ════════════════════════════════════════════
   TIMELINE
════════════════════════════════════════════ */
.timeline {
  margin: 24px 0;
  padding-left: 20px;
  border-left: 3px solid var(--line);
}
.timeline-item {
  position: relative;
  padding: 0 0 24px 20px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -27px; top: 7px;
  width: 13px; height: 13px;
  border-radius: 999px;
  background: var(--brand);
  border: 3px solid var(--bg);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item h3 { margin-top: 0; }

/* ════════════════════════════════════════════
   CODE BLOCK
════════════════════════════════════════════ */
.code-block {
  margin: 22px 0;
  padding: 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #1C0E06;
  color: #FAF4ED;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.55;
}

/* ════════════════════════════════════════════
   CONTACT CARD
════════════════════════════════════════════ */
.contact-card p:last-child { margin-bottom: 0; }
.contact-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  padding: 36px clamp(18px, 4vw, 48px) 54px;
  border-top: 1px solid var(--line);
  text-align: center;
  background: var(--surface-strong);
}
.footer p { margin: 0 auto; max-width: 760px; color: var(--subtle); font-size: 14px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin: 16px auto 0;
  padding: 0;
  list-style: none;
}
.footer-links a { color: var(--subtle); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--text); }
.footer-home-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-strong);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(220, 104, 3, 0.3);
  border-radius: 999px;
  transition: background 160ms ease, border-color 160ms ease;
}
.footer-home-link:hover {
  background: color-mix(in srgb, var(--brand) 8%, transparent);
  border-color: var(--brand);
  text-decoration: none;
  color: var(--brand-strong);
}

/* ════════════════════════════════════════════
   ERROR PAGE
════════════════════════════════════════════ */
.error-page {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 48px 24px;
  text-align: center;
}
.error-page h1 {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: clamp(48px, 8vw, 86px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.error-page p { max-width: 440px; margin-inline: auto; font-size: 18px; }

/* ════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1120px)
════════════════════════════════════════════ */
@media (max-width: 1120px) {
  .topbar-nav { max-width: 54vw; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 980px)
════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-inner,
  .layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .topbar-nav { display: none; }
  .mobile-menu-button { display: inline-grid !important; }
}
@media (min-width: 981px) {
  .mobile-menu-button { display: none !important; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Small (≤ 700px)
════════════════════════════════════════════ */
@media (max-width: 700px) {
  body { font-size: 15px; }
  .topbar { min-height: 64px; padding-inline: 14px; gap: 10px; }
  .topbar-actions { gap: 6px; }
  .topbar-actions .pill-button:not(.home-button) { display: none; }
  .brand-text span { display: none; }
  .hero { padding-top: 40px; }
  .hero-meta { padding: 14px; }
  .hero-meta div { display: grid; grid-template-columns: 1fr; gap: 4px; }
  .hero-meta strong { text-align: left; }
  .hero-copy,
  .policy-section,
  .notice-card,
  .info-card,
  .doc-card { overflow-wrap: anywhere; }
  .card-grid,
  .doc-grid { grid-template-columns: 1fr; }
  .data-table,
  .data-table thead,
  .data-table tbody,
  .data-table th,
  .data-table td,
  .data-table tr { display: block; }
  .data-table thead { display: none; }
  .data-table tr { border-bottom: 1px solid var(--line); }
  .data-table tr:last-child { border-bottom: 0; }
  .data-table td { border-bottom: 0; padding: 12px 14px; }
  .data-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}

/* ════════════════════════════════════════════
   ACCESSIBILITY
════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* ════════════════════════════════════════════
   PRINT
════════════════════════════════════════════ */
@media print {
  :root {
    --bg: #ffffff; --surface: #ffffff; --surface-strong: #ffffff;
    --surface-soft: #ffffff; --text: #111111; --muted: #333333;
    --subtle: #555555; --line: #d8d8d8;
  }
  body { background: #ffffff; color: #111111; font-size: 11pt; line-height: 1.5; }
  .progress, .topbar, .mobile-nav, .sidebar, .back-to-top, .notice-strip { display: none !important; }
  .hero, .layout, .home-main, .footer { max-width: none; padding: 0; border: 0; }
  .hero-inner, .layout { display: block; }
  .hero-meta, .info-card, .callout, .truth-list li, .data-table, .doc-card { box-shadow: none; break-inside: avoid; }
  .policy-section { break-inside: auto; page-break-inside: auto; }
  a { color: #111111; text-decoration: none; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #666666; }
  .anchor::after { display: none !important; }
}
