/* ============================================================
   DÉCEMBRE.ORG — Stylesheet
   Editorial / French Luxury Aesthetic
   ============================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  --midnight: #0b1426;
  --navy: #131d35;
  --deep-blue: #1a2744;
  --slate: #3a4a6b;
  --mist: #8a96b0;
  --silver: #c4cad8;
  --cream: #faf6ef;
  --warm-white: #fefcf8;
  --gold: #c9a84c;
  --gold-light: #e3cf8a;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --burgundy: #8b2e3b;
  --forest: #2d5e4a;
  --coral: #c75c3a;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  --container: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-py: clamp(4rem, 8vw, 7rem);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;

  --shadow-sm: 0 2px 8px rgba(11,20,38,0.06);
  --shadow-md: 0 8px 32px rgba(11,20,38,0.08);
  --shadow-lg: 0 16px 64px rgba(11,20,38,0.12);
  --shadow-glow: 0 0 40px rgba(201,168,76,0.1);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  padding: .75rem 1.5rem; background: var(--gold);
  color: var(--midnight); font-weight: 600; border-radius: var(--radius-sm);
  z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .875rem 2rem;
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 500;
  border-radius: 100px;
  transition: all .35s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(201,168,76,0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(11,20,38,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(11,20,38,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: .5rem;
  text-decoration: none; color: #fff;
}
.logo-icon {
  font-size: 1.5rem;
  animation: snowflakeSpin 8s linear infinite;
}
@keyframes snowflakeSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-dot { color: var(--gold); }

/* Nav */
.nav-list {
  display: flex; gap: .15rem;
}
.nav-link {
  display: block;
  padding: .5rem 1rem;
  font-size: .85rem; font-weight: 400;
  color: var(--silver);
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: color .25s, background .25s;
  position: relative;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* Hamburger */
.nav-toggle { display: none; }
.hamburger {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  position: relative; transition: background .3s;
}
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
  width: 100%; height: 2px; background: #fff;
  border-radius: 2px; transition: transform .3s;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--midnight);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

#snowCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(45,94,74,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(139,46,59,0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(11,20,38,0.3) 0%, rgba(11,20,38,0.9) 100%);
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 7rem 1.5rem 4rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .85rem; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .8s var(--ease-out) .2s forwards;
}

.hero-title {
  color: #fff;
  margin-bottom: 1.25rem;
  opacity: 0; animation: fadeUp .8s var(--ease-out) .35s forwards;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--silver);
  max-width: 600px; margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 0; animation: fadeUp .8s var(--ease-out) .5s forwards;
}

.hero-cta-group {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0; animation: fadeUp .8s var(--ease-out) .65s forwards;
}

/* Stats */
.hero-stats {
  display: flex; gap: 3rem; justify-content: center;
  opacity: 0; animation: fadeUp .8s var(--ease-out) .8s forwards;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: #fff; display: inline;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: .78rem; color: var(--mist);
  margin-top: .15rem; letter-spacing: 0.02em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section-header--light .section-title,
.section-header--light .section-desc { color: #fff; }
.section-header--light .section-eyebrow { color: var(--gold-light); }

.section-eyebrow {
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; color: var(--midnight); }
.section-desc {
  font-size: 1.05rem; color: var(--slate);
  line-height: 1.7;
}

/* ============================================================
   PILLAR CARDS
   ============================================================ */
.pillars {
  padding: var(--section-py) 0;
  background: var(--warm-white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--gap);
}

.pillar-card {
  background: #fff;
  border: 1px solid rgba(11,20,38,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pillar-card-visual {
  position: relative;
  padding: 2rem 2rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}

/* Pillar accent bars */
.pillar-avent .pillar-card-visual { border-top: 4px solid var(--gold); }
.pillar-fetes .pillar-card-visual { border-top: 4px solid var(--forest); }
.pillar-cuisine .pillar-card-visual { border-top: 4px solid var(--coral); }
.pillar-cadeaux .pillar-card-visual { border-top: 4px solid var(--burgundy); }
.pillar-voyages .pillar-card-visual { border-top: 4px solid #2a7ab5; }
.pillar-ephemeride .pillar-card-visual { border-top: 4px solid var(--slate); }

.pillar-icon { font-size: 2.2rem; }
.pillar-number {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700;
  color: rgba(11,20,38,0.04);
  line-height: 1;
}

.pillar-card-body { padding: 0 2rem 2rem; }

.pillar-card-body h3 {
  margin-bottom: .65rem;
}
.pillar-card-body h3 a {
  transition: color .25s;
}
.pillar-card-body h3 a:hover { color: var(--gold); }

.pillar-card-body > p {
  font-size: .92rem; color: var(--slate);
  margin-bottom: 1.25rem; line-height: 1.65;
}

.pillar-links {
  display: flex; flex-direction: column; gap: .4rem;
  margin-bottom: 1.5rem;
  padding-left: 0;
}
.pillar-links li { list-style: none; }
.pillar-links a {
  font-size: .85rem; color: var(--slate);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: color .2s, padding-left .25s;
  padding-left: 0;
}
.pillar-links a::before {
  content: '›';
  font-weight: 600; color: var(--mist);
  transition: color .2s, transform .2s;
}
.pillar-links a:hover {
  color: var(--midnight);
  padding-left: 4px;
}
.pillar-links a:hover::before { color: var(--gold); transform: translateX(2px); }

.pillar-cta {
  font-size: .85rem; font-weight: 600;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .25s;
}
.pillar-cta:hover { gap: .65rem; }

/* ============================================================
   SPOTLIGHT
   ============================================================ */
.spotlight {
  padding: var(--section-py) 0;
  background: var(--midnight);
  position: relative;
}
.spotlight::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(45,94,74,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  position: relative; z-index: 1;
}

.spotlight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background .3s, border-color .3s, transform .4s var(--ease-out);
}
.spotlight-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.spotlight-card--large {
  grid-column: 1 / -1;
  padding: 3rem;
}

.spotlight-card-badge {
  display: inline-block;
  font-size: .7rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: var(--gold-glow);
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.spotlight-card h3 { color: #fff; margin-bottom: .75rem; }
.spotlight-card h3 a { transition: color .25s; }
.spotlight-card h3 a:hover { color: var(--gold-light); }
.spotlight-card p { color: var(--mist); font-size: .92rem; margin-bottom: 1rem; }
.spotlight-card-meta {
  font-size: .78rem; color: var(--slate);
}

/* ============================================================
   EPHEMERIDE STRIP
   ============================================================ */
.ephemeride-strip {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.ephemeride-strip-inner {
  text-align: center;
}

.ephemeride-strip-text { margin-bottom: 2.5rem; }
.ephemeride-strip-text h2 {
  margin-bottom: .75rem;
  color: var(--midnight);
}
.eph-highlight { color: var(--gold); }
.ephemeride-strip-text p {
  color: var(--slate); font-size: 1.02rem;
  max-width: 600px; margin: 0 auto;
}

.ephemeride-days {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center;
  max-width: 700px; margin: 0 auto;
}

.day-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--midnight);
  background: #fff;
  border: 1px solid rgba(11,20,38,0.08);
  border-radius: 50%;
  transition: all .25s var(--ease-out);
}
.day-chip:hover {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.day-chip--special {
  background: var(--gold-glow);
  border-color: var(--gold);
  color: var(--gold);
}
.day-chip--special:hover {
  background: var(--gold);
  color: var(--midnight);
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations {
  padding: var(--section-py) 0;
  background: var(--warm-white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: 3rem;
}

.dest-card {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(11,20,38,0.06);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .3s;
  background: #fff;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.dest-card-emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.dest-card h3 {
  font-size: 1.2rem; margin-bottom: .5rem;
  color: var(--midnight);
}
.dest-card p {
  font-size: .88rem; color: var(--slate); line-height: 1.6;
}

.dest-card--sun:hover { border-color: #e8a838; }
.dest-card--snow:hover { border-color: #5ba8d4; }
.dest-card--city:hover { border-color: var(--slate); }
.dest-card--exotic:hover { border-color: var(--forest); }

.destinations-popular {
  text-align: center;
}
.destinations-popular h4 {
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 500;
  color: var(--slate); margin-bottom: 1rem;
}

.dest-tags {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center;
}
.dest-tags a {
  display: inline-block;
  padding: .45rem 1.1rem;
  font-size: .82rem; font-weight: 500;
  background: #fff;
  border: 1px solid rgba(11,20,38,0.08);
  border-radius: 100px;
  color: var(--navy);
  transition: all .25s;
}
.dest-tags a:hover {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-py) 0;
  background: #fff;
  border-top: 1px solid rgba(11,20,38,0.04);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-text h2 { margin-bottom: 1.25rem; color: var(--midnight); }
.about-text p {
  font-size: .98rem; color: var(--slate);
  margin-bottom: 1rem; line-height: 1.75;
}

.about-values {
  display: flex; flex-direction: column; gap: 1.5rem;
  padding-top: 1rem;
}
.value {
  display: flex; align-items: flex-start; gap: 1rem;
}
.value-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; min-width: 36px;
  background: var(--gold-glow);
  color: var(--gold);
  border-radius: 50%;
  font-size: .9rem; font-weight: 700;
}
.value strong {
  display: block; font-size: .95rem; color: var(--midnight);
}
.value span {
  font-size: .85rem; color: var(--mist);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.newsletter-inner {
  text-align: center;
  max-width: 560px; margin: 0 auto;
}
.newsletter-inner h2 {
  margin-bottom: .75rem; color: var(--midnight);
}
.newsletter-inner > p {
  font-size: .98rem; color: var(--slate);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex; gap: .75rem;
  margin-bottom: 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: .875rem 1.25rem;
  font-family: var(--font-body);
  font-size: .9rem;
  border: 1.5px solid rgba(11,20,38,0.1);
  border-radius: 100px;
  background: #fff;
  color: var(--midnight);
  outline: none;
  transition: border-color .25s;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--mist); }

.newsletter-disclaimer {
  font-size: .78rem; color: var(--mist);
}
.newsletter-disclaimer a {
  color: var(--gold); text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--midnight);
  color: var(--silver);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo--footer {
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .88rem; color: var(--mist);
  line-height: 1.65; max-width: 280px;
}

.footer-nav h4 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  color: #fff; margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a {
  font-size: .84rem; color: var(--mist);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0;
  font-size: .8rem; color: var(--slate);
}
.footer-legal {
  display: flex; gap: 1.5rem;
}
.footer-legal a {
  color: var(--slate);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--silver); }

/* ============================================================
   ANIMATIONS — Intersection Observer driven
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: .05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: .1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: .15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: .2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: .25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; z-index: 1001;
  }
  .nav-primary {
    position: fixed; top: 0; right: 0;
    width: 100%; height: 100vh; height: 100dvh;
    background: rgba(11,20,38,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .35s;
    z-index: 1000;
  }
  .nav-primary.open {
    opacity: 1; pointer-events: all;
  }
  .nav-list {
    flex-direction: column; align-items: center; gap: .5rem;
  }
  .nav-link {
    font-size: 1.4rem; padding: .75rem 1.5rem;
    font-family: var(--font-display);
    color: #fff;
  }

  /* Hamburger animation */
  .nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
  .nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-card--large { padding: 2rem; }
  .hero-stats { gap: 2rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }

  .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .day-chip { width: 38px; height: 38px; font-size: 1rem; }
}

/* --- PRINT --- */
@media print {
  .site-header, .hero-bg, .newsletter, #snowCanvas { display: none; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}
