/* =========================================================
   Skicentrum Heemskerk — Production Design System
   Brand: navy #1a2155 / red #e60000 / white
   Type:  Inter Tight (display) + Inter (body)
   ========================================================= */

:root {
  /* Brand */
  --navy-950:    #0e133a;
  --navy-900:    #14193f;
  --navy-800:    #1a2155;   /* primary */
  --navy-700:    #232a66;
  --navy-600:    #2a3273;
  --navy-500:    #3f487f;
  --navy-300:    #8c93b6;
  --navy-100:    #e7e9f1;
  --navy-50:     #f4f5fa;

  --red-600:     #c80000;
  --red-500:     #e60000;
  --red-400:     #ff2222;
  --red-50:      #fef2f2;

  --ice-50:      #f5f8fb;
  --ice-100:     #e9eff4;

  --paper:       #ffffff;
  --paper-soft:  #fafbfc;
  --paper-warm:  #f7f7f9;

  --ink:         #0e133a;
  --ink-soft:    #4b5170;
  --ink-mute:    #8a90a8;
  --rule:        #e3e6ee;
  --rule-soft:   rgba(14,19,58,.08);

  /* Semantic */
  --success:     #198754;
  --warn:        #f59e0b;

  /* Type */
  --f-display:   'Inter Tight', 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --f-body:      'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-mono:      'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --maxw:        1360px;
  --pad:         clamp(20px, 4vw, 64px);
  --radius-lg:   20px;
  --radius:      14px;
  --radius-sm:   10px;

  /* Motion */
  --t:           cubic-bezier(.2,.7,.2,1);
  --t-bounce:    cubic-bezier(.34,1.56,.64,1);

  /* Shadows */
  --sh-sm:       0 1px 2px rgba(14,19,58,.04), 0 2px 6px rgba(14,19,58,.04);
  --sh:          0 4px 14px rgba(14,19,58,.08), 0 2px 4px rgba(14,19,58,.04);
  --sh-lg:       0 24px 48px -12px rgba(14,19,58,.18), 0 8px 16px rgba(14,19,58,.06);
  --sh-xl:       0 40px 80px -20px rgba(14,19,58,.25);
}

* { box-sizing: border-box; }
*::selection { background: var(--navy-800); color: #fff; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- Typography utilities ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 8vw, 132px); font-weight: 800; letter-spacing: -0.045em; line-height: .92; }
h2 { font-size: clamp(36px, 5vw, 72px); font-weight: 700; letter-spacing: -0.035em; line-height: .98; }
h3 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }

.italic, em { font-style: italic; }
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before {
  content: ''; width: 24px; height: 2px;
  background: var(--red-500);
  border-radius: 2px;
}
.eyebrow--light { color: rgba(255,255,255,.78); }
.eyebrow--light::before { background: var(--red-500); }
.eyebrow--center { justify-content: center; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.section--dark {
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--ice { background: var(--ice-50); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0;
  border-radius: 999px;
  background: var(--navy-800); color: #fff;
  border: 1.5px solid var(--navy-800);
  transition: transform .35s var(--t), background .25s var(--t), border-color .25s var(--t), color .25s var(--t), box-shadow .25s var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { background: var(--red-500); border-color: var(--red-500); transform: translateY(-2px); box-shadow: var(--sh); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--navy-800); }
.btn--ghost:hover { background: var(--navy-800); color: #fff; }
.btn--light { background: #fff; color: var(--navy-800); border-color: #fff; }
.btn--light:hover { background: var(--red-500); color: #fff; border-color: var(--red-500); }
.btn--red { background: var(--red-500); border-color: var(--red-500); color: #fff; }
.btn--red:hover { background: var(--red-600); border-color: var(--red-600); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost-light:hover { background: #fff; color: var(--navy-800); border-color: #fff; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 20px 34px; font-size: 15px; }
.btn--block { display: flex; width: 100%; }
.btn .arrow { display: inline-block; transition: transform .3s var(--t); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--navy-800);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: gap .3s var(--t), color .3s var(--t);
}
.link-arrow:hover { gap: 14px; color: var(--red-500); }

/* ---------- Service strip (top) ---------- */
.service-strip {
  background: var(--navy-900);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.service-strip__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 10px var(--pad);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.service-strip__items { display: flex; gap: 28px; flex-wrap: wrap; }
.service-strip__item { display: inline-flex; align-items: center; gap: 8px; }
.service-strip__item svg { color: var(--red-500); flex-shrink: 0; }
.service-strip__right { display: flex; align-items: center; gap: 14px; }
.service-strip__link { color: rgba(255,255,255,.85); transition: color .2s; font-weight: 500; }
.service-strip__link:hover { color: #fff; }
@media (max-width: 980px) {
  .service-strip__inner { justify-content: center; }
  .service-strip__items { gap: 18px; justify-content: center; font-size: 11.5px; }
  .service-strip__right { display: none; }
}
@media (max-width: 600px) {
  .service-strip__items > :nth-child(n+3) { display: none; }
}

/* legacy conditions (no longer used but kept harmless) */
.conditions {
  background: var(--navy-900);
  color: #fff;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.conditions__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 10px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.conditions__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  font-size: 11px;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.conditions__label .live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 0 rgba(230,0,0,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(230,0,0,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(230,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,0,0,0); }
}
.conditions__track {
  display: flex; gap: 36px;
  white-space: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.conditions__track-inner {
  display: flex; gap: 36px;
  animation: ticker 50s linear infinite;
  width: max-content;
}
.conditions__item {
  display: inline-flex; align-items: baseline; gap: 8px;
  color: rgba(255,255,255,.9);
}
.conditions__item .place { font-weight: 600; }
.conditions__item .snow { color: var(--red-500); font-weight: 700; }
.conditions__item .meta { color: rgba(255,255,255,.55); font-size: 11px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.conditions__updated {
  color: rgba(255,255,255,.55);
  font-size: 11px; letter-spacing: .04em;
  white-space: nowrap;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--rule-soft);
  transition: background .3s var(--t), box-shadow .3s var(--t);
}
.site-header.is-scrolled {
  box-shadow: var(--sh-sm);
}
.site-header__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy-800);
  border-radius: 10px;
  padding: 9px 14px;
  height: 48px;
  transition: background .25s var(--t), transform .35s var(--t);
}
.brand__mark img { height: 30px; width: auto; display: block; }
.brand:hover .brand__mark { background: var(--red-500); transform: rotate(-1deg); }

.primary-nav { justify-self: center; }
.primary-nav > ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 2px;
}
.primary-nav > ul > li { position: relative; }
.primary-nav a {
  position: relative;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  transition: color .25s var(--t), background .25s var(--t);
}
.primary-nav a:hover { color: var(--red-500); }
.primary-nav a.is-active { color: var(--navy-800); background: var(--navy-50); }
.primary-nav .has-mega > a svg { transition: transform .25s var(--t); }
.primary-nav .has-mega:hover > a svg { transform: rotate(180deg); }

/* ---------- Mega menu ---------- */
.mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%; transform: translateX(-50%) translateY(-8px);
  width: min(1100px, 88vw);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--t), transform .25s var(--t), visibility .25s;
  z-index: 95;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega::before {
  content: '';
  position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.mega__inner {
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr) 1.6fr;
  gap: 32px;
}
.mega__col h5 {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.mega__pill {
  background: var(--red-500); color: #fff;
  font-size: 9px; padding: 2px 6px; border-radius: 999px;
  letter-spacing: .08em;
}
.mega__col a {
  display: block;
  padding: 7px 0;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  transition: color .15s var(--t), padding .2s var(--t);
}
.mega__col a:hover { color: var(--red-500); padding-left: 4px; }
.mega__feat-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--navy-100);
  text-decoration: none;
}
.mega__feat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--t); }
.mega__feat-card:hover img { transform: scale(1.05); }
.mega__feat-card::after { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(14,19,58,.85)); }
.mega__feat-body {
  position: absolute; inset: auto 0 0 0;
  padding: 20px;
  z-index: 2; color: #fff;
}
.mega__feat-eyebrow { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.mega__feat-body strong { display: block; font-family: var(--f-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 4px 0 8px; color: #fff; }
.mega__feat-arrow { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); }

/* Cart icon - prominent, white SVG on filled button */
.icon-btn--cart {
  background: var(--navy-800) !important;
  color: #fff !important;
}
.icon-btn--cart svg {
  stroke: #fff !important;
  color: #fff !important;
}
.icon-btn--cart:hover {
  background: var(--red-500) !important;
  color: #fff !important;
}
.icon-btn--cart .icon-btn__badge { border-color: var(--navy-800); }
.icon-btn--cart:hover .icon-btn__badge { border-color: var(--red-500); }

/* Testimonial avatar with initials */
.testimonial__initials {
  width: 100%; height: 100%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-500);
  color: #fff;
  font-family: var(--f-display);
  font-size: 18px; font-weight: 700;
  letter-spacing: .02em;
}

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  color: var(--ink);
  transition: background .2s var(--t), color .2s var(--t);
}
.icon-btn:hover { background: var(--navy-50); color: var(--navy-800); }
.icon-btn__badge {
  position: absolute; top: 6px; right: 6px;
  min-width: 18px; height: 18px; padding: 0 5px;
  font-size: 10px; font-weight: 700;
  background: var(--red-500); color: #fff;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.hamburger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 12px;
}
.hamburger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--t); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 900px);
  background: var(--navy-950);
  color: #fff;
  overflow: hidden;
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,19,58,.55) 0%, rgba(14,19,58,0) 30%, rgba(14,19,58,.85) 100%),
    linear-gradient(90deg, rgba(14,19,58,.5) 0%, rgba(14,19,58,0) 60%);
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%;
  padding: clamp(48px, 8vw, 96px) var(--pad);
  max-width: var(--maxw); margin: 0 auto;
}
.hero__crumbs-top {
  position: absolute;
  top: clamp(28px, 4vw, 48px); right: var(--pad);
  z-index: 3;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 14px;
  margin-bottom: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 0 rgba(230,0,0,.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero__crumbs-top { display: none; }
}

/* legacy aliases */
.hero__top { display: none; }

.hero__title {
  font-family: var(--f-display);
  color: #fff;
  margin: 0 0 32px;
  max-width: 16ch;
}
.hero__title .italic {
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, var(--red-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 56ch;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__bottom-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero__metrics { display: flex; gap: clamp(24px, 4vw, 64px); }
.hero__metric .num {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: -0.025em;
  color: #fff;
}
.hero__metric .label {
  display: block;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.hero__scroll {
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,.7);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 50px; background: rgba(255,255,255,.3);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; left: 0; top: 0;
  width: 100%; height: 30%;
  background: #fff;
  animation: scrollDown 2s var(--t) infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

/* ---------- 3 Pijlers (Skiwinkel · Skibaan · Skischool) ---------- */
.pillars-section {
  padding: clamp(72px, 9vw, 120px) 0 0;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .35s var(--t), border-color .25s var(--t), box-shadow .35s var(--t);
  overflow: hidden;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--navy-800);
  box-shadow: var(--sh-lg);
}
.pillar--featured {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}
.pillar--featured:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
}
.pillar__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--ice-50);
}
.pillar__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--t);
}
.pillar:hover .pillar__media img { transform: scale(1.06); }
.pillar__num {
  font-family: var(--f-display);
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  color: var(--red-500);
  margin-bottom: 10px;
}
.pillar--featured .pillar__num { color: var(--red-400); }
.pillar__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1;
  margin-bottom: 14px;
  color: inherit;
}
.pillar__desc {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex: 1;
}
.pillar--featured .pillar__desc { color: rgba(255,255,255,.78); }
.pillar__arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 3px;
  align-self: flex-start;
  transition: gap .3s var(--t);
}
.pillar:hover .pillar__arrow { gap: 14px; }
.pillar__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--red-500); color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  z-index: 2;
}

/* ---------- Shop grid (asymmetric) ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.shop-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: var(--navy-100);
  isolation: isolate;
  display: block;
}
.shop-tile--xl {
  grid-column: span 2;
  grid-row: span 2;
}
.shop-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--t);
}
.shop-tile:hover img { transform: scale(1.06); }
.shop-tile::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,19,58,0) 35%, rgba(14,19,58,.85));
  z-index: 1;
}
.shop-tile__body {
  position: absolute; inset: auto 0 0 0;
  padding: 24px;
  z-index: 2;
}
.shop-tile--xl .shop-tile__body { padding: 32px; }
.shop-tile__pill {
  display: inline-flex;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.shop-tile__pill--red { background: var(--red-500); }
.shop-tile h3 {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700; letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 6px;
}
.shop-tile--xl h3 { font-size: clamp(28px, 3.4vw, 44px); margin-bottom: 12px; }
.shop-tile p {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin: 0 0 12px;
  max-width: 40ch;
}
.shop-tile__cta {
  font-size: 13px; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px;
  display: inline-flex;
  transition: gap .3s var(--t), border-color .3s var(--t);
}
.shop-tile:hover .shop-tile__cta { border-color: var(--red-500); color: #fff; }

@media (max-width: 1100px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .shop-tile--xl { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 600px) {
  .shop-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .shop-tile--xl { grid-column: span 1; grid-row: span 2; }
}

/* ---------- Filter tabs ---------- */
.filter-tabs {
  display: flex; gap: 6px;
  margin: 0 0 32px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  background: var(--navy-50);
  color: var(--ink);
  border: 1.5px solid transparent;
  transition: all .25s var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.filter-tab:hover { border-color: var(--navy-800); }
.filter-tab.is-active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

.product-row--8 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
}
@media (max-width: 1100px) { .product-row--8 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .product-row--8 { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; } }

.product[data-cat]:not([data-show]) { /* default visible */ }
.product[data-hidden] { display: none; }

/* ---------- Features list ---------- */
.features-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid; gap: 12px;
}
.features-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,.9);
}
.features-list li svg { color: var(--red-500); flex-shrink: 0; }
.section:not(.section--dark) .features-list li { color: var(--ink); }

/* ---------- Quick grid (4 service cards) ---------- */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.quick-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  transition: border-color .25s var(--t), transform .35s var(--t), box-shadow .35s var(--t);
}
.quick-card:hover {
  border-color: var(--navy-800);
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.quick-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy-50);
  color: var(--navy-800);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .25s var(--t), color .25s var(--t);
}
.quick-card:hover .quick-card__icon { background: var(--red-500); color: #fff; }
.quick-card h3 {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 10px;
}
.quick-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 16px;
}

@media (max-width: 1100px) {
  .pillars { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .quick-grid { grid-template-columns: 1fr; }
}

/* ---------- Live conditions cards ---------- */
.live-cards {
  margin-top: -60px;
  position: relative;
  z-index: 5;
  padding: 0 var(--pad);
  max-width: var(--maxw);
  margin-left: auto; margin-right: auto;
}
.live-cards__grid {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.live-card {
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background .25s var(--t);
}
.live-card:last-child { border-right: 0; }
.live-card:hover { background: var(--navy-50); }
.live-card__top {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute);
}
.live-card__top .badge {
  background: var(--red-50); color: var(--red-500);
  padding: 3px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
}
.live-card__place {
  font-family: var(--f-display); font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.live-card__metrics {
  display: flex; align-items: baseline; gap: 16px;
  margin-top: 4px;
}
.live-card__snow {
  font-family: var(--f-display); font-size: 36px; font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-800);
}
.live-card__snow small { font-size: 14px; font-weight: 500; color: var(--ink-soft); margin-left: 2px; }
.live-card__sub { font-size: 12px; color: var(--ink-soft); }
.live-card__sub .arr-up { color: var(--success); font-weight: 600; }
.live-card__sub .arr-down { color: var(--red-500); font-weight: 600; }

/* ---------- Marquee brands ---------- */
.brand-strip {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #fff;
  overflow: hidden;
}
.brand-strip__track {
  display: flex; gap: 64px;
  width: max-content;
  animation: ticker 60s linear infinite;
}
.brand-strip__item {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 64px;
  opacity: .55;
  transition: opacity .25s var(--t), color .25s var(--t);
}
.brand-strip__item:hover { opacity: 1; color: var(--navy-800); }
.brand-strip__item::after {
  content: '×'; color: var(--red-500); font-weight: 400;
  opacity: .5;
}

/* ---------- Section heads ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.section-head__title h2 { max-width: 14ch; }
.section-head__intro p { font-size: 17px; color: var(--ink-soft); max-width: 50ch; margin: 0 0 16px; }

/* ---------- Categories grid ---------- */
.cats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.cat {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy-100);
  isolation: isolate;
  text-decoration: none;
  color: #fff;
}
.cat:nth-child(1) { grid-column: span 5; }
.cat:nth-child(2) { grid-column: span 7; aspect-ratio: 7/5; }
.cat:nth-child(3) { grid-column: span 4; }
.cat:nth-child(4) { grid-column: span 4; }
.cat:nth-child(5) { grid-column: span 4; }
.cat__media { position: absolute; inset: 0; }
.cat__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s var(--t);
}
.cat:hover .cat__media img { transform: scale(1.06); }
.cat::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,19,58,0) 35%, rgba(14,19,58,.85));
}
.cat__body {
  position: absolute; inset: auto 0 0 0;
  padding: clamp(20px, 2.4vw, 36px);
  z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
  gap: 20px;
}
.cat__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
}
.cat__count {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: 8px; display: block;
}
.cat__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s var(--t), transform .35s var(--t);
}
.cat:hover .cat__icon { background: var(--red-500); transform: rotate(-45deg); }

/* ---------- Product cards ---------- */
.product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}
.product {
  display: flex; flex-direction: column;
  position: relative;
  text-decoration: none; color: var(--ink);
}
.product__media {
  aspect-ratio: 3/4;
  background: var(--ice-50);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}
.product__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--t), opacity .4s var(--t);
}
.product__img--alt {
  position: absolute; inset: 0;
  opacity: 0;
}
.product:hover .product__img { transform: scale(1.04); }
.product:hover .product__img--alt { opacity: 1; }
.product__badges {
  position: absolute; top: 12px; left: 12px; right: 12px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 6px;
  z-index: 3;
}
.product__badges-left { display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center;
  padding: 5px 10px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
}
.badge--new { background: var(--navy-800); color: #fff; }
.badge--sale { background: var(--red-500); color: #fff; }
.badge--bestseller { background: var(--ink); color: #fff; }
.product__wishlist {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  transition: color .2s var(--t), background .2s var(--t);
  cursor: pointer;
}
.product__wishlist:hover { color: var(--red-500); background: #fff; }
.product__wishlist.is-active { color: var(--red-500); }
.product__quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  z-index: 3;
  background: #fff; color: var(--ink);
  padding: 12px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  text-align: center;
  display: flex; justify-content: center; align-items: center; gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s var(--t), transform .25s var(--t), background .25s var(--t), color .25s var(--t);
}
.product:hover .product__quick { opacity: 1; transform: translateY(0); }
.product__quick:hover { background: var(--navy-800); color: #fff; }
.product__brand { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; font-weight: 600; }
.product__name { font-family: var(--f-display); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 6px; }
.product__price { display: flex; align-items: baseline; gap: 8px; font-size: 14px; font-weight: 600; }
.product__price .now { color: var(--ink); }
.product__price .now--sale { color: var(--red-500); }
.product__price .was { color: var(--ink-mute); text-decoration: line-through; font-weight: 400; }
.product__swatches { display: flex; gap: 4px; margin-top: 8px; }
.product__swatches span {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid var(--rule);
}

/* ---------- Editorial split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media-overlay {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(14,19,58,.85);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.split__media-overlay div span { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; margin-bottom: 4px; }
.split__media-overlay div strong { font-family: var(--f-display); font-weight: 700; font-size: 20px; }
.split__body h2 { margin-bottom: 24px; }
.split__body > p { font-size: 17px; color: var(--ink-soft); max-width: 50ch; }

/* ---------- Process steps ---------- */
.steps { list-style: none; padding: 0; margin: 32px 0 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  transition: padding .3s var(--t);
}
.steps li:last-child { border-bottom: 1px solid var(--rule); }
.steps li::before {
  content: '0' counter(step);
  font-family: var(--f-display);
  font-size: 14px; font-weight: 700;
  color: var(--red-500);
  letter-spacing: .04em;
}
.steps li .lbl { font-weight: 600; color: var(--ink); }
.steps li .lbl small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 13px; margin-top: 2px; }
.steps li .price { font-family: var(--f-display); font-weight: 700; font-size: 18px; }

/* ---------- Skischool levels carousel ---------- */
.levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.level {
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transition: transform .35s var(--t), background .25s var(--t), border-color .25s var(--t), color .25s var(--t);
  cursor: pointer;
  min-height: 320px;
}
.level:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  transform: translateY(-4px);
}
.level__num {
  font-family: var(--f-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em;
  color: var(--red-500);
}
.level:hover .level__num { color: var(--red-400); }
.level__title {
  font-family: var(--f-display);
  font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
  line-height: 1; margin: 14px 0 8px;
  color: inherit;
}
.level__sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; }
.level:hover .level__sub { color: rgba(255,255,255,.75); }
.level__list { list-style: none; padding: 0; margin: 0 0 24px; font-size: 14px; }
.level__list li {
  padding: 6px 0;
  position: relative; padding-left: 18px;
}
.level__list li::before {
  content:''; position: absolute; left: 0; top: 13px;
  width: 8px; height: 1px; background: var(--ink-mute);
}
.level:hover .level__list li::before { background: rgba(255,255,255,.4); }
.level__price { margin-top: auto; display: flex; justify-content: space-between; align-items: baseline; }
.level__price strong {
  font-family: var(--f-display); font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
}
.level__price small { font-size: 11px; color: var(--ink-soft); letter-spacing: .12em; text-transform: uppercase; }
.level:hover .level__price small { color: rgba(255,255,255,.6); }

/* ---------- Testimonial ---------- */
.testimonial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.testimonial__quote {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #fff;
}
.testimonial__quote::before {
  content: '"';
  display: block;
  font-size: 96px; line-height: .5;
  color: var(--red-500);
  margin-bottom: 24px;
  font-weight: 700;
}
.testimonial__author {
  margin-top: 32px;
  display: flex; align-items: center; gap: 14px;
}
.testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-700);
  overflow: hidden;
}
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__name { color: #fff; font-weight: 600; }
.testimonial__meta { color: rgba(255,255,255,.55); font-size: 13px; margin-top: 2px; }
.testimonial__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.testimonial__stat .num {
  display: block;
  font-family: var(--f-display);
  font-size: 40px; font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.testimonial__stat .label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
}

/* ---------- Booking CTA ---------- */
.booking-cta {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px);
  background: var(--navy-800);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.booking-cta::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1551698618-1dfe5d97d256?auto=format&fit=crop&w=1600&q=80');
  background-size: cover; background-position: center;
  opacity: .12;
  filter: contrast(1.2);
}
.booking-cta > * { position: relative; z-index: 1; }
.booking-cta h2 { color: #fff; margin-bottom: 14px; }
.booking-cta p { color: rgba(255,255,255,.78); font-size: 16px; max-width: 50ch; }
.booking-cta__panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 24px;
}
.booking-cta__row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.booking-cta__field {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
}
.booking-cta__field label { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.booking-cta__field select, .booking-cta__field input {
  background: transparent; border: 0; outline: none;
  color: #fff; font-size: 14px; width: 100%;
  font-weight: 500;
}
.booking-cta__field select option { background: var(--navy-900); color: #fff; }

/* ---------- Destinations cards ---------- */
.dests {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dest {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none; color: #fff;
}
.dest img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--t); }
.dest:hover img { transform: scale(1.06); }
.dest::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.78));
}
.dest__body { position: absolute; inset: auto 0 0 0; padding: clamp(20px, 2vw, 32px); z-index: 2; }
.dest__country { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-bottom: 10px; }
.dest__name { font-family: var(--f-display); font-size: clamp(28px, 2.6vw, 38px); font-weight: 700; letter-spacing: -0.025em; color: #fff; line-height: .95; margin-bottom: 6px; }
.dest__meta { font-size: 13px; color: rgba(255,255,255,.78); margin-bottom: 16px; }
.dest__bottom { display: flex; justify-content: space-between; align-items: end; }
.dest__price { font-family: var(--f-display); font-size: 24px; font-weight: 700; }
.dest__price small { font-family: var(--f-body); font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-left: 4px; }
.dest__cta {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s var(--t), transform .35s var(--t);
}
.dest:hover .dest__cta { background: var(--red-500); transform: rotate(-45deg); }

/* ---------- USP / values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: border-color .25s var(--t), transform .35s var(--t);
}
.value:hover { border-color: var(--navy-800); transform: translateY(-4px); }
.value__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy-50);
  color: var(--navy-800);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .25s var(--t), color .25s var(--t);
}
.value:hover .value__icon { background: var(--red-500); color: #fff; }
.value h4 { margin-bottom: 8px; }
.value p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- Journal cards ---------- */
.journal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.j-card { display: flex; flex-direction: column; gap: 16px; text-decoration: none; color: var(--ink); }
.j-card__img { aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden; background: var(--ice-50); }
.j-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--t); }
.j-card:hover .j-card__img img { transform: scale(1.04); }
.j-card__meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.j-card__meta span { color: var(--red-500); margin-right: 8px; }
.j-card h3 { font-size: 22px; max-width: 26ch; }
.j-card:hover h3 { color: var(--navy-800); }

/* ---------- Newsletter ---------- */
.signup {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.signup::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(900px circle at 100% 100%, rgba(230,0,0,.2), transparent 50%),
              radial-gradient(700px circle at 0% 0%, rgba(10,141,233,.12), transparent 50%);
  pointer-events: none;
}
.signup > * { position: relative; z-index: 1; }
.signup h2 { color: #fff; margin-bottom: 16px; }
.signup p { color: rgba(255,255,255,.75); margin: 0; }
.signup__form { display: flex; flex-direction: column; gap: 12px; }
.signup__field {
  display: flex; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
}
.signup__field input {
  flex: 1; background: transparent; border: 0; outline: none;
  color: #fff; font-size: 15px;
}
.signup__field input::placeholder { color: rgba(255,255,255,.5); }
.signup__field button {
  background: var(--red-500); color: #fff;
  padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: 14px;
  transition: background .25s var(--t), transform .25s var(--t);
}
.signup__field button:hover { background: var(--red-600); transform: translateX(2px); }
.signup__check {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.6);
}
.signup__check input { accent-color: var(--red-500); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,.78);
  font-size: 14px;
}
.site-footer__top {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--pad) 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 56px;
}
.footer-col h4 {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.78); transition: color .2s var(--t); }
.footer-col a:hover { color: #fff; }
.footer-tagline { color: rgba(255,255,255,.6); max-width: 36ch; margin: 16px 0 24px; }
.brand--footer .brand__mark { background: rgba(255,255,255,.08); }
.brand--footer:hover .brand__mark { background: var(--red-500); }
address { font-style: normal; line-height: 1.8; color: rgba(255,255,255,.78); }
address a { color: #fff; }
.socials { display: flex; gap: 8px; margin: 28px 0 0; padding: 0; list-style: none; clear: both; }
.footer-cert { margin-bottom: 4px; }
.socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: rgba(255,255,255,.78);
  transition: all .2s var(--t);
}
.socials a:hover { background: var(--red-500); color: #fff; border-color: var(--red-500); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px var(--pad);
}
.footer-bottom-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.45);
}
.payments { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.payments span {
  border: 1px solid rgba(255,255,255,.15);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px; letter-spacing: .06em;
  color: rgba(255,255,255,.6);
}
.footer-cert {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 12px 16px;
  border-radius: 10px;
  margin: 24px 0 28px;
}
.footer-cert img { width: 40px; height: 40px; border-radius: 50%; }
.footer-cert div { font-size: 12px; line-height: 1.4; }
.footer-cert strong { color: #fff; display: block; font-size: 13px; }

/* ---------- Page hero ---------- */
.page-hero {
  background: var(--navy-50);
  padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--rule);
}
.page-hero__crumbs {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 28px;
}
.page-hero__crumbs a { color: var(--ink-soft); }
.page-hero__crumbs a:hover { color: var(--navy-800); }
.page-hero__crumbs .sep { margin: 0 10px; opacity: .4; }
.page-hero__title { max-width: 18ch; }
.page-hero__intro {
  margin-top: 20px;
  max-width: 60ch;
  font-size: 17px;
  color: var(--ink-soft);
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 20px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  display: block;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px; color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  transition: border-color .25s var(--t), box-shadow .25s var(--t);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-800);
  box-shadow: 0 0 0 4px rgba(26,33,85,.08);
}
.field textarea { resize: vertical; min-height: 140px; }

.filterbar {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--rule);
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  color: var(--ink);
  transition: all .25s var(--t);
  cursor: pointer;
}
.chip:hover { border-color: var(--navy-800); }
.chip.is-active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-tile {
  border: 1px solid var(--rule);
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
}
.info-tile h4 { font-family: var(--f-body); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px; font-weight: 700; }
.info-tile p { margin: 0 0 6px; }
.info-tile a:hover { color: var(--red-500); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__q {
  width: 100%; text-align: left;
  padding: 28px 0;
  font-family: var(--f-display); font-size: 22px; font-weight: 600; letter-spacing: -0.015em;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  color: var(--ink);
}
.faq__q .plus {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
  transition: all .25s var(--t);
}
.faq__q .plus::before, .faq__q .plus::after {
  content:''; position: absolute; background: var(--ink);
}
.faq__q .plus::before { width: 12px; height: 1.5px; }
.faq__q .plus::after  { width: 1.5px; height: 12px; transition: transform .3s var(--t); }
.faq__item.is-open .plus { background: var(--navy-800); border-color: var(--navy-800); }
.faq__item.is-open .plus::before, .faq__item.is-open .plus::after { background: #fff; }
.faq__item.is-open .plus::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--t); }
.faq__a-inner { padding: 0 0 28px; max-width: 60ch; color: var(--ink-soft); font-size: 15px; }
.faq__item.is-open .faq__a { max-height: 500px; }

/* ---------- Cart drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(14,19,58,.5);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--t);
  z-index: 200;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: #fff;
  z-index: 210;
  transform: translateX(100%);
  transition: transform .45s var(--t);
  display: flex; flex-direction: column;
  box-shadow: var(--sh-xl);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--rule);
}
.drawer__title { font-family: var(--f-display); font-size: 22px; font-weight: 700; }
.drawer__close {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.drawer__close:hover { background: var(--navy-50); }
.drawer__body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.drawer__empty { text-align: center; color: var(--ink-soft); padding: 64px 0; }
.drawer__empty svg { margin: 0 auto 16px; opacity: .4; }
.drawer__foot {
  padding: 24px 28px;
  border-top: 1px solid var(--rule);
  background: var(--paper-soft);
}
.drawer__total { display: flex; justify-content: space-between; margin-bottom: 16px; font-family: var(--f-display); font-size: 18px; font-weight: 600; }

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(14,19,58,.97);
  backdrop-filter: blur(20px);
  z-index: 220;
  display: none;
  flex-direction: column;
  color: #fff;
}
.search-overlay.is-open { display: flex; }
.search-overlay__head {
  padding: 28px var(--pad);
  display: flex; justify-content: space-between; align-items: center;
}
.search-overlay__close {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.search-overlay__form {
  max-width: 800px; margin: 4vh auto 0;
  width: 90%;
  border-bottom: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 18px;
}
.search-overlay__form input {
  flex: 1;
  background: transparent; border: 0; outline: none;
  color: #fff;
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 56px); font-weight: 600;
  letter-spacing: -0.02em;
}
.search-overlay__form input::placeholder { color: rgba(255,255,255,.3); }
.search-overlay__suggestions {
  max-width: 800px; width: 90%; margin: 32px auto 0;
}
.search-overlay__suggestions h5 {
  font-family: var(--f-body); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.search-overlay__suggestions ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.search-overlay__suggestions a {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  transition: all .25s var(--t);
}
.search-overlay__suggestions a:hover { background: var(--red-500); border-color: var(--red-500); color: #fff; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy-950); color: #fff;
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 28px var(--pad);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu__close {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 24px;
}
.mobile-menu nav { margin-top: 32px; flex: 1; overflow-y: auto; }
.mobile-menu nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu nav a {
  display: block;
  padding: 18px 0;
  font-family: var(--f-display);
  font-size: 36px; font-weight: 700; letter-spacing: -0.025em;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.mobile-menu__cta { padding-top: 28px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--t), transform .9s var(--t); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- Modal (booking) ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(14,19,58,.5);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--t);
  z-index: 230;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%; max-width: 720px;
  max-height: 92vh; overflow-y: auto;
  transform: translateY(20px) scale(.98);
  transition: transform .35s var(--t);
  position: relative;
}
.modal-backdrop.is-open .modal { transform: translateY(0) scale(1); }
.modal__head {
  padding: 28px 32px 16px;
  display: flex; justify-content: space-between; align-items: start;
  gap: 16px;
}
.modal__title h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.modal__title p { font-size: 14px; color: var(--ink-soft); margin: 6px 0 0; }
.modal__close { width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal__close:hover { background: var(--navy-50); }
.modal__body { padding: 8px 32px 28px; }
.modal__step { display: none; }
.modal__step.is-active { display: block; }
.modal__steps {
  display: flex; gap: 6px;
  margin: 0 32px 20px;
}
.modal__steps span {
  flex: 1; height: 4px;
  background: var(--navy-100);
  border-radius: 4px;
  transition: background .25s var(--t);
}
.modal__steps span.is-done { background: var(--navy-800); }
.modal__steps span.is-current { background: var(--red-500); }
.modal__foot {
  padding: 20px 32px;
  display: flex; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--rule);
  background: var(--paper-soft);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}
.modal__service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.modal__service {
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all .2s var(--t);
}
.modal__service:hover { border-color: var(--navy-800); }
.modal__service.is-selected { border-color: var(--navy-800); background: var(--navy-50); }
.modal__service strong { display: block; font-weight: 600; margin-bottom: 4px; }
.modal__service span { font-size: 13px; color: var(--ink-soft); }

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}
.calendar__head {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
  margin-bottom: 8px;
}
.calendar__head span {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mute); text-align: center;
  font-weight: 600;
}
.calendar button {
  aspect-ratio: 1;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  background: var(--paper-soft);
  border: 1.5px solid transparent;
  transition: all .2s var(--t);
}
.calendar button:hover:not(:disabled) { border-color: var(--navy-800); }
.calendar button:disabled { color: var(--ink-mute); cursor: not-allowed; opacity: .4; }
.calendar button.is-selected { background: var(--navy-800); color: #fff; }
.calendar button.is-today { color: var(--red-500); font-weight: 700; }

.calendar-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.calendar-nav strong { font-family: var(--f-display); font-size: 18px; font-weight: 600; }
.calendar-nav button {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.calendar-nav button:hover { background: var(--navy-50); }

.timeslots {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.timeslot {
  padding: 12px 8px;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .2s var(--t);
}
.timeslot:hover { border-color: var(--navy-800); }
.timeslot.is-selected { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.timeslot:disabled { opacity: .35; cursor: not-allowed; }

/* ---------- Openingstijden page ---------- */
.status-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 999px;
  font-size: 14px;
  margin-top: 28px;
  box-shadow: var(--sh-sm);
}
.status-badge__dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.status-badge--open { border-color: #22c55e; }
.status-badge--open .status-badge__dot {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse-green 2.4s infinite;
}
.status-badge--closed { border-color: var(--red-500); }
.status-badge--closed .status-badge__dot { background: var(--red-500); }
.status-badge--special { border-color: var(--warn); }
.status-badge--special .status-badge__dot { background: var(--warn); }

.hours-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) { .hours-grid { grid-template-columns: 1fr; } }

.hours-block {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.hours-block__head { margin-bottom: 24px; }
.hours-block__head h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 12px 0 12px;
}
.hours-block__head p { color: var(--ink-soft); font-size: 14px; max-width: 50ch; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list li.is-today {
  background: var(--navy-50);
  border-color: transparent;
  margin-bottom: 4px;
}
.hours-list li .day { color: var(--ink); font-weight: 500; }
.hours-list li .day em {
  font-style: normal;
  background: var(--red-500); color: #fff;
  font-size: 9px; font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .08em; text-transform: uppercase;
  margin-left: 8px;
}
.hours-list li.is-today .day { font-weight: 700; color: var(--navy-800); }
.hours-list li .time {
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.hours-list li .time .dash { color: var(--ink-mute); font-weight: 400; }
.hours-list li .closed-text { color: var(--ink-mute); }
.hours-list li .tag {
  font-size: 9px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
  letter-spacing: .08em; text-transform: uppercase;
  margin-left: 4px;
}
.hours-list li .tag--red { background: var(--red-500); color: #fff; }
.hours-list--big li {
  padding: 18px 18px;
  font-size: 16px;
}
.hours-list--big li.is-today .time { color: var(--navy-800); font-weight: 700; }

/* Bijzondere dagen grid */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 700px) { .specials-grid { grid-template-columns: 1fr; } }

.special-card {
  display: flex; align-items: stretch;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--t), transform .35s var(--t);
}
.special-card:hover {
  border-color: var(--navy-800);
  transform: translateY(-2px);
}
.special-card__date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 22px;
  background: var(--navy-50);
  border-right: 1px solid var(--rule);
  min-width: 96px;
}
.special-card__date strong {
  font-family: var(--f-display);
  font-size: 30px; font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.special-card__date span {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 600;
}
.special-card__body {
  padding: 18px 22px;
  flex: 1;
}
.special-card__body h4 {
  font-family: var(--f-display);
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  text-transform: none;
  color: var(--ink);
}
.special-card__body p { font-size: 13px; color: var(--ink-soft); margin: 0; }

.special-card.is-closed { border-left: 3px solid var(--red-500); }
.special-card.is-closed .special-card__body p { color: var(--red-500); font-weight: 600; }
.special-card.is-open { border-left: 3px solid var(--warn); }

/* ---------- Hours widget (floating, side panel) ---------- */
.hours-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  font-family: var(--f-body);
}

.hours-widget__tab {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 12px 18px 12px 16px;
  box-shadow: 0 12px 32px rgba(14,19,58,.12), 0 4px 12px rgba(14,19,58,.06);
  cursor: pointer;
  transition: transform .25s var(--t), box-shadow .25s var(--t), background .25s var(--t);
  min-width: 240px;
  text-align: left;
}
.hours-widget__tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(14,19,58,.16);
}
.hours-widget.is-open .hours-widget__tab {
  background: var(--navy-50);
}
.hours-widget__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink-mute);
  flex-shrink: 0;
  position: relative;
}
.hours-widget[data-status="open"] .hours-widget__dot {
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse-green 2.4s infinite;
}
.hours-widget[data-status="closed"] .hours-widget__dot { background: var(--red-500); }
.hours-widget[data-status="special"] .hours-widget__dot { background: var(--warn); }
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hours-widget__tab-text {
  display: flex; flex-direction: column;
  flex: 1;
  line-height: 1.2;
}
.hours-widget__tab-text strong {
  font-size: 13px; font-weight: 700;
  color: var(--ink);
}
.hours-widget__tab-text small {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.hours-widget__chev {
  color: var(--ink-mute);
  flex-shrink: 0;
  transition: transform .25s var(--t);
}
.hours-widget.is-open .hours-widget__chev { transform: rotate(180deg); }

.hours-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: 340px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(14,19,58,.18), 0 8px 24px rgba(14,19,58,.08);
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(.98);
  transform-origin: bottom right;
  transition: opacity .3s var(--t), transform .35s var(--t), visibility .3s;
}
.hours-widget.is-open .hours-widget__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.hours-widget__chev {
  transform: rotate(90deg);
}
.hours-widget.is-open .hours-widget__chev {
  transform: rotate(-90deg);
}

.hours-widget__panel-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 16px;
}
.hours-widget__status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  color: var(--ink);
}
.hours-widget__sub {
  font-size: 12px; color: var(--ink-soft);
  margin: 4px 0 0;
}
.hours-widget__close {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: background .2s;
}
.hours-widget__close:hover { background: var(--navy-50); color: var(--ink); }

.hours-widget__week {
  list-style: none; padding: 0; margin: 0;
}
.hours-widget__week li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 10px;
  font-size: 13px;
  border-radius: 8px;
}
.hours-widget__week li.is-today {
  background: var(--navy-50);
  font-weight: 600;
}
.hours-widget__week li.is-today span:last-child {
  color: var(--navy-800);
  font-weight: 700;
}
.hours-widget__week li.is-closed span:last-child {
  color: var(--ink-mute);
}
.hours-widget__week li span:first-child {
  color: var(--ink);
}
.hours-widget__week li span:last-child {
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.hours-widget__week em {
  font-style: normal;
  background: var(--red-500); color: #fff;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: .08em; text-transform: uppercase;
  margin-left: 4px;
  font-weight: 700;
}

.hours-widget__specials {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.hours-widget__specials h5 {
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 10px;
}
.hours-widget__specials ul {
  list-style: none; padding: 0; margin: 0;
}
.hours-widget__specials li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 10px; align-items: baseline;
  padding: 6px 0;
  font-size: 12px;
}
.hours-widget__special-date {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
}
.hours-widget__special-label { color: var(--ink); }
.hours-widget__special-detail { color: var(--red-500); font-weight: 600; font-size: 11px; }

.hours-widget__foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
}
.hours-widget__call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-800);
  color: #fff;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  transition: background .2s;
}
.hours-widget__call:hover { background: var(--red-500); }
.hours-widget__more {
  font-size: 12px; font-weight: 600;
  color: var(--navy-800);
  text-align: center;
}
.hours-widget__more:hover { color: var(--red-500); }

@media (max-width: 600px) {
  .hours-widget { right: 16px; bottom: 16px; }
  .hours-widget__tab { min-width: 0; padding: 12px 16px; }
  .hours-widget__tab-text small { display: none; }
  .hours-widget__panel {
    width: calc(100vw - 32px);
    max-width: 360px;
  }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-900); color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: all .35s var(--t);
  z-index: 250;
  box-shadow: var(--sh-lg);
  display: inline-flex; align-items: center; gap: 10px;
}
.toast.is-shown { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .check {
  width: 20px; height: 20px;
  background: var(--success); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .live-cards__grid { grid-template-columns: repeat(2, 1fr); }
  .live-card { border-bottom: 1px solid var(--rule); }
  .live-card:nth-child(2) { border-right: 0; }
  .live-card:nth-child(3), .live-card:nth-child(4) { border-bottom: 0; }
  .cats { grid-template-columns: repeat(6, 1fr); }
  .cat:nth-child(n) { grid-column: span 6; aspect-ratio: 4/3; }
  .product-row { grid-template-columns: repeat(3, 1fr); }
  .levels { grid-template-columns: 1fr 1fr; }
  .dests { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .journal { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .testimonial { grid-template-columns: 1fr; }
  .booking-cta { grid-template-columns: 1fr; }
  .signup { grid-template-columns: 1fr; }
  .hero__bottom-row { grid-template-columns: 1fr; gap: 24px; }
  .hero__metrics { flex-wrap: wrap; gap: 28px 36px; }
  .hero__scroll { display: none; }
}
@media (max-width: 760px) {
  .conditions__inner { grid-template-columns: 1fr; gap: 8px; }
  .conditions__updated { display: none; }
  .product-row { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .levels, .dests, .values, .journal, .footer-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .booking-cta__row, .modal__service-list { grid-template-columns: 1fr; }
  .timeslots { grid-template-columns: repeat(3, 1fr); }
  .header-actions .btn { display: none; }
}

/* ---------- Events grid (homepage agenda) ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.event-card {
  display: flex; align-items: stretch;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--t), transform .35s var(--t), box-shadow .25s var(--t);
}
.event-card:hover {
  border-color: var(--navy-800);
  transform: translateY(-3px);
  box-shadow: var(--sh);
}
.event-card__date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px 24px;
  background: var(--navy-50);
  border-right: 1px solid var(--rule);
  min-width: 92px;
}
.event-card__date strong {
  font-family: var(--f-display);
  font-size: 32px; font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.event-card__date span {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
  font-weight: 600;
}
.event-card__body {
  padding: 18px 22px;
  flex: 1;
}
.event-card__tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper-warm);
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.event-card__tag--red { background: var(--red-500); color: #fff; }
.event-card__body h4 {
  font-family: var(--f-display);
  font-size: 17px; font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--ink);
  text-transform: none;
}
.event-card__body p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.event-card--highlight {
  background: var(--navy-800);
  border-color: var(--navy-800);
}
.event-card--highlight .event-card__date {
  background: var(--navy-900);
  border-right-color: rgba(255,255,255,.1);
}
.event-card--highlight .event-card__date strong { color: #fff; }
.event-card--highlight .event-card__date span { color: rgba(255,255,255,.5); }
.event-card--highlight h4 { color: #fff; }
.event-card--highlight p { color: rgba(255,255,255,.7); }
.event-card--highlight .link-arrow { color: #fff; border-color: rgba(255,255,255,.5); }
.event-card--highlight .link-arrow:hover { border-color: var(--red-500); color: var(--red-400); }

@media (max-width: 1100px) { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .events-grid { grid-template-columns: 1fr; } }

/* ---------- Package cards (onderhoud pakketten) ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.package-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column;
  transition: border-color .25s var(--t), transform .35s var(--t), box-shadow .25s var(--t);
}
.package-card:hover {
  border-color: var(--navy-800);
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.package-card--featured {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: #fff;
}
.package-card--featured h3,
.package-card--featured .package-card__price strong { color: #fff; }
.package-card--featured p { color: rgba(255,255,255,.78); }
.package-card--featured li { color: rgba(255,255,255,.85); }
.package-card--featured .package-card__num { color: var(--red-400); }
.package-card__badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--red-500); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.package-card__head { margin-bottom: 20px; }
.package-card__num {
  font-family: var(--f-display);
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  color: var(--red-500);
  display: block;
  margin-bottom: 10px;
}
.package-card__head h3 {
  font-family: var(--f-display);
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1;
  margin-bottom: 10px;
  color: var(--ink);
}
.package-card__head p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}
.package-card__list {
  list-style: none; padding: 0; margin: 0 0 24px;
  flex: 1;
}
.package-card__list li {
  padding: 7px 0;
  font-size: 14px;
  position: relative; padding-left: 22px;
  color: var(--ink);
}
.package-card__list li::before {
  content: '';
  position: absolute; left: 0; top: 13px;
  width: 12px; height: 1.5px;
  background: var(--ink-mute);
}
.package-card--featured .package-card__list li::before { background: rgba(255,255,255,.4); }
.package-card__price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.package-card--featured .package-card__price { border-top-color: rgba(255,255,255,.15); }
.package-card__price strong {
  font-family: var(--f-display);
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .package-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .package-grid { grid-template-columns: 1fr; }
}

/* ---------- Services table (losse tarieven) ---------- */
.services-table {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.services-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.services-table tr {
  border-bottom: 1px solid var(--rule);
  transition: background .15s var(--t);
}
.services-table tr:hover { background: var(--paper-soft); }
.services-table tr:last-child { border-bottom: 0; }
.services-table td {
  padding: 16px 24px;
  color: var(--ink);
}
.services-table td.price {
  text-align: right;
  font-family: var(--f-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

/* ---------- Team grid (skischool) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color .25s var(--t), transform .35s var(--t);
}
.team-card:hover {
  border-color: var(--navy-800);
  transform: translateY(-2px);
}
.team-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.team-card:hover .team-card__avatar { background: var(--red-500); }
.team-card__name {
  font-family: var(--f-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.team-card__role {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.3;
}

@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Contact page ---------- */
.contact-hero {
  position: relative;
  min-height: clamp(420px, 60vh, 620px);
  background: var(--navy-950);
  color: #fff;
  overflow: hidden;
  display: flex; align-items: flex-end;
  isolation: isolate;
}
.contact-hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.contact-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
.contact-hero::after {
  content:''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,19,58,.4) 0%, rgba(14,19,58,.2) 35%, rgba(14,19,58,.92) 100%),
    linear-gradient(90deg, rgba(14,19,58,.6) 0%, rgba(14,19,58,0) 70%);
}
.contact-hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  width: 100%;
  padding: clamp(40px, 6vw, 88px) var(--pad);
}
.contact-hero__content { max-width: 780px; }
.contact-hero__crumbs {
  display: inline-block;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  font-weight: 600;
}
.contact-hero__crumbs a { color: rgba(255,255,255,.6); }
.contact-hero__crumbs a:hover { color: #fff; }
.contact-hero__crumbs .sep { margin: 0 10px; opacity: .4; }

.contact-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  color: #fff;
  letter-spacing: -0.04em;
  line-height: .95;
  margin-bottom: 20px;
}
.contact-hero h1 .italic {
  font-style: italic;
  background: linear-gradient(135deg, #fff 30%, var(--red-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  max-width: 56ch;
  margin: 0 0 36px;
}
.contact-hero__quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 920px;
}
.contact-hero__quick-card {
  display: flex; align-items: center; gap: 14px;
  text-align: left;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 18px 20px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s var(--t);
}
.contact-hero__quick-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--red-500);
  transform: translateY(-2px);
}
.contact-hero__quick-card svg { color: var(--red-500); flex-shrink: 0; }
.contact-hero__quick-card div { display: flex; flex-direction: column; gap: 2px; }
.contact-hero__quick-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 600; }
.contact-hero__quick-card strong { font-size: 14px; font-weight: 600; color: #fff; }
@media (max-width: 900px) {
  .contact-hero__quick { grid-template-columns: 1fr; }
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1100px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--sh-sm);
}
.contact-form-card__head { margin-bottom: 32px; }
.contact-form-card__head h2 { font-size: clamp(28px, 3vw, 40px); margin: 12px 0 12px; }
.contact-form-card__head p { color: var(--ink-soft); margin: 0; }

.form-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-foot small { color: var(--ink-mute); font-size: 12px; max-width: 30ch; }

.contact-success {
  text-align: center; padding: 32px 0;
}
.contact-success__icon {
  width: 64px; height: 64px;
  background: var(--success); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.contact-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.contact-success p { color: var(--ink-soft); }

.contact-errors {
  background: var(--red-50);
  border: 1px solid rgba(230,0,0,.2);
  color: var(--red-600);
  padding: 16px 20px; border-radius: 12px;
  margin-bottom: 24px;
}
.contact-errors strong { display: block; margin-bottom: 6px; }
.contact-errors ul { margin: 0; padding-left: 20px; font-size: 14px; }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-card h3 {
  font-family: var(--f-display);
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 12px 0 12px;
}
.contact-card h4 {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.contact-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 18px; }
.contact-card--dark {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}
.contact-card--dark h3 { color: #fff; }
.contact-card--dark p { color: rgba(255,255,255,.7); }
.contact-card--accent {
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  border-color: transparent;
  color: #fff;
}
.contact-card--accent h4, .contact-card--accent p { color: rgba(255,255,255,.9); }
.contact-card--accent .link-arrow { color: #fff; border-color: rgba(255,255,255,.5); }
.contact-card--accent .link-arrow:hover { color: #fff; border-color: #fff; }
.contact-card__icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.18);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 18px;
}

.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--rule);
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { color: var(--ink); font-weight: 500; }
.hours li span:last-child { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours--highlight span:first-child { color: var(--navy-800); font-weight: 700; }
.hours--highlight span:last-child { color: var(--red-500); font-weight: 700; }

/* Map */
.map-block {
  max-width: var(--maxw); margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--rule);
}

/* Departments */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dept-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: border-color .25s var(--t), transform .35s var(--t), box-shadow .25s var(--t);
}
.dept-card:hover {
  border-color: var(--navy-800);
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.dept-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--navy-50);
  color: var(--navy-800);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.dept-card:hover .dept-card__icon { background: var(--red-500); color: #fff; }
.dept-card h4 {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 8px;
  color: var(--ink);
  text-transform: none;
}
.dept-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 18px; }
.dept-card__link {
  font-size: 13px; font-weight: 600; color: var(--navy-800);
  margin-bottom: 6px;
  display: block;
}
.dept-card__link:hover { color: var(--red-500); }
.dept-card__phone {
  font-size: 13px; color: var(--ink-soft);
  display: block;
}
.dept-card__phone span {
  font-size: 11px; color: var(--ink-mute); margin-left: 6px;
  letter-spacing: .08em; text-transform: uppercase;
}

@media (max-width: 1100px) {
  .dept-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .dept-grid { grid-template-columns: 1fr; }
}

/* ---------- Shop page ---------- */
.shop-hero { padding-bottom: clamp(40px, 5vw, 64px); }
.shop-hero__stats {
  display: flex; gap: clamp(24px, 4vw, 56px);
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.shop-hero__stats div { display: flex; flex-direction: column; gap: 2px; }
.shop-hero__stats strong {
  font-family: var(--f-display);
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink);
}
.shop-hero__stats span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }

.shop-layout { padding: 48px 0 96px; }

.shop-grid-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}

.shop-sidebar {
  position: sticky; top: 92px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
}
.shop-sidebar__head { display: none; }

.filter-block {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 22px;
}
.filter-block:last-child { border-bottom: 0; }
.filter-block h5 {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list > li { padding: 0; margin-bottom: 4px; }
.filter-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 12px; border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  transition: background .15s var(--t), color .15s var(--t);
}
.filter-list a:hover { background: var(--navy-50); }
.filter-list a.is-active { background: var(--navy-800); color: #fff; font-weight: 600; }
.filter-list a .count { font-size: 11px; color: var(--ink-mute); font-weight: 500; }
.filter-list a.is-active .count { color: rgba(255,255,255,.6); }

.filter-list__group details { padding: 0 12px; }
.filter-list__group summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 0;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.filter-list__group summary::-webkit-details-marker { display: none; }
.filter-list__group summary::after {
  content: '+';
  font-size: 18px; font-weight: 400;
  transition: transform .25s var(--t);
}
.filter-list__group details[open] summary::after { content: '−'; }
.filter-list__group ul { list-style: none; padding: 0 0 8px 0; margin: 0; }
.filter-list__group ul a {
  font-size: 13px;
  padding: 5px 0 5px 0;
  color: var(--ink-soft);
  border-radius: 0;
  background: transparent;
}
.filter-list__group ul a:hover { color: var(--red-500); background: transparent; }
.filter-list__group ul a.is-active { color: var(--red-500); background: transparent; font-weight: 700; }

.filter-checks { list-style: none; padding: 0; margin: 0; }
.filter-checks li { margin-bottom: 8px; }
.filter-checks label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 0;
}
.filter-checks input[type=checkbox] {
  width: 16px; height: 16px;
  accent-color: var(--navy-800);
  cursor: pointer;
}
.filter-more {
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  margin-top: 6px;
}
.filter-more:hover { color: var(--red-500); }

.price-range { padding: 8px 4px 0; }
.price-range__bar {
  height: 4px; background: var(--rule);
  border-radius: 4px;
  position: relative;
  margin-bottom: 12px;
}
.price-range__bar span {
  position: absolute; top: 0;
  height: 100%;
  background: var(--navy-800);
  border-radius: 4px;
}
.price-range__bar::before, .price-range__bar::after {
  content:''; width: 14px; height: 14px;
  background: #fff;
  border: 2px solid var(--navy-800);
  border-radius: 50%;
  position: absolute; top: -5px;
}
.price-range__bar::before { left: 8%; }
.price-range__bar::after { left: calc(70% - 14px); }
.price-range__inputs {
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}

.filter-trigger {
  display: none;
  align-items: center; gap: 8px;
  padding: 12px 18px;
  background: var(--navy-800); color: #fff;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  margin-bottom: 24px;
  cursor: pointer;
}

.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.shop-toolbar__count { font-size: 14px; color: var(--ink-soft); }
.shop-toolbar__count strong { color: var(--ink); font-weight: 700; font-family: var(--f-display); }
.shop-toolbar__right { display: flex; align-items: center; gap: 12px; }
.shop-sort {
  padding: 10px 36px 10px 16px;
  border: 1.5px solid var(--rule);
  border-radius: 999px;
  background: #fff url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231a2155' stroke-width='2.4'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 14px center/10px no-repeat;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s var(--t);
}
.shop-sort:hover { border-color: var(--navy-800); }

.view-toggle {
  display: flex;
  background: var(--navy-50);
  border-radius: 999px;
  padding: 3px;
}
.view-toggle button {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: all .2s var(--t);
}
.view-toggle button.is-active { background: #fff; color: var(--navy-800); box-shadow: var(--sh-sm); }

.shop-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 20px;
}
.shop-products .product { display: block; }

.pagination {
  display: flex; justify-content: center; align-items: center; gap: 6px;
  margin-top: 56px;
}
.pagination__btn,
.pagination__page {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--rule);
  cursor: pointer;
  transition: all .2s var(--t);
}
.pagination__btn:hover, .pagination__page:hover { border-color: var(--navy-800); }
.pagination__page.is-active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.pagination__btn:disabled { opacity: .35; cursor: not-allowed; border-color: var(--rule); }
.pagination__dots { color: var(--ink-mute); padding: 0 6px; }

@media (max-width: 1100px) {
  .shop-grid-layout { grid-template-columns: 1fr; }
  .filter-trigger { display: inline-flex; }
  .shop-sidebar {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: min(360px, 88vw);
    background: #fff;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform .35s var(--t);
    padding: 24px 24px 80px;
    max-height: 100vh;
    box-shadow: var(--sh-xl);
  }
  .shop-sidebar.is-open { transform: translateX(0); }
  .shop-sidebar__head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 20px;
  }
  .shop-sidebar__head strong { font-family: var(--f-display); font-size: 22px; font-weight: 700; }
  .shop-sidebar__close {
    width: 36px; height: 36px;
    background: var(--navy-50);
    border-radius: 10px;
    font-size: 22px;
  }
  .shop-products { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
}
@media (max-width: 600px) {
  .shop-products { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
}

/* ---------- Legacy / subpage compatibility ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat-grid .cat { aspect-ratio: 3/4; }
.cat__label {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.cat__label .count { color: var(--ink-mute); font-size: 12px; font-weight: 500; }

.split__list { list-style: none; padding: 0; margin: 28px 0 0; }
.split__list li {
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 36px 1fr auto;
  gap: 20px; align-items: center;
}
.split__list li:last-child { border-bottom: 1px solid var(--rule); }
.split__list .num { font-family: var(--f-display); font-size: 13px; font-weight: 700; color: var(--red-500); }
.split__list .lbl { font-weight: 500; }
.split__list .price { font-family: var(--f-display); font-size: 18px; font-weight: 700; }

.products {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 36px 24px; padding: 56px 0;
}
.products .product__img {
  aspect-ratio: 3/4; background: var(--ice-50);
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: 14px; position: relative;
}
.products .product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--t); }
.products .product:hover .product__img img { transform: scale(1.04); }
.products .product__badge {
  position: absolute; top: 12px; left: 12px;
  background: #fff; color: var(--ink);
  padding: 5px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  z-index: 2;
}
.products .product__badge--sale { background: var(--red-500); color: #fff; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { display: flex; flex-direction: column; gap: 14px; text-decoration: none; color: var(--ink); }
.news-card__img { aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden; background: var(--ice-50); }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--t); }
.news-card:hover .news-card__img img { transform: scale(1.04); }
.news-card__meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.news-card h3 { font-size: 22px; max-width: 26ch; }

.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dest__country { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-bottom: 8px; }
.dest__name { font-family: var(--f-display); font-size: 30px; font-weight: 700; letter-spacing: -0.025em; line-height: .95; margin-bottom: 6px; color: #fff; }

.services {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px;
}
.service {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; background: var(--navy-100); color: #fff; isolation: isolate;
  text-decoration: none;
}
.service:nth-child(1) { grid-column: span 5; }
.service:nth-child(2) { grid-column: span 7; aspect-ratio: 7/5; }
.service:nth-child(3), .service:nth-child(4), .service:nth-child(5) { grid-column: span 4; }
.service img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--t); }
.service:hover img { transform: scale(1.06); }
.service::after { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(14,19,58,.85)); z-index: 1; }
.service__body { position: absolute; inset: auto 0 0 0; padding: 28px; z-index: 2; display: flex; flex-direction: column; gap: 8px; }
.service__num { font-family: var(--f-display); font-size: 12px; font-weight: 700; letter-spacing: .12em; color: rgba(255,255,255,.8); }
.service__title { font-family: var(--f-display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.service__desc { font-size: 14px; color: rgba(255,255,255,.85); max-width: 38ch; }
.service__more {
  margin-top: 6px; font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px; align-self: flex-start;
  transition: gap .3s var(--t);
}
.service:hover .service__more { gap: 14px; }

.cta-banner {
  position: relative; padding: clamp(72px, 10vw, 140px) 0;
  background: var(--navy-900); color: #fff; overflow: hidden;
}
.cta-banner__bg { position: absolute; inset: 0; opacity: .25; background-size: cover; background-position: center; }
.cta-banner__inner { position: relative; z-index: 2; max-width: 920px; text-align: center; margin: 0 auto; padding: 0 var(--pad); }
.cta-banner h2 { color: #fff; margin-bottom: 24px; }
.cta-banner p { color: rgba(255,255,255,.78); font-size: 18px; max-width: 56ch; margin: 0 auto 36px; }

.pull { font-family: var(--f-display); font-size: clamp(28px, 3.4vw, 48px); line-height: 1.18; letter-spacing: -0.02em; max-width: 22ch; font-style: italic; font-weight: 500; }
.pull-cite { display: flex; align-items: center; gap: 14px; margin-top: 32px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.pull-cite::before { content:''; width: 36px; height: 1px; background: rgba(255,255,255,.5); }

@media (max-width: 1100px) {
  .cat-grid, .news-grid, .dest-grid, .products { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(6, 1fr); }
  .service:nth-child(n) { grid-column: span 6; aspect-ratio: 4/3; }
}
@media (max-width: 760px) {
  .cat-grid, .news-grid, .dest-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr 1fr; gap: 24px 14px; }
}

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