/* ============================================================
   CARLO PEPIA HEALTH — Clean & Confident v3
   One display font. One body font. Organized.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #0A1F44;
  --navy-hover:  #0d2655;
  --black:       #111111;
  --white:       #FFFFFF;
  --gray-50:     #F6F6F6;
  --gray-100:    #EEEEEE;
  --gray-300:    #D0D0D0;
  --gray-500:    #888888;
  --gray-700:    #444444;
  --border:      #E0E0E0;

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-circ: cubic-bezier(0.0, 0.0, 0.2, 1.0);
  --dur:       260ms;
  --dur-fast:  160ms;
  --dur-slow:  700ms;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
/* Display headings — Barlow Condensed only */
.heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* Size scale */
.h-xl  { font-size: clamp(3.2rem, 7vw,  7rem); }
.h-lg  { font-size: clamp(2.6rem, 5vw,  5rem); }
.h-md  { font-size: clamp(2rem,   3.5vw, 3.5rem); }
.h-sm  { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.h-xs  { font-size: clamp(1.2rem, 2vw,  1.6rem); }

/* Section label */
.eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow-light { color: rgba(255,255,255,0.4); }
.eyebrow-navy  { color: var(--navy); }
.eyebrow-gray  { color: var(--gray-500); }

/* Body text */
p { font-size: 1rem; line-height: 1.75; }
.text-muted { color: var(--gray-500); }
.text-muted-light { color: rgba(255,255,255,0.58); }

/* ── Layout ────────────────────────────────────────────────── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 36px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 36px; }

.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 140px 0; }

.bg-navy   { background: var(--navy); }
.bg-black  { background: var(--black); }
.bg-gray   { background: var(--gray-50); }
.bg-white  { background: var(--white); }

/* ── Buttons — sliding fill micro-interaction ───────────────── */
/*
   Technique: 201%-tall gradient, background-position transitions from
   top (shows normal colour) to bottom (slides in hover colour from below).
   No z-index tricks — just CSS background-position animation.
*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  background-size: 100% 201%;
  background-position: 0% 0%;
  transition: background-position 0.5s var(--ease-out),
              color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              transform 0.35s var(--ease-out),
              box-shadow 0.35s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
}
.btn:hover { background-position: 0% 100%; }

/* Navy button: hover reveals slightly lighter navy sliding up */
.btn-navy {
  background-image: linear-gradient(to bottom, var(--navy) 50%, #0e2b5e 50%);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  border-color: #0e2b5e;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10,31,68,0.45);
}

/* White button: hover reveals warm off-white sliding up */
.btn-white {
  background-image: linear-gradient(to bottom, var(--white) 50%, #e8e8e8 50%);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  border-color: #e8e8e8;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

/* Ghost on dark: hover reveals faint white fill */
.btn-outline-white {
  background-image: linear-gradient(to bottom,
    rgba(255,255,255,0)   50%,
    rgba(255,255,255,0.14) 50%
  );
  color: var(--white);
  border-color: rgba(255,255,255,0.38);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.8);
}

/* Ghost on light */
.btn-outline-navy {
  background-image: linear-gradient(to bottom, transparent 50%, var(--navy) 50%);
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { color: var(--white); }

.btn-lg  { padding: 18px 40px; font-size: 0.85rem; letter-spacing: 0.12em; }
.btn-sm  { padding: 10px 20px; font-size: 0.72rem; }

/* ── Navigation — always dark ──────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--dur) ease;
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur) ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--white);
  transition: width var(--dur) var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 9px 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--dur) ease, border-color var(--dur) ease;
}
.nav-cta:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--dur) ease, opacity var(--dur) ease;
  transform-origin: center;
}
/* Hamburger → ✕ when open */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 199;
  padding: 40px 36px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.65);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--dur) ease, padding-left var(--dur) ease;
}
.nav-mobile a:hover { color: var(--white); padding-left: 12px; }

/* ── Image Placeholder ──────────────────────────────────────── */
.img-ph {
  background: #1C1C1C;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: rgba(255,255,255,0.18);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.img-ph.light {
  background: var(--gray-100);
  border-color: var(--border);
  color: var(--gray-300);
}
.img-ph.gray {
  background: #E8E8E8;
  border-color: var(--gray-300);
  color: #BBBBBB;
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  max-width: 600px; width: 100%;
  padding: 52px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s var(--ease-out);
  max-height: 90vh; overflow-y: auto;
  border-top: 4px solid var(--navy);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none;
  font-size: 1.4rem; color: var(--gray-500);
  cursor: pointer; padding: 6px;
  transition: color var(--dur) ease;
}
.modal-close:hover { color: var(--black); }
.modal-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 12px; display: block;
}
.modal-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 2.2rem;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--black); margin-bottom: 20px; line-height: 1.05;
}
.modal-box p { color: var(--gray-700); line-height: 1.82; font-size: 0.9375rem; }
.modal-cta { margin-top: 32px; }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item-dark { border-color: rgba(255,255,255,0.1); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; background: none; border: none; text-align: left;
  cursor: pointer; gap: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--black);
  transition: color var(--dur) ease;
}
.faq-trigger-dark { color: rgba(255,255,255,0.8); }
.faq-trigger:hover { color: var(--navy); }
.faq-trigger-dark:hover { color: var(--white); }
.faq-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; line-height: 1; color: var(--gray-500);
  transition: all var(--dur) ease;
}
.faq-icon-dark { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.4); }
.faq-item.open .faq-icon {
  background: var(--navy); border-color: var(--navy);
  color: var(--white); transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease-out); }
.faq-answer-inner { padding-bottom: 24px; color: var(--gray-500); font-size: 0.9375rem; line-height: 1.8; }
.faq-answer-inner-dark { color: rgba(255,255,255,0.5); }

/* ── Marquee ────────────────────────────────────────────────── */
.marquee {
  background: var(--navy);
  overflow: hidden; padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 36px; white-space: nowrap;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.marquee-dot {
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%; flex-shrink: 0;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Disclaimer ─────────────────────────────────────────────── */
.disclaimer {
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  padding: 16px 36px;
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: #0A0A0A; padding: 64px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
}
.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); display: block; margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); display: block; margin-bottom: 18px;
}
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.38);
  transition: all var(--dur) ease;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.45); color: var(--white); }
.footer-col h5 {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.22); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color var(--dur) ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.72rem; color: rgba(255,255,255,0.22);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.22); transition: color var(--dur) ease; }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ── Scroll progress bar ─────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: rgba(255,255,255,0.55);
  z-index: 400;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Custom cursor ───────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9001;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.12s var(--ease-out),
              width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              opacity 0.3s ease;
}
.cursor-dot.link-hover {
  width: 8px; height: 8px;
  opacity: 0.6;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9000;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.55s var(--ease-out),
              height 0.55s var(--ease-out),
              border-color 0.3s ease,
              opacity 0.3s ease;
}
.cursor-ring.link-hover {
  width: 60px; height: 60px;
  border-color: rgba(255,255,255,0.75);
}
.cursor-ring.btn-hover {
  width: 80px; height: 80px;
  border-color: rgba(255,255,255,0.5);
  border-width: 1px;
}

/* ── Grain texture (static noise overlay) ────────────────────── */
/*
   Applied to dark sections for depth. Pure CSS via inline SVG filter.
   Opacity kept very low — reads as material texture, not visual noise.
   Uses a separate element so it never disrupts child stacking contexts.
*/
.grain { position: relative; }
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* above content but below modals/cursor */
  z-index: 9;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  /* Don't block pointer events or clip content */
}
/* Ensure direct children of grain sit above the overlay */
.grain > * { position: relative; }

/* ── Improved image placeholders ─────────────────────────────── */
/*
   Sized and textured to feel like real photo frames.
   When real photos drop in, the layout already works.
*/
.img-ph {
  background: #141922;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: rgba(255,255,255,0.1);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.8;
  position: relative;
  overflow: hidden;
}
/* Subtle crosshatch grid to read as "photo frame" */
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
/* Camera-frame icon */
.img-ph::after {
  content: '';
  width: 36px; height: 28px;
  border: 1.5px solid rgba(255,255,255,0.09);
  border-radius: 4px;
  display: block;
  position: relative;
  flex-shrink: 0;
}
.img-ph.light {
  background: #f0f0f0;
  color: #c0c0c0;
}
.img-ph.light::before {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}
.img-ph.light::after { border-color: rgba(0,0,0,0.1); }

/* ── Utility ─────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ── Page load fade ──────────────────────────────────────────── */
/*
   Body fades in on first paint for a polished first impression.
*/
body.is-loading { opacity: 0; }
body { transition: opacity 0.4s ease; }

/* ── Page offset ─────────────────────────────────────────────── */
body { padding-top: 72px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container, .container-wide { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
  .section-lg { padding: 96px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .disclaimer { padding: 16px 20px; }

  /* Buttons — full width on mobile for primary actions */
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Touch targets — ensure minimum 44px */
  .btn { min-height: 44px; }
  .nav-hamburger { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }

  /* Stat grid cleanup */
  .stat-cell { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat-cell:last-child { border-bottom: none; }
}

/* Small phones — 375px and under */
@media (max-width: 480px) {
  .container, .container-wide { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .section { padding: 60px 0; }
  .section-lg { padding: 76px 0; }

  /* Shrink font sizes that would overflow narrow screens */
  .heading.h-xl { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .heading.h-lg { font-size: clamp(2rem, 8vw, 3rem); }

  /* Buttons: full width everywhere on small screens */
  .btn { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; gap: 10px; }

  /* Nav mobile link size — reduce for very small phones */
  .nav-mobile a { font-size: 2.2rem; padding: 14px 0; }

  /* Footer */
  .footer-bottom { gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
