/* ============================================================
   SKYSPAN — main.css
   Design tokens → reset → layout → components → pages
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Neutral ramp (OKLCH-inspired, dark-to-light) */
  --n-950: #0d0c09;
  --n-900: #16150f;  /* brand off-black */
  --n-800: #2a2820;
  --n-700: #3e3b30;
  --n-600: #50493c;
  --n-500: #7a7260;
  --n-400: #a09880;
  --n-300: #c8c0aa;
  --n-200: #e0dbd0;
  --n-100: #ece7dd;  /* brand bg tint */
  --n-050: #f7f4ef;
  --n-000: #fafaf8;

  /* Accent — warm gold */
  --a-700: #8a6c3a;
  --a-600: #a8844a;
  --a-500: #c5a572;  /* brand accent */
  --a-400: #d4bc96;
  --a-300: #e2d3b9;

  /* Semantic roles */
  --color-bg:          var(--n-000);
  --color-surface:     #ffffff;
  --color-surface-alt: var(--n-050);
  --color-border:      var(--n-200);
  --color-text:        var(--n-900);
  --color-text-muted:  var(--n-500);
  --color-accent:      var(--a-500);
  --color-accent-dark: var(--a-700);
  --color-dark-bg:     var(--n-900);
  --color-dark-text:   var(--n-100);

  /* Type */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Mono', monospace;

  /* Scale (1.25 ratio) */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Space (8-unit rhythm) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.15);

  /* Layout */
  --max-w: 1200px;
  --header-h: 80px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }
table { border-collapse: collapse; }
svg { fill: currentColor; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text);
  font-weight: 700;
}
h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); text-transform: uppercase; letter-spacing: 0.02em; }
h2 { font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); color: var(--color-accent); font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
h6 { font-size: var(--text-xs); font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted); }
p { max-width: 72ch; }
p + p { margin-top: var(--sp-4); }
strong { font-weight: 700; }

/* ── LAYOUT HELPERS ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
@media (min-width: 768px) { .container { padding-inline: var(--sp-8); } }
@media (min-width: 1280px) { .container { padding-inline: var(--sp-12); } }

.section { padding-block: var(--sp-20); }
.section--sm { padding-block: var(--sp-12); }
.section--lg { padding-block: var(--sp-32); }
.section--dark {
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--n-000); }
.section--tint { background: var(--n-100); }
.section--accent-line { border-top: 3px solid var(--color-accent); }

.grid-2 { display: grid; gap: var(--sp-8); }
.grid-3 { display: grid; gap: var(--sp-6); }
.grid-4 { display: grid; gap: var(--sp-6); }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -40px; left: var(--sp-4); z-index: 1000;
  background: var(--color-accent); color: var(--n-000); padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-sm); font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: var(--sp-4); }

/* ── HEADER / NAV ────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(250,250,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.site-logo img { height: 36px; width: auto; }

.header-contact-phone {
  display: none;
  font-size: var(--text-sm); font-weight: 600; color: var(--color-text);
  gap: var(--sp-2); align-items: center;
  transition: color .15s;
}
.header-contact-phone:hover { color: var(--color-accent); }
.header-contact-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (min-width: 768px) { .header-contact-phone { display: flex; } }

.site-nav { display: none; gap: var(--sp-6); align-items: center; }
@media (min-width: 1024px) { .site-nav { display: flex; } }

.site-nav a {
  font-size: var(--text-sm); font-weight: 500; letter-spacing: 0.03em;
  color: var(--color-text); padding-block: var(--sp-2);
  position: relative; transition: color .15s;
}
.site-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--color-accent);
  transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a:hover,
.site-nav a.active { color: var(--color-accent-dark); }

.nav-cta {
  background: var(--color-text); color: var(--n-000) !important;
  padding: var(--sp-2) var(--sp-5) !important; border-radius: var(--r-sm);
  font-weight: 600 !important; transition: background .15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--color-accent) !important; color: var(--n-000) !important; }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: var(--sp-2); }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text); border-radius: 2px; transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--color-dark-bg); z-index: 99;
  transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column; padding: var(--sp-8);
  gap: var(--sp-2); overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: var(--text-xl); color: var(--n-000); font-weight: 500;
  padding-block: var(--sp-3); border-bottom: 1px solid var(--n-800);
  transition: color .15s;
}
.mobile-nav a:hover { color: var(--color-accent); }
.mobile-nav .nav-cta {
  background: var(--color-accent) !important; color: var(--n-000) !important;
  border-radius: var(--r-sm); text-align: center; border: none;
  margin-top: var(--sp-4);
}

/* ── PAGE OFFSET ─────────────────────────────────────────── */
main { padding-top: var(--header-h); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(90svh - var(--header-h));
  display: flex; align-items: center;
  background: var(--n-950);
  color: var(--n-000);
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .5;
}
.hero__bg picture, .hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,12,9,.75) 0%, rgba(22,21,15,.4) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  padding-block: var(--sp-24);
}
.hero__eyebrow {
  font-size: var(--text-xs); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--color-accent); margin-bottom: var(--sp-4);
}
.hero h1 { color: var(--n-000); max-width: 14ch; }
.hero__sub {
  font-size: var(--text-lg); max-width: 52ch;
  margin-top: var(--sp-6); color: var(--n-200); line-height: 1.6;
}
.hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-8); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6); border-radius: var(--r-sm);
  font-weight: 600; font-size: var(--text-sm); letter-spacing: 0.03em;
  transition: background .15s, color .15s, box-shadow .15s;
  min-height: 44px;
}
.btn:focus-visible {
  outline: 3px solid var(--color-accent); outline-offset: 2px;
}
.btn--primary { background: var(--color-accent); color: var(--n-000); }
.btn--primary:hover { background: var(--a-600); }
.btn--dark { background: var(--n-900); color: var(--n-000); }
.btn--dark:hover { background: var(--a-500); }
.btn--outline {
  background: transparent; color: var(--n-000);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline:hover { border-color: var(--n-000); background: rgba(255,255,255,.1); }
.btn--outline-dark {
  background: transparent; color: var(--n-900);
  border: 2px solid var(--n-900);
}
.btn--outline-dark:hover { background: var(--n-900); color: var(--n-000); }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--color-surface); border-radius: var(--r-lg);
  border: 1px solid var(--color-border); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__img { aspect-ratio: 4/3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: var(--sp-6); }
.card__body h3 { font-size: var(--text-xl); margin-bottom: var(--sp-3); }
.card__body p { font-size: var(--text-sm); color: var(--color-text-muted); }
.card__link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-4); font-size: var(--text-sm); font-weight: 600;
  color: var(--color-accent-dark); transition: gap .2s;
}
.card__link:hover { gap: var(--sp-3); }

/* ── SECTION INTRO ───────────────────────────────────────── */
.section-intro { max-width: 64ch; }
.section-intro + * { margin-top: var(--sp-12); }

/* ── FEATURE LIST ────────────────────────────────────────── */
.feature-list { display: grid; gap: var(--sp-8); }
@media (min-width: 768px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-list { grid-template-columns: repeat(3, 1fr); } }

.feature-item { display: flex; gap: var(--sp-4); }
.feature-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--n-100); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-text h4 { font-size: var(--text-base); margin-bottom: var(--sp-2); }
.feature-text p { font-size: var(--text-sm); color: var(--color-text-muted); max-width: none; }

/* ── DOELGROEPEN (audience strips) ──────────────────────── */
.audience-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }

.audience-card {
  background: var(--color-accent); color: var(--n-000);
  border-radius: var(--r-lg); padding: var(--sp-8) var(--sp-6);
  transition: background .2s;
}
.audience-card:hover { background: var(--n-700); }
.audience-card h3 { color: var(--n-000); font-size: var(--text-xl); margin-bottom: var(--sp-3); }
.audience-card p { font-size: var(--text-sm); opacity: .9; max-width: none; }

/* ── PRICING STRIP ───────────────────────────────────────── */
.pricing-strip {
  background: var(--n-100); border: 2px solid var(--color-border);
  border-radius: var(--r-lg); padding: var(--sp-6) var(--sp-8);
  display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap;
}
.pricing-strip__label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--color-text-muted); }
.pricing-strip__price { font-family: var(--font-display); font-size: var(--text-4xl); font-weight: 700; color: var(--color-text); line-height: 1; }
.pricing-strip__price span { font-size: var(--text-lg); font-weight: 400; color: var(--color-text-muted); }
.pricing-strip__note { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 40ch; }

/* ── IMAGE + TEXT SPLIT ──────────────────────────────────── */
.split {
  display: grid; gap: var(--sp-12); align-items: center;
}
@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__img { order: 2; }
}
.split__img { border-radius: var(--r-lg); overflow: hidden; }
.split__img picture, .split__img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.split__text h2 { margin-bottom: var(--sp-4); }
.split__text p { color: var(--color-text-muted); }
.split__text .btn { margin-top: var(--sp-8); }

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }

.faq-item {
  border: 1px solid var(--color-border); border-radius: var(--r-md);
  overflow: hidden; background: var(--color-surface);
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-5) var(--sp-6); cursor: pointer;
  font-weight: 600; font-size: var(--text-base);
  list-style: none; user-select: none;
  gap: var(--sp-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--n-050); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--n-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, background .2s;
  color: var(--color-text-muted);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--color-accent); color: var(--n-000); }
.faq-item[open] summary { color: var(--color-accent-dark); }
.faq-answer { padding: 0 var(--sp-6) var(--sp-5); font-size: var(--text-sm); color: var(--color-text-muted); }
.faq-answer p + p { margin-top: var(--sp-3); }
.faq-answer ul { list-style: disc; padding-left: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); margin-top: var(--sp-2); }

/* ── GALLERY GRID ────────────────────────────────────────── */
.gallery {
  display: grid; gap: var(--sp-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 1 / 1; position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,12,9,.7));
  color: var(--n-000); font-size: var(--text-xs); padding: var(--sp-4) var(--sp-3) var(--sp-2);
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover figcaption { opacity: 1; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-form { max-width: 680px; }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.form-group label {
  font-size: var(--text-sm); font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--n-200);
  border-radius: var(--r-sm);
  font-size: var(--text-base);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color .15s, box-shadow .15s;
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(197,165,114,.2);
}
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; gap: var(--sp-6); }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* ── CONTACT INFO ────────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-info__item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-info__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--n-100); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__text { font-size: var(--text-sm); }
.contact-info__text strong { display: block; font-weight: 600; margin-bottom: var(--sp-1); }
.contact-info__text a:hover { color: var(--color-accent); text-decoration: underline; }

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats { display: flex; flex-wrap: wrap; gap: var(--sp-8); }
.stat { flex: 1 1 140px; }
.stat__number {
  font-family: var(--font-display); font-size: var(--text-4xl);
  font-weight: 700; color: var(--color-accent); line-height: 1;
}
.stat__label { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--sp-2); }

/* ── PAGE HERO (interior) ────────────────────────────────── */
.page-hero {
  background: var(--n-900); color: var(--n-000);
  padding-block: var(--sp-20);
  position: relative; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; opacity: .35;
}
.page-hero__bg picture, .page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,12,9,.9) 40%, rgba(13,12,9,.4) 100%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--n-000); }
.page-hero p { color: var(--n-300); max-width: 56ch; margin-top: var(--sp-4); font-size: var(--text-lg); }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  display: flex; gap: var(--sp-2); align-items: center;
  font-size: var(--text-xs); color: var(--n-400); margin-bottom: var(--sp-4);
}
.breadcrumb a { color: var(--n-400); transition: color .15s; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { color: var(--n-300); }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--n-950); color: var(--n-300);
  padding-block: var(--sp-16) var(--sp-8);
}
.footer-grid {
  display: grid; gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .site-logo img { height: 32px; filter: invert(1); margin-bottom: var(--sp-5); }
.footer-brand p { font-size: var(--text-sm); color: var(--n-400); max-width: 32ch; }

.footer-col h5 {
  font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .12em;
  color: var(--n-400); font-family: var(--font-body); margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  font-size: var(--text-sm); color: var(--n-300); transition: color .15s;
}
.footer-col a:hover { color: var(--color-accent); }

.footer-socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--n-700); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--n-400); transition: border-color .15s, color .15s;
}
.social-link:hover { border-color: var(--color-accent); color: var(--color-accent); }
.social-link svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid var(--n-800); padding-top: var(--sp-6);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: var(--sp-4); font-size: var(--text-xs); color: var(--n-500);
}
.footer-bottom a { color: var(--n-500); transition: color .15s; }
.footer-bottom a:hover { color: var(--color-accent); }
.footer-legal { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* ── SCROLL REVEALS ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ── 404 PAGE ────────────────────────────────────────────── */
.page-404 { min-height: 60vh; display: flex; align-items: center; text-align: center; }
.page-404 h1 { font-size: clamp(4rem, 15vw, 10rem); color: var(--color-accent); }

/* ── PRINT ───────────────────────────────────────────────── */
@media print {
  .site-header, .mobile-nav, .hamburger, .site-footer, .btn { display: none !important; }
  main { padding-top: 0; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: .8em; }
}
