:root {
  color-scheme: dark;
  --ink:          #fbf7ec;
  --muted:        #c8c0ae;
  --muted-2:      #8a8070;
  --panel:        rgba(12, 24, 18, 0.72);
  --panel-strong: rgba(8, 18, 13, 0.92);
  --pine:         #10271e;
  --pine-deep:    #07100c;
  --pine-mid:     #0b1a13;
  --pine-card:    #0e2018;
  --gold:         #d9aa55;
  --gold-light:   #f0cc82;
  --gold-dim:     rgba(217, 170, 85, 0.12);
  --gold-glow:    rgba(217, 170, 85, 0.28);
  --red:          #c0403a;
  --red-dim:      rgba(192, 64, 58, 0.18);
  --blue:         #7aa9c9;
  --line:         rgba(251, 247, 236, 0.10);
  --line-gold:    rgba(217, 170, 85, 0.22);
  --shadow-deep:  rgba(0, 0, 0, 0.55);
  --radius:       12px;
  --radius-lg:    18px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  min-height: 100%;
  background: var(--pine-deep);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  color: var(--ink);
  background: var(--pine-deep);
  overflow-x: hidden;
}

button, input, textarea, select { font: inherit; }

/* ═══════════════════════════════════════════════════════
   HERO SHELL
═══════════════════════════════════════════════════════ */
.countdown-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(5,10,8,.88) 0%, rgba(8,16,13,.52) 50%, rgba(9,16,13,.08) 100%),
    linear-gradient(180deg, rgba(4,8,6,.18) 0%, rgba(5,10,8,.92) 100%),
    url("assets/hero-christmas.jpg") center / cover no-repeat;
}

/* ───── header ───── */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  text-decoration: none;
  text-shadow: 0 2px 20px var(--shadow-deep);
}

.brand-mark {
  flex-shrink: 0;
  width: 26px;
  height: 30px;
  border: none;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 28'%3E%3Crect x='10' y='24' width='4' height='4' rx='1' fill='%23704214'/%3E%3Cpolygon points='12,8 20,19 4,19' fill='%231a6b35'/%3E%3Cpolygon points='12,3 19,13 5,13' fill='%2322884a'/%3E%3Cpolygon points='12,14 21,26 3,26' fill='%23155c2c'/%3E%3Cpolygon points='12,0 13.2,3.4 16.8,3.4 14,5.6 15.2,9 12,6.8 8.8,9 10,5.6 7.2,3.4 10.8,3.4' fill='%23d9aa55'/%3E%3Ccircle cx='8.5' cy='16' r='1.4' fill='%23c0403a'/%3E%3Ccircle cx='15.5' cy='21' r='1.3' fill='%23d9aa55'/%3E%3Ccircle cx='9' cy='22' r='1.1' fill='%23c0403a'/%3E%3C/svg%3E") center/contain no-repeat;
  box-shadow: none;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: rgba(251,247,236,.62);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0 1px 12px var(--shadow-deep);
  transition: color .2s;
}
.site-nav a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───── hero body ───── */
.hero {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 88vh;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 110px;
}

.hero-copy {
  width: min(640px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: clamp(.78rem, 1.4vw, .88rem);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--gold-glow);
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

h1 {
  font-size: clamp(2.6rem, 7.5vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  text-shadow: 0 4px 32px rgba(0,0,0,.5);
}

/* Giant day counter */
.day-count {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 3vw, 24px);
  margin: clamp(28px, 6vw, 48px) 0 16px;
}

.day-count #days {
  font-size: clamp(5rem, 19vw, 13.5rem);
  font-weight: 900;
  line-height: .82;
  background: linear-gradient(135deg, #fff8e8 0%, var(--gold-light) 40%, var(--gold) 70%, #b8882a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 32px rgba(217,170,85,.45));
}

.day-count #days-label {
  color: var(--muted);
  font-size: clamp(1.4rem, 4vw, 2.7rem);
  font-weight: 750;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

.status {
  max-width: 36rem;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

/* Time units */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 130px));
  gap: 10px;
}

.time-unit {
  position: relative;
  overflow: hidden;
  min-height: 96px;
  padding: 18px 14px 14px;
  border: 1px solid rgba(217,170,85,.2);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(15,30,22,.88) 0%, rgba(9,18,14,.92) 100%);
  box-shadow: 0 8px 32px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
}

.time-unit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(217,170,85,.08) 0%, transparent 70%);
  pointer-events: none;
}

.time-unit span,
.time-unit small { display: block; }

.time-unit span {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 840;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.time-unit small {
  margin-top: 8px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Progress bar */
.progress-bar-wrap {
  margin-top: 36px;
  width: min(420px, 100%);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: .78rem;
  font-weight: 650;
  color: var(--muted);
}

.progress-track {
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 9px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 12px var(--gold-glow);
  transition: width .4s ease;
}

/* Detail strip */
.details {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: -60px auto 0;
  border: 1px solid rgba(217,170,85,.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(12,24,18,.95) 0%, rgba(7,14,10,.98) 100%);
  box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.detail-card {
  padding: 28px 28px 24px;
  transition: background .2s;
}
.detail-card:hover { background: var(--gold-dim); }

.detail-card + .detail-card {
  border-left: 1px solid var(--line);
}

.detail-label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.details strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-weight: 720;
  line-height: 1.2;
}

/* ───── snow ───── */
.snow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.snow span {
  position: absolute;
  top: -60px;
  user-select: none;
  pointer-events: none;
  animation: snowFall linear infinite;
}

@keyframes snowFall {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); }
  33%  { transform: translateY(33vh) translateX(18px) rotate(120deg); }
  66%  { transform: translateY(66vh) translateX(-12px) rotate(240deg); }
  100% { transform: translateY(105vh) translateX(8px) rotate(360deg); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════
   AD CONTAINERS
═══════════════════════════════════════════════════════ */
.ad-container {
  width: 100%;
  background: var(--pine-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 22px 16px;
}

.ad-placeholder {
  color: var(--muted-2);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   CONTENT SECTION
═══════════════════════════════════════════════════════ */
.content-section {
  position: relative;
  border-top: 1px solid var(--line-gold);
  background:
    radial-gradient(ellipse 80% 60% at 110% -10%, rgba(217,170,85,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at -10% 80%, rgba(192,64,58,.05) 0%, transparent 50%),
    var(--pine-mid);
  padding: 88px 0;
}

/* Subtiele ster/sneeuwvlok achtergrond */
.content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image:
    radial-gradient(circle, #fff 0 1px, transparent 2px),
    radial-gradient(circle, #fff 0 1px, transparent 2px);
  background-size: 60px 60px, 100px 100px;
  background-position: 0 0, 30px 30px;
}

.content-inner {
  position: relative;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}

/* Section heading with decorative line */
.section-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.section-heading h2 {
  white-space: nowrap;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.01em;
}

.section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line-gold) 0%, transparent 100%);
}

.content-inner h2 {
  margin: 52px 0 18px;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 780;
  letter-spacing: -.01em;
  color: var(--ink);
}
.content-inner h2:first-child { margin-top: 0; }

.content-inner p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.content-inner strong { color: var(--ink); }

/* Year grid */
.year-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
  margin: 28px 0 48px;
}

.year-card {
  padding: 20px 22px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16,32,22,.9) 0%, rgba(10,22,16,.95) 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.year-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,.3), 0 0 0 1px rgba(217,170,85,.3);
  border-color: rgba(217,170,85,.4);
}

.year-card .year-num {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.year-card strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}

/* Traditions list */
.traditions-list {
  list-style: none;
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.traditions-list li {
  position: relative;
  padding: 20px 20px 20px 28px;
  border: 1px solid var(--line);
  border-left: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: linear-gradient(90deg, var(--pine-card) 0%, rgba(14,32,24,.7) 100%);
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
  transition: background .2s;
}

.traditions-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px 0 0 2px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
}

.traditions-list li:hover { background: linear-gradient(90deg, rgba(16,32,24,.9) 0%, rgba(12,24,18,.8) 100%); }
.traditions-list li strong { color: var(--ink); font-weight: 720; }

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 14px;
  margin: 28px 0 0;
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 26px 20px 22px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(18,34,24,.95) 0%, rgba(10,20,15,.98) 100%);
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(217,170,85,.12) 0%, transparent 65%);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(217,170,85,.28);
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 880;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════ */
.faq-section {
  position: relative;
  padding: 88px 0;
  border-top: 1px solid var(--line-gold);
  background: var(--pine-deep);
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(217,170,85,.05) 0%, transparent 60%);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(14,26,20,.9) 0%, rgba(9,17,13,.95) 100%);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.faq-item:hover {
  border-color: rgba(217,170,85,.25);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}

.faq-item[open] {
  border-color: rgba(217,170,85,.3);
  box-shadow: 0 6px 32px rgba(0,0,0,.25);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 1.04rem;
  font-weight: 680;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: background .15s;
}

.faq-item summary:hover { background: var(--gold-dim); }
.faq-item[open] summary { background: var(--gold-dim); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-chevron {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(217,170,85,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform .25s, background .15s;
}

.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
  background: var(--gold-dim);
}

.faq-item > p {
  padding: 4px 24px 22px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.72;
  border-top: 1px solid var(--line);
  margin: 0;
}
.faq-item > p strong { color: var(--ink); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--pine-deep);
  border-top: 1px solid var(--line);
  padding: 48px 0;
  text-align: center;
}

.footer-inner {
  width: min(740px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-logo .brand-mark {
  width: 20px;
  height: 23px;
}

.site-footer p {
  color: var(--muted-2);
  font-size: .85rem;
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 760px) {
  .countdown-shell { background-position: 66% center; }

  .site-header {
    width: min(100% - 28px, 1180px);
    padding-top: 20px;
  }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    flex-direction: column;
    gap: 2px;
    background: var(--panel-strong);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 12px; border-radius: 8px; }
  .site-nav a:hover { background: var(--gold-dim); }

  .hero {
    min-height: 82vh;
    width: min(100% - 28px, 1180px);
    padding: 96px 0 90px;
  }

  .day-count { flex-wrap: wrap; row-gap: 4px; }
  .day-count #days-label { width: 100%; }

  .time-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .time-unit { min-height: 80px; padding: 14px 10px 12px; }
  .time-unit small { font-size: .62rem; white-space: nowrap; }

  .details {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1180px);
    margin-top: -44px;
    margin-bottom: 16px;
    border-radius: var(--radius);
  }
  .detail-card { padding: 20px; }
  .detail-card + .detail-card { border-top: 1px solid var(--line); border-left: none; }

  .content-section, .faq-section { padding: 56px 0; }
  .content-inner { width: min(100% - 28px, 760px); }

  .divider-angled { height: 52px; }
}

@media (max-width: 520px) {
  .progress-bar-wrap { width: 100%; }
  .time-unit { min-height: 68px; padding: 10px 6px 10px; }
  .time-unit span { font-size: 1.5rem; }
  .time-unit small { font-size: .56rem; }
}

@media (max-width: 420px) {
  .brand { font-size: .9rem; }
  .hero { width: min(100% - 24px, 1180px); }
  .time-grid { gap: 6px; }
  .time-unit { padding: 8px 4px 8px; }
  .time-unit span { font-size: 1.3rem; }
  .time-unit small { font-size: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid rgba(217,170,85,.3);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16,30,22,.9) 0%, rgba(10,20,15,.95) 100%);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 680;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover {
  border-color: rgba(217,170,85,.55);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.3), 0 0 0 1px rgba(217,170,85,.18);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c3e 100%);
  border-color: transparent;
  color: #fff;
  font-weight: 740;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ee377 0%, #1aab4e 100%);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(37,211,102,.3);
}

/* ═══════════════════════════════════════════════════════
   SLAAPJES SECTION
═══════════════════════════════════════════════════════ */
.sleep-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--pine-deep) 0%, var(--pine-mid) 100%);
  text-align: center;
}
.sleep-inner {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}
.sleep-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 0 20px var(--gold-glow);
  margin-bottom: 20px;
}
.sleep-eyebrow::before, .sleep-eyebrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.sleep-number {
  display: block;
  font-size: clamp(5rem, 20vw, 14rem);
  font-weight: 900;
  line-height: .85;
  background: linear-gradient(135deg, #fff8e8 0%, var(--gold-light) 40%, var(--gold) 70%, #b8882a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(217,170,85,.35));
}
.sleep-label {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  font-weight: 700;
}
.sleep-sub {
  margin-top: 8px;
  color: var(--muted-2);
  font-size: .9rem;
}

/* ═══════════════════════════════════════════════════════
   INTRO SECTION
═══════════════════════════════════════════════════════ */
.intro-section {
  background: var(--pine-deep);
  border-bottom: 1px solid var(--line);
}
.intro-inner {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
}
.intro-inner p {
  color: var(--muted);
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  line-height: 1.7;
}
.intro-inner strong { color: var(--ink); }

/* ═══════════════════════════════════════════════════════
   MUSIC SECTION
═══════════════════════════════════════════════════════ */
.music-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  background: var(--pine-deep);
}
.music-inner {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}
.music-inner h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.music-inner p { color: var(--muted); font-size: .96rem; margin-bottom: 24px; }
.spotify-frame {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #121212;
}
.spotify-embed {
  display: block;
  border: none;
}

/* ═══════════════════════════════════════════════════════
   SHARE SECTION
═══════════════════════════════════════════════════════ */
.share-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  background: var(--pine-mid);
}
.share-inner {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}
.share-inner h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.share-inner p { color: var(--muted); font-size: .96rem; margin-bottom: 24px; }
.share-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.copy-notice {
  display: none;
  margin-top: 12px;
  color: var(--gold);
  font-size: .84rem;
  font-weight: 620;
}
.copy-notice.show { display: block; }

/* ═══════════════════════════════════════════════════════
   PAGES SECTION (intern links)
═══════════════════════════════════════════════════════ */
.pages-section {
  padding: 80px 0;
  border-top: 1px solid var(--line-gold);
  background: linear-gradient(180deg, var(--pine-mid) 0%, var(--pine-deep) 100%);
}
.pages-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.page-card {
  display: block;
  padding: 28px 26px 24px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(16,30,22,.9) 0%, rgba(10,20,15,.95) 100%);
  color: inherit;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(217,170,85,.3);
  border-color: rgba(217,170,85,.45);
}
.page-card-icon { font-size: 2rem; margin-bottom: 14px; }
.page-card-title {
  display: block;
  font-size: 1.12rem;
  font-weight: 760;
  color: var(--ink);
  margin-bottom: 8px;
}
.page-card-desc { color: var(--muted); font-size: .9rem; line-height: 1.55; margin: 0; }
.page-card-arrow {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-size: .84rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   SUB-PAGE BANNER
═══════════════════════════════════════════════════════ */
.page-banner {
  position: relative;
  overflow: hidden;
  padding: 80px 0 64px;
  background: linear-gradient(135deg, rgba(5,10,8,.98) 0%, rgba(9,16,13,.92) 100%),
              var(--pine-deep);
  border-bottom: 1px solid var(--line-gold);
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 100% 50%, rgba(217,170,85,.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 0% 50%, rgba(192,64,58,.04) 0%, transparent 50%);
}
.page-banner-inner {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  color: var(--muted-2);
  font-size: .82rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-banner h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.page-banner .lead {
  color: var(--muted);
  font-size: clamp(.98rem, 2vw, 1.18rem);
  line-height: 1.65;
  max-width: 52rem;
  margin: 0;
}

/* Subpage site-header (simpeler) */
.page-site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0 40px;
}
.page-site-header .site-nav a { font-size: .84rem; }

/* ═══════════════════════════════════════════════════════
   DATA TABLE
═══════════════════════════════════════════════════════ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 48px;
  font-size: .98rem;
}
.data-table th {
  padding: 14px 18px;
  text-align: left;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--line-gold);
  background: rgba(217,170,85,.04);
}
.data-table td {
  padding: 16px 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.data-table td strong { color: var(--ink); }
.data-table tr:hover td { background: var(--gold-dim); }
.data-table tr.highlight td {
  background: rgba(217,170,85,.06);
}
.data-table tr.highlight td:first-child {
  border-left: 3px solid var(--gold);
  padding-left: 15px;
}

/* ═══════════════════════════════════════════════════════
   ADVENT CALENDAR
═══════════════════════════════════════════════════════ */
.advent-section {
  padding: 80px 0 100px;
  background: var(--pine-mid);
}
.advent-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}
.advent-status {
  text-align: center;
  margin-bottom: 48px;
  padding: 28px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(14,28,20,.9) 0%, rgba(9,18,13,.95) 100%);
}
.advent-status .big-num {
  display: block;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: .85;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.advent-status p { color: var(--muted); font-size: 1rem; }
.advent-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.advent-door {
  position: relative;
  aspect-ratio: 1;
  perspective: 700px;
}
.advent-door:not(.locked) { cursor: pointer; }
.advent-door-inner {
  position: absolute;
  inset: 0;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.advent-door.opened .advent-door-inner { transform: rotateY(180deg); }
.advent-door-front,
.advent-door-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  text-align: center;
}
.advent-door-front {
  background: linear-gradient(145deg, rgba(16,32,24,.95) 0%, rgba(10,22,16,.98) 100%);
  border: 1px solid var(--line-gold);
  transition: border-color .2s, box-shadow .2s;
  gap: 4px;
}
.advent-door:not(.locked):hover .advent-door-front {
  border-color: rgba(217,170,85,.5);
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}
.advent-door.locked .advent-door-front { opacity: .38; cursor: default; }
.advent-door-num {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.advent-door-icon { font-size: clamp(.8rem, 2vw, 1.2rem); opacity: .5; }
.advent-door-back {
  background: linear-gradient(145deg, rgba(18,38,26,.98) 0%, rgba(11,22,16,.99) 100%);
  border: 1px solid rgba(217,170,85,.35);
  transform: rotateY(180deg);
  gap: 6px;
  overflow: hidden;
}
.advent-back-icon { font-size: clamp(1rem, 2.5vw, 1.6rem); }
.advent-back-title {
  font-size: clamp(.58rem, 1.3vw, .82rem);
  font-weight: 760;
  color: var(--gold);
  line-height: 1.2;
}
.advent-back-text {
  font-size: clamp(.5rem, 1vw, .68rem);
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.advent-hint {
  text-align: center;
  margin-top: 28px;
  color: var(--muted-2);
  font-size: .84rem;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE ADDITIONS
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .advent-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}
@media (max-width: 760px) {
  .pages-grid { grid-template-columns: 1fr; }
  .share-buttons { flex-direction: column; }
  .page-banner h1 { font-size: clamp(1.8rem, 8vw, 3rem); }
  .page-site-header .nav-toggle { display: flex; }
  .page-site-header .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    flex-direction: column;
    gap: 2px;
    background: var(--panel-strong);
    border: 1px solid var(--line-gold);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
  }
  .page-site-header .site-nav.open { display: flex; }
  .page-site-header .site-nav a { padding: 10px 12px; border-radius: 8px; }
  .page-site-header .site-nav a:hover { background: var(--gold-dim); }
  .data-table th, .data-table td { padding: 12px 12px; font-size: .9rem; }
}
@media (max-width: 520px) {
  .advent-grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
}
