/* === Molecular Education — Single-page === */

:root {
  /* Brand accents (logo) */
  --red: #E23B3B;
  --green: #56B947;
  --yellow: #F6C026;
  --blue: #1FA9D8;

  /* Theme: light (default) */
  --bg: oklch(0.985 0.012 85);          /* warm cream */
  --bg-alt: oklch(0.965 0.018 80);      /* deeper cream */
  --bg-card: #ffffff;
  --ink: oklch(0.18 0.02 250);          /* near-black with cool cast */
  --ink-soft: oklch(0.42 0.02 250);
  --ink-mute: oklch(0.62 0.02 250);
  --line: oklch(0.90 0.015 80);
  --shadow: 0 1px 2px rgba(20,30,50,0.04), 0 8px 30px rgba(20,30,50,0.06);
  --shadow-lg: 0 20px 60px rgba(20,30,50,0.12);

  /* Active accent (changeable via tweak) */
  --accent: var(--green);
  --accent-ink: #ffffff;

  /* Density */
  --pad-x: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 10vw, 140px);
  --radius: 22px;
  --radius-sm: 12px;

  /* Type */
  --font-display: "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

[data-theme="dark"] {
  --bg: oklch(0.16 0.02 250);
  --bg-alt: oklch(0.21 0.025 250);
  --bg-card: oklch(0.23 0.025 250);
  --ink: oklch(0.96 0.005 85);
  --ink-soft: oklch(0.78 0.01 250);
  --ink-mute: oklch(0.58 0.015 250);
  --line: oklch(0.32 0.025 250);
  --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 8px 30px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
}

[data-density="compact"] {
  --section-y: clamp(56px, 7vw, 92px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 360px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* Layout */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Type */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(48px, 7.5vw, 112px); letter-spacing: -0.035em; }
h2 { font-size: clamp(36px, 5vw, 68px); letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; background: var(--accent); border-radius: 999px;
}

p { color: var(--ink-soft); text-wrap: pretty; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer; transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  border-color: var(--accent);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent) 35%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 45%, transparent); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink); color: var(--bg);
}
.btn-dark:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform 0.25s; }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  min-width: 360px;
  transition: all 0.3s ease;
}
.header-inner {
  max-width: 1280px;
  min-width: 880px;
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
}
@media (max-width: 880px) {
  .header-inner { min-width: 0; }
}
.header.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; transform: translateY(6px); }
.header-logo img { display: block; flex-shrink: 0; width: auto; }
.header-logo .logo-full { height: 64px; }
.header-logo .logo-icon { height: 56px; display: none; }
.footer-logo img { height: 130px; width: auto; display: block; }
.header-nav {
  display: flex; gap: 4px; align-items: center;
}
.header-nav a {
  padding: 8px 14px; border-radius: 999px;
  font-weight: 600; font-size: 14px; color: var(--ink-soft);
  transition: all 0.2s ease;
}
.header-nav a:hover { color: var(--ink); background: var(--bg-alt); }
.header-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.header-actions > * { flex-shrink: 0; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink); transition: all 0.2s;
}
.theme-toggle:hover { background: var(--bg-card); }
@media (max-width: 880px) {
  .header-nav { display: none; }
  .header-logo { transform: translateY(5px); }
  .header-logo .logo-full { display: none; }
  .header-logo .logo-icon { display: block; }
}

/* === HERO === */
.hero {
  position: relative; padding-top: 160px; padding-bottom: var(--section-y);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center;
  text-align: center; justify-items: center;
}
.hero-grid > .hero-text {
  max-width: 820px; margin-left: auto; margin-right: auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero-grid > .hero-scene {
  margin-left: auto !important; margin-right: auto !important;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--line);
  font-size: 13px; font-weight: 700;
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 22px; height: 22px; border-radius: 999px; background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent-ink); font-size: 11px; font-weight: 900;
}

.hero h1 .swap {
  display: inline-block; color: var(--accent);
  position: relative;
}
.hero h1 .swap svg.underline {
  position: absolute; left: 0; right: 0; bottom: -8px; width: 100%; height: 16px;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px); max-width: 600px;
  margin: 28px auto 36px; color: var(--ink-soft);
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }

.hero-meta {
  margin-top: 56px; display: flex; gap: 48px; flex-wrap: wrap; justify-content: center;
  border-top: 1px dashed var(--line); padding-top: 28px; width: 100%; max-width: 720px;
}
.hero-meta div { display: flex; flex-direction: column; gap: 2px; align-items: center; }
.hero-meta .num { font-weight: 800; font-size: 28px; letter-spacing: -0.02em; color: var(--ink); }
.hero-meta .lbl { font-size: 13px; color: var(--ink-mute); font-weight: 600; }

/* Hero scene */
.hero-scene {
  position: relative; aspect-ratio: 1.4 / 1; width: 100%; max-width: 880px;
  margin-top: 24px;
}
.hero-photo {
  position: absolute; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hp-1 { left: 4%; top: 18%; width: 30%; aspect-ratio: 3/4; transform: rotate(-4deg); }
.hp-2 { left: 36%; top: 0; width: 30%; aspect-ratio: 1/1; transform: rotate(2deg); }
.hp-3 { right: 4%; top: 14%; width: 30%; aspect-ratio: 4/3; transform: rotate(4deg); }

.hero-sticker {
  position: absolute; padding: 10px 16px; border-radius: 999px;
  font-weight: 800; font-size: 14px;
  box-shadow: var(--shadow);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-sticker svg { width: 16px; height: 16px; flex-shrink: 0; }
.hs-1 {
  top: -8%; right: 8%; background: var(--yellow); color: #2a1f00;
  transform: rotate(8deg);
}
.hs-2 {
  bottom: 8%; left: 4%; background: var(--red); color: #fff;
  transform: rotate(-6deg);
}

/* Floating atoms */
.atom {
  position: absolute; border-radius: 999px;
  pointer-events: none;
  filter: blur(0.3px);
}
.atom-r { background: var(--red); }
.atom-g { background: var(--green); }
.atom-y { background: var(--yellow); }
.atom-b { background: var(--blue); }

/* === MARQUEE === */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 22px 0; overflow: hidden; position: relative;
}
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  animation: scroll 35s linear infinite;
  width: max-content;
}
.marquee-track > span {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 56px;
  white-space: nowrap;
}
.marquee-track .star {
  display: inline-block; width: 18px; height: 18px; border-radius: 999px;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* === SECTION === */
section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 36px; } }
.section-head .lead p { font-size: 17px; max-width: 480px; }

/* === WHAT WE DO === */
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 460px;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #fff;
}
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body p { font-size: 14.5px; margin: 0; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 14px; color: var(--ink);
  margin-top: 8px;
}
.card-link svg { transition: transform 0.25s; }
.card:hover .card-link svg { transform: translate(3px, -3px); }

/* === STATS === */
.stats-band {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--ink); color: var(--bg);
  border-radius: 32px;
  padding: clamp(48px, 7vw, 92px) clamp(28px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.18);
}
[data-theme="dark"] .stats-band {
  background: var(--bg-alt);
  color: var(--ink);
  border: 1px solid var(--line);
}
@media (max-width: 880px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }

.stat { position: relative; }

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px); font-weight: 800;
  letter-spacing: -0.04em; line-height: 0.95;
  color: var(--bg);
}
[data-theme="dark"] .stat .num { color: var(--ink); }
.stat .num .plus { color: var(--accent); }
.stat .lbl { margin-top: 12px; font-size: 14px; opacity: 0.7; max-width: 200px; }

.stats-decor {
  position: absolute; pointer-events: none; opacity: 0.5;
}

/* === ABOUT === */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-collage {
  position: relative; aspect-ratio: 1/1.05;
}
.about-collage .ph { position: absolute; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.about-collage .ph img { width:100%; height:100%; object-fit:cover; }
.ac-1 { left: 0; top: 0; width: 60%; aspect-ratio: 3/4; }
.ac-2 { right: 0; top: 18%; width: 50%; aspect-ratio: 4/5; }
.ac-3 { left: 20%; bottom: 0; width: 50%; aspect-ratio: 4/3; }
.ac-blob {
  position: absolute; width: 130px; height: 130px; border-radius: 999px;
  right: -20px; bottom: 20px;
  background: var(--accent); opacity: 0.15; filter: blur(10px);
}

.about-points {
  display: grid; gap: 18px; margin-top: 36px;
}
.point {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start;
}
.point .icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--ink);
}
.point .icon svg { width: 24px; height: 24px; display: block; }
.point h4 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.point p { font-size: 15px; margin: 0; }

/* === GALLERY === */
.gallery {
  column-count: 4; column-gap: 14px;
}
@media (max-width: 980px) { .gallery { column-count: 3; } }
@media (max-width: 680px) { .gallery { column-count: 2; } }
.gallery img {
  width: 100%; margin-bottom: 14px; border-radius: 14px;
  break-inside: avoid;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

/* === TESTIMONIALS === */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.testi .quote-mark {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-display); font-size: 80px; font-weight: 900;
  color: var(--accent); opacity: 0.25; line-height: 1;
}
.testi blockquote {
  margin: 0; font-size: 17px; line-height: 1.5; color: var(--ink);
  font-weight: 500;
}
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi .avatar {
  width: 44px; height: 44px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff; font-size: 16px;
}
.testi .name { font-weight: 800; font-size: 15px; }
.testi .where { font-size: 13px; color: var(--ink-mute); }

/* === UPCOMING CAMPS === */
.camps-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 880px) { .camps-list { grid-template-columns: 1fr; } }
.camp {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-card);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.camp:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.camp .date {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-mute);
}
.camp .date .pip { width: 8px; height: 8px; border-radius: 999px; }
.camp h3 { font-size: 24px; }
.camp .age {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  padding: 4px 10px; border-radius: 999px; background: var(--bg-alt);
  font-size: 12px; font-weight: 700;
}
.camp .meta { display: flex; gap: 16px; font-size: 13px; color: var(--ink-mute); margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); }

/* === FAQ === */
.faq {
  max-width: 820px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  cursor: pointer;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-weight: 700; font-size: 19px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--bg-alt); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: all 0.3s;
}
.faq-item[open] .plus { background: var(--accent); color: var(--accent-ink); transform: rotate(45deg); border-color: transparent; }
.faq-item .answer {
  margin-top: 14px; color: var(--ink-soft); font-size: 16px; line-height: 1.6;
  max-width: 720px;
}

/* === CONTACT / CTA === */
.cta-banner {
  position: relative; overflow: hidden;
  border-radius: 32px;
  padding: clamp(48px, 8vw, 96px) clamp(28px, 5vw, 72px);
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: center;
}
@media (max-width: 880px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner h2 { color: inherit; }
.cta-banner p { color: inherit; opacity: 0.9; max-width: 480px; margin-top: 16px; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 880px) { .cta-banner .actions { justify-content: flex-start; } }
.cta-banner .btn-primary { background: #fff; color: #111; border-color: #fff; box-shadow: none; }
.cta-banner .btn-ghost { color: inherit; border-color: rgba(255,255,255,0.45); }
.cta-banner .btn-ghost:hover { border-color: #fff; }

.cta-decor {
  position: absolute; pointer-events: none;
  width: 200px; height: 200px; border-radius: 999px;
  border: 2px dashed rgba(255,255,255,0.3);
  right: -60px; top: -60px;
}
.cta-decor::after {
  content: ""; position: absolute; inset: 30px; border-radius: 999px;
  border: 2px dashed rgba(255,255,255,0.3);
}

.contact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 48px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-item {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px; background: var(--bg-card);
  display: flex; flex-direction: column; gap: 8px;
}
.contact-item .lbl { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.contact-item .val { font-size: 16px; font-weight: 700; }

/* === FOOTER === */
footer {
  padding: 48px var(--pad-x) 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; align-items: start;
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-blurb { font-size: 14px; max-width: 320px; margin-top: 14px; }
.footer-col h5 { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 12px; }
.footer-col a { display: block; padding: 4px 0; font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  max-width: 1280px; margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-mute);
}
.socials { display: flex; gap: 8px; }
.socials a {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--bg-card); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all 0.2s;
}
.socials a:hover { background: var(--accent); color: var(--accent-ink); border-color: transparent; transform: translateY(-2px); }

/* === REVEAL === */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

[data-motion="subtle"] .reveal { transition-duration: 0.5s; transform: translateY(12px); }
[data-motion="heavy"] .reveal { transform: translateY(48px) scale(0.97); }

/* Hero variant: split */
[data-hero="split"] .hero-scene { transform: none; }
[data-hero="atoms"] .hero-scene { display: none; }
[data-hero="atoms"] .hero { padding-bottom: var(--section-y); padding-top: 180px; }
.atoms-bg { display: none; }
[data-hero="atoms"] .atoms-bg { display: block; }

/* Font pair */
[data-font="grotesk"] {
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}
[data-font="serif"] {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* Compact density adjustments */
[data-density="compact"] .card { min-height: 380px; }
[data-density="compact"] h1 { font-size: clamp(40px, 6vw, 88px); }
[data-density="compact"] h2 { font-size: clamp(30px, 4vw, 54px); }
[data-density="compact"] .section-head { margin-bottom: 36px; }
