:root {
  --bg: #f7f9fb;
  --card: #ffffff;
  --ink: #1a2332;
  --ink-soft: #4a5568;
  --line: #e1e8ef;
  --accent: #2a5d8f;
  --accent-soft: #e8f1fa;
  --warm: #c47a3d;
  --warm-soft: #faf0e6;
  --success: #2d7a3e;
  --success-soft: #e8f5ec;
  --whatsapp: #25d366;
  --whatsapp-soft: #e7f9ee;
  --danger: #b53a3a;
  --shadow: 0 1px 3px rgba(26, 35, 50, 0.06), 0 4px 12px rgba(26, 35, 50, 0.04);
  --shadow-lg: 0 4px 12px rgba(26, 35, 50, 0.08), 0 12px 32px rgba(26, 35, 50, 0.08);
  --radius: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* Password Gate */
#gate {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #1a3a5c 0%, #2a5d8f 50%, #4a7ba8 100%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: white;
}
#gate.hidden { display: none; }
.gate-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.gate-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.gate-box h1 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.gate-box p { color: rgba(255, 255, 255, 0.8); font-size: 14px; margin-bottom: 24px; }
.gate-box input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 12px;
}
.gate-box input::placeholder { color: rgba(255, 255, 255, 0.5); }
.gate-box input:focus { outline: 2px solid rgba(255, 255, 255, 0.5); }
.gate-box button {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: white;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}
.gate-box button:hover { background: #f0f6fc; }
.gate-error { color: #ffaa9a; font-size: 13px; margin-top: 12px; min-height: 18px; }

/* Privat-Banner */
.private-banner {
  background: var(--warm);
  color: white;
  padding: 10px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.private-banner strong { font-weight: 700; }

/* Nav */
nav.site-nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  flex-wrap: wrap;
}
.nav-links a { color: var(--ink-soft); padding: 6px 0; }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-links a:hover { color: var(--accent); text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(26, 35, 50, 0.55), rgba(26, 35, 50, 0.45)),
    url('https://www.gletscher-chalet.at/fileadmin/_processed_/3/0/csm_DSC04888-Verbeterd-NR_93bbae1533.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 820px;
}
.hero p.lead {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 640px;
  margin-bottom: 32px;
  opacity: 0.95;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
}
.hero-meta-item strong { font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* Personal greeting on landing */
.greeting-banner {
  background: linear-gradient(135deg, #ffffff 0%, #f0f6fc 100%);
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  text-align: center;
}
.greeting-banner h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--ink);
}
.greeting-banner p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: transform 0.1s, background 0.2s;
  text-decoration: none;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: #1f4a73; text-decoration: none; transform: translateY(-1px); }
.btn-warm { background: var(--warm); color: white; }
.btn-warm:hover { background: #a86530; text-decoration: none; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-soft); text-decoration: none; }

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}
section { scroll-margin-top: 80px; }
h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
}
h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.section-intro {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 680px;
  margin-bottom: 32px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Grid */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.card-link {
  display: block;
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.card-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  text-decoration: none;
}
.card-link .card-arrow {
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}
.card p { color: var(--ink-soft); font-size: 15px; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 32px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-num { font-size: 32px; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
  margin-bottom: 32px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery img:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery .img-big { grid-column: 1; grid-row: 1 / 3; }
.gallery .img-1 { grid-column: 2; grid-row: 1; }
.gallery .img-2 { grid-column: 3; grid-row: 1; }
.gallery .img-3 { grid-column: 2; grid-row: 2; }
.gallery .img-4 { grid-column: 3; grid-row: 2; }
@media (max-width: 720px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery .img-big { grid-column: 1 / 3; grid-row: 1; }
  .gallery .img-1 { grid-column: 1; grid-row: 2; }
  .gallery .img-2 { grid-column: 2; grid-row: 2; }
  .gallery .img-3 { grid-column: 1; grid-row: 3; }
  .gallery .img-4 { grid-column: 2; grid-row: 3; }
}

/* Section Image */
.section-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
  transition: transform 0.2s;
}
.section-image:hover { transform: scale(1.005); }

/* Sauna Hero */
.sauna-hero {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sauna-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s;
}
.sauna-hero:hover img { transform: scale(1.02); }
.sauna-hero .sauna-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 35, 50, 0.1) 0%, rgba(26, 35, 50, 0.55) 100%);
  display: flex;
  align-items: end;
  padding: 32px 40px;
  pointer-events: none;
  color: white;
}
.sauna-hero .sauna-overlay-text {
  max-width: 540px;
}
.sauna-hero .sauna-overlay-text h3 {
  color: white;
  font-size: 26px;
  margin-bottom: 8px;
}
.sauna-hero .sauna-overlay-text p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 95%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
#lightbox .lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
#lightbox .lb-close:hover { background: rgba(255, 255, 255, 0.3); }

/* Zimmer */
.floor-plan { display: grid; gap: 20px; }
.floor {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.floor-label { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.floor-label .floor-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.floor-label h3 { margin: 0; }
.rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.room {
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}
.room-name { font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.room-desc { font-size: 13px; color: var(--ink-soft); margin-bottom: 12px; }
.room-slots { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.room-slot {
  padding: 8px 6px;
  border-radius: 6px;
  text-align: center;
  font-size: 11px;
  border: 1.5px solid var(--line);
  background: white;
}
.room-slot .slot-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 4px;
}
.room-slot .slot-name { font-size: 11px; font-weight: 600; color: var(--ink); }
.room-slot.belegt { background: var(--success-soft); border-color: var(--success); }
.room-slot.belegt .slot-name { color: var(--success); }
.room-slot.frei { border-style: dashed; color: var(--ink-soft); }
.room-slot.frei .slot-name { color: var(--ink-soft); }
.room-slot.reserviert { background: var(--warm-soft); border-color: var(--warm); }
.room-slot.reserviert .slot-name { color: var(--warm); }

/* Form */
.rsvp-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  max-width: 720px;
  margin: 0 auto;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42, 93, 143, 0.12);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.checkbox-group { display: flex; align-items: center; gap: 10px; }
.checkbox-group input { width: auto; }
.checkbox-group label { margin-bottom: 0; font-weight: 400; font-size: 15px; color: var(--ink-soft); }

.radio-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.radio-card {
  position: relative;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  background: white;
}
.radio-card:hover { border-color: var(--accent); }
.radio-card input { position: absolute; opacity: 0; }
.radio-card .radio-title { font-weight: 600; display: flex; align-items: center; gap: 8px; }
.radio-card .radio-sub { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.radio-card:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.radio-card.yes:has(input:checked) { border-color: var(--success); background: var(--success-soft); }
.radio-card.no:has(input:checked) { border-color: var(--danger); background: #fbeaea; }

/* Table */
.table-wrap {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
th {
  background: #f4f7fa;
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
tr:last-child td { border-bottom: none; }
tr.highlight td { background: var(--accent-soft); font-weight: 600; }

/* FAQ / details */
details {
  background: var(--card);
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 8px;
  overflow: hidden;
}
details summary {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; font-size: 20px; color: var(--accent); font-weight: 400; }
details[open] summary::after { content: "−"; }
details > p, details > div { padding: 0 20px 20px; color: var(--ink-soft); }

/* Footer */
footer {
  background: var(--ink);
  color: #cbd5e0;
  padding: 40px 24px;
  text-align: center;
  font-size: 14px;
}
footer a { color: #94b8dc; }
footer .disclaimer-text {
  background: rgba(196, 122, 61, 0.15);
  border: 1px solid rgba(196, 122, 61, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 0 auto 24px;
  max-width: 700px;
  font-size: 13px;
  line-height: 1.6;
  color: #e1e8ef;
}

/* Status banner */
.status-banner {
  background: var(--success);
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: none;
}
.status-banner.error { background: var(--danger); }
.status-banner.show { display: block; }

/* Section variations */
.section-warm { background: var(--warm-soft); }
.section-light { background: white; }
.section-cool { background: linear-gradient(135deg, #f8fbff 0%, #f0f6fc 100%); }
.section-dark { background: var(--ink); color: white; }
.section-dark h2 { color: white; }
.section-dark .section-intro { color: #cbd5e0; }
.section-dark .card { background: #243042; border-color: #34425a; }
.section-dark .card p { color: #b8c5d4; }
.section-dark .eyebrow { color: #94b8dc; }

/* Deadline */
.deadline {
  background: var(--warm-soft);
  border-left: 4px solid var(--warm);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 24px 0;
}
.deadline strong { color: var(--warm); }

/* Info boxes */
.info-box {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 8px;
  margin: 20px 0;
}
.info-box strong { color: var(--accent); }
.info-box p { margin-bottom: 0; }

.success-box {
  background: var(--success-soft);
  border-left: 4px solid var(--success);
  padding: 18px 22px;
  border-radius: 8px;
  margin: 20px 0;
}
.success-box strong { color: var(--success); }
.success-box p { margin-bottom: 0; }

/* WhatsApp Box */
.whatsapp-box {
  background: var(--whatsapp-soft);
  border-left: 4px solid var(--whatsapp);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.whatsapp-icon {
  width: 48px;
  height: 48px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 24px;
  font-weight: 700;
}
.whatsapp-text strong { color: #1b8d4d; }
.whatsapp-text { font-size: 15px; color: var(--ink); }
.whatsapp-text p { margin-bottom: 0; }

/* Restaurant list */
.restaurant-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.restaurant { padding: 16px; background: white; border: 1px solid var(--line); border-radius: 10px; }
.restaurant-name {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.restaurant-distance {
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}
.restaurant-desc { font-size: 14px; color: var(--ink-soft); }

/* Two col */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow-lg); cursor: zoom-in; }

/* Kosten */
.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
@media (max-width: 720px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-card {
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.calc-card.primary { border-color: var(--accent); background: var(--accent-soft); }
.calc-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); margin-bottom: 8px; }
.calc-card .price { font-size: 30px; font-weight: 700; color: var(--ink); }
.calc-card .price-detail { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }

/* Big number */
.big-num-box {
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 28px 32px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.big-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.big-num-text { font-size: 16px; color: var(--ink); }
.big-num-text strong { color: var(--accent); }

/* Page hero (smaller than landing hero) */
.page-hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #2a5d8f 100%);
  color: white;
  padding: 80px 24px 64px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}

/* Apres Ski Section */
.apres-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.apres-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}
.apres-card h3 { margin-bottom: 8px; font-size: 17px; }
.apres-card p { font-size: 14px; color: var(--ink-soft); }
.apres-card .apres-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 8px;
}

/* iCal box */
.ical-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
  margin: 24px 0;
}
.ical-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  flex-shrink: 0;
}
.ical-text { flex: 1; }
.ical-text strong { font-size: 16px; }
.ical-text p { font-size: 14px; color: var(--ink-soft); margin: 4px 0 0; }
