/* ==========================================================================
   goalpal — marketing site
   Editorial minimalism. Cream, ink, rust.
   ========================================================================== */

/* Fonts: imported from Google Fonts with font-display:swap for performance.
   See README for the rationale and how to switch to self-hosted woff2 in /fonts/. */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..500;1,9..144,300..500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg: #F5EFE4;
  --bg-card: #fbf9f4;
  --bg-elevated: #ffffff;
  --ink: #2A2420;
  --ink-soft: #6B5D4A;
  --ink-muted: #8a8478;
  --line: #D8CDB8;
  --line-soft: #e3ddd0;
  --accent: #B5532A;
  --accent-soft: #c87a5c;

  --serif: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-text: 660px;
  --max-wide: 1120px;
  --shadow-card: 0 1px 2px rgba(26, 24, 20, 0.04);
  --shadow-screenshot: 0 30px 60px -30px rgba(26, 24, 20, 0.18), 0 8px 20px -10px rgba(26, 24, 20, 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

/* Subtle radial atmosphere — rust top-left, faint green bottom-right.
   Fixed so the texture stays consistent as you scroll. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(139, 58, 31, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(74, 92, 60, 0.05), transparent 65%);
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

/* ---------- Containers ---------- */
.wrap        { width: 100%; max-width: var(--max-wide); margin: 0 auto; padding: 0 24px; }
.wrap-text   { width: 100%; max-width: var(--max-text); margin: 0 auto; padding: 0 24px; }

/* ---------- Type primitives ---------- */
.label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.caption {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.5;
}
.serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* The wordmark stays lowercase always. */
.wordmark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  font-variation-settings: 'opsz' 14;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

/* ---------- Theme toggle button ---------- */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 160ms ease, background 160ms ease;
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--accent); }
.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Site chrome: header & footer ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.site-header__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 160ms ease;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover,
.nav a:focus-visible { color: var(--accent); }
.nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.site-footer {
  margin-top: 80px;
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.site-footer .copyright {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}
.site-footer__links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.site-footer__links a:hover { color: var(--accent); }

/* ---------- Hero (landing page) ---------- */
.hero {
  padding: 56px 0 88px;
  position: relative;
}

.hero__logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: block;
  margin-bottom: 28px;
  border: 1.5px solid var(--ink);
}

.hero__grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.hero__eyebrow {
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--ink-muted);
  display: inline-block;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--ink);
  text-transform: lowercase;
  max-width: 12ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero__sub {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 36px;
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* App Store CTA — dark pill, no gradient */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--bg-card);
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 200ms ease, background 200ms ease;
}
.cta:hover,
.cta:focus-visible {
  background: var(--ink-soft);
  transform: translateY(-1px);
}
.cta__chevron { width: 14px; height: 14px; opacity: 0.7; }

/* Hero image: phone screenshot, restrained shadow, slight rounding */
.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-shot {
  border-radius: 8px;
  box-shadow: var(--shadow-screenshot);
  background: var(--bg-card);
  max-width: 100%;
  width: 280px;
}

/* ---------- Section base ---------- */
section { padding: 80px 0; }
section + section { padding-top: 0; } /* avoid stacking */
.section--gap-top { padding-top: 80px; }

/* ---------- Pitch (Section B) ---------- */
.pitch {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.pitch__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}
.pitch p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 28px;
}
.pitch p:last-child { margin-bottom: 0; }

.pitch__mirror {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--accent);
  display: block;
  margin-top: 8px;
}

/* ---------- Three core ideas (Section C) ---------- */
.ideas {
  padding: 96px 0;
  border-top: 1px solid var(--line-soft);
}
.ideas__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.idea {
  padding: 48px 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.idea:first-of-type { border-top: 0; padding-top: 0; }
.idea__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.idea__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.idea__body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}

/* ---------- Screenshots gallery (Section D) ---------- */
.gallery {
  padding: 96px 0;
  border-top: 1px solid var(--line-soft);
}
.gallery__head {
  max-width: var(--max-wide);
  margin: 0 auto 56px;
  padding: 0 24px;
}
.gallery__label {
  display: block;
  margin-bottom: 14px;
}
.gallery__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
  color: var(--ink);
}

.gallery__grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.shot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.shot__img {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  box-shadow: var(--shadow-screenshot);
  background: var(--bg-card);
  align-self: center;
}
.shot__caption {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 36ch;
}
.shot__caption strong {
  color: var(--ink);
  font-weight: 500;
}

/* ---------- "What you won't find" (Section E) ---------- */
.absences {
  padding: 96px 0;
  border-top: 1px solid var(--line-soft);
}
.absences__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.absences__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  max-width: 14ch;
}
.absences__list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}
.absences__list li {
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.absences__list li:last-child { border-bottom: 1px solid var(--line-soft); }
.absences__list li::before {
  content: '—';
  color: var(--accent);
  font-family: var(--serif);
  flex-shrink: 0;
}
.absences__coda {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 50ch;
}

/* ---------- Pull quote (Section F) ---------- */
.pull {
  padding: 120px 0;
  border-top: 1px solid var(--line-soft);
}
.pull__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.pull blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  position: relative;
  padding-left: 0;
}
.pull blockquote::before {
  content: '\201C';
  display: block;
  font-size: 1.4em;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 24px;
  font-style: normal;
}
.pull cite {
  display: block;
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--ink-muted);
}

/* ---------- Final CTA (Section G) ---------- */
.final-cta {
  padding: 96px 0 80px;
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.final-cta__title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  color: var(--ink);
  text-transform: lowercase;
}
.final-cta__title em { font-style: italic; color: var(--accent); font-weight: 400; }
.final-cta__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.final-cta__sublinks {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.final-cta__sublinks a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.final-cta__sublinks a:hover { color: var(--accent); }

/* ==========================================================================
   Privacy & Support pages
   ========================================================================== */

.page-head {
  padding: 80px 0 56px;
}
.page-head__inner {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 0 24px;
}
.page-head__title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--ink);
}
.page-head__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0;
}
.page-head__date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

/* Long-form prose for privacy.html */
.prose {
  padding: 0 0 80px;
}
.prose__inner {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 0 24px;
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 56px 0 12px;
  color: var(--ink);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 32px 0 10px;
}
.prose p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.prose p strong { color: var(--ink); font-weight: 600; }
.prose .lede {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}
.prose a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
  transition: color 160ms ease;
}
.prose a:hover { color: var(--ink); border-bottom-color: var(--ink); }

.prose hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 48px 0;
}

/* ---------- FAQ accordion (support.html) ---------- */
.faq {
  padding: 0 0 80px;
}
.faq__inner {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 0 24px;
}
.faq__list {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq__item {
  border-bottom: 1px solid var(--line);
  list-style: none;
}
.faq__question {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 160ms ease;
}
.faq__question:hover { color: var(--accent); }
.faq__question:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}
.faq__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  position: relative;
  transition: transform 240ms ease;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--ink-muted);
  top: 50%;
  left: 50%;
}
.faq__icon::before {
  width: 14px; height: 1px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1px; height: 14px;
  transform: translate(-50%, -50%);
  transition: transform 240ms ease;
}
.faq__item[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}
.faq__answer-inner {
  padding: 0 0 32px;
}
.faq__answer p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}

/* When JS is unavailable, answers are visible by default (graceful) */
.no-js .faq__answer { max-height: none; }
.no-js .faq__answer-inner { padding-top: 8px; }

/* ---------- Contact (support.html) ---------- */
.contact {
  padding: 0 0 80px;
}
.contact__inner {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 0 24px;
}
.contact__label { display: block; margin-bottom: 16px; }
.contact__email {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
  padding-bottom: 2px;
  display: inline-block;
}
.contact__email:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 720px) {
  .wrap, .site-header__inner, .site-footer__inner,
  .hero__grid, .gallery__head, .gallery__grid {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero { padding: 96px 0 120px; }
  .hero__visual { justify-content: flex-end; }
  .phone-shot { width: 320px; }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
  }
  .shot__img { max-width: 300px; }

  section, .pitch, .ideas, .gallery, .absences, .pull, .final-cta { padding: 120px 0; }

  .pitch p { font-size: 26px; }

  .absences__list li { font-size: 22px; padding: 20px 0; }

  .faq__question { font-size: 24px; padding: 32px 0; }
}

@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
  .hero__title { font-size: clamp(56px, 7vw, 84px); }
  .phone-shot { width: 360px; }

  .ideas__inner { max-width: 880px; }
  .idea {
    grid-template-columns: 200px 1fr;
    gap: 64px;
    padding: 64px 0;
  }
  .idea__num { padding-top: 8px; }

  .gallery__grid { gap: 56px 48px; }
  .shot__img { max-width: 320px; }
}

/* ---------- Dark mode ---------- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #1A1614;
    --bg-card: #211d1b;
    --bg-elevated: #2a2521;
    --ink: #E8DCC4;
    --ink-soft: #A89880;
    --ink-muted: #7a6e60;
    --line: #3A332D;
    --line-soft: #2e2924;
    --accent: #D9683A;
    --accent-soft: #a84e2a;
    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-screenshot: 0 30px 60px -30px rgba(0, 0, 0, 0.5), 0 8px 20px -10px rgba(0, 0, 0, 0.3);
  }

  :root:not([data-theme="light"]) body::before {
    background:
      radial-gradient(ellipse 60% 50% at 0% 0%, rgba(217, 104, 58, 0.07), transparent 60%),
      radial-gradient(ellipse 50% 50% at 100% 100%, rgba(60, 80, 50, 0.06), transparent 65%);
  }
}

/* Explicit dark override (user toggled) */
[data-theme="dark"] {
  --bg: #1A1614;
  --bg-card: #211d1b;
  --bg-elevated: #2a2521;
  --ink: #E8DCC4;
  --ink-soft: #A89880;
  --ink-muted: #7a6e60;
  --line: #3A332D;
  --line-soft: #2e2924;
  --accent: #D9683A;
  --accent-soft: #a84e2a;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-screenshot: 0 30px 60px -30px rgba(0, 0, 0, 0.5), 0 8px 20px -10px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] body::before {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(217, 104, 58, 0.07), transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(60, 80, 50, 0.06), transparent 65%);
}

/* Toggle icon visibility */
.theme-toggle__sun  { display: none; }
.theme-toggle__moon { display: block; }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle__sun  { display: block; }
  :root:not([data-theme="light"]) .theme-toggle__moon { display: none; }
}

[data-theme="dark"] .theme-toggle__sun  { display: block; }
[data-theme="dark"] .theme-toggle__moon { display: none; }
[data-theme="light"] .theme-toggle__sun { display: none; }
[data-theme="light"] .theme-toggle__moon { display: block; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Print ---------- */
@media print {
  body::before { display: none; }
  .site-header, .site-footer, .hero__visual, .gallery, .final-cta { display: none; }
  body { background: #fff; color: #000; }
}
