/* ============================================
   ХЕСУКА МЕВИЕ — Custom CSS
   Glass on Gradient • Wine & Earth Palette
   ============================================ */


:root {
  --wine-deep: #2d0a1e;
  --wine-mid: #6b1a3a;
  --wine-amber: #c8703a;
  --amber-light: #e8a96a;
  --gold: #d4a843;
  --gold-light: #e8c870;
  --cream: #fdf6ee;
  --cream-dark: #f5e8d8;
  --text-body: #3d1a2e;
  --text-muted: #7a5060;
  --glass-bg: rgba(255,255,255,0.08);
  --glass-bg-strong: rgba(255,255,255,0.14);
  --glass-border: rgba(255,255,255,0.18);
  --glass-border-strong: rgba(255,255,255,0.28);
  --shadow-sm: 0 2px 8px rgba(45,10,30,0.08), 0 1px 3px rgba(45,10,30,0.06);
  --shadow-md: 0 4px 20px rgba(45,10,30,0.12), 0 2px 8px rgba(45,10,30,0.08);
  --shadow-lg: 0 8px 40px rgba(45,10,30,0.16), 0 4px 16px rgba(45,10,30,0.10), 0 1px 4px rgba(45,10,30,0.08);
  --shadow-glass: 0 8px 32px rgba(45,10,30,0.2), 0 2px 8px rgba(45,10,30,0.12), inset 0 1px 0 rgba(255,255,255,0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --nav-h: 72px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Schibsted Grotesk', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }


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

/* ============================================
   NAVIGATION
   ============================================ */
nav.spotlight-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .4s ease, color .4s ease, box-shadow .4s ease;
  padding: 0 clamp(1rem, 4vw, 3rem);
}
nav.spotlight-nav.nav-light { color: #fdf6ee; }
nav.spotlight-nav.nav-dark {
  color: #2d0a1e;
  background: rgba(253,246,238,0.92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: opacity .2s;
  color: inherit;
}
.nav-logo:hover { opacity: .75; }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  transition: opacity .2s;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--wine-amber);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { opacity: .8; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: inherit;
  font-size: 1.4rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }

/* ============================================
   MOBILE DRAWER — Diagonal Clip-Path Wipe
   ============================================ */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  transition: clip-path .5s cubic-bezier(0.77,0,0.18,1);
  pointer-events: none;
}
.drawer.open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: all;
}
.drawer-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #2d0a1e 0%, #6b1a3a 60%, #a84a20 100%);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow: auto;
}
.drawer-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fdf6ee;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.drawer-close:hover { background: rgba(255,255,255,0.2); }
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 4rem;
}
.drawer-link {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color .2s, padding-left .2s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, color .2s, padding-left .2s;
}
.drawer.open .drawer-link {
  opacity: 1;
  transform: translateY(0);
}
.drawer.open .drawer-link:nth-child(1) { transition-delay: .35s; }
.drawer.open .drawer-link:nth-child(2) { transition-delay: .42s; }
.drawer.open .drawer-link:nth-child(3) { transition-delay: .49s; }
.drawer.open .drawer-link:nth-child(4) { transition-delay: .56s; }
.drawer.open .drawer-link:nth-child(5) { transition-delay: .63s; }
.drawer-link:hover { color: var(--gold); padding-left: 0.5rem; }

/* ============================================
   HERO / STAGE
   ============================================ */
.stage {
  min-height: 100vh;
  background: linear-gradient(135deg, #2d0a1e 0%, #6b1a3a 35%, #a84a20 65%, #d4a843 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1rem,5vw,4rem) 4rem;
  overflow: hidden;
}
.stage::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,112,58,.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(107,26,58,.4) 0%, transparent 50%);
  pointer-events: none;
}
.stage-curtain {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.stage-curtain::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: floatOrb 8s ease-in-out infinite alternate;
}
@keyframes floatOrb {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-30px,40px) scale(1.1); }
}
.stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stage-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.stage-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fdf6ee;
  margin-bottom: 1.5rem;
}
.stage-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(253,246,238,0.8);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.stage-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.benefit-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(253,246,238,0.9);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.benefit-chip:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}
.benefit-chip i { color: var(--gold); font-size: .85rem; }

/* ============================================
   GLASS CARDS
   ============================================ */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glass);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform .25s ease, box-shadow .25s ease;
}
.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(45,10,30,0.25), 0 4px 16px rgba(45,10,30,0.14), inset 0 1px 0 rgba(255,255,255,0.2);
}
.glass-card-light {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform .25s ease, box-shadow .25s ease;
}
.glass-card-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(45,10,30,0.18), 0 4px 16px rgba(45,10,30,0.10);
}

/* ============================================
   FORM CARD (HERO)
   ============================================ */
.form-card {
  color: #fdf6ee;
}
.form-card-title {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fdf6ee;
}
.form-card-sub {
  color: rgba(253,246,238,0.7);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.contact-form .field-group {
  margin-bottom: 1rem;
}
.contact-form label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: rgba(253,246,238,0.85);
}
.form-card-contact label { color: var(--text-body); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #fdf6ee;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s, background .2s;
  outline: none;
  min-height: 44px;
}
.form-card-contact input,
.form-card-contact textarea {
  background: rgba(45,10,30,0.05);
  border-color: rgba(45,10,30,0.15);
  color: var(--text-body);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(253,246,238,0.45); }
.form-card-contact input::placeholder,
.form-card-contact textarea::placeholder { color: rgba(45,10,30,0.35); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
}
.form-card-contact input:focus,
.form-card-contact textarea:focus {
  border-color: var(--wine-amber);
  background: rgba(255,255,255,0.9);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.5rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: .85rem;
  color: rgba(253,246,238,0.75);
  line-height: 1.5;
}
.form-card-contact .checkbox-label { color: var(--text-muted); }
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.checkbox-label a { color: var(--gold); text-decoration: underline; }
.form-card-contact .checkbox-label a { color: var(--wine-amber); }
.form-step.hidden { display: none; }
.step-indicator {
  display: flex;
  gap: 0.4rem;
  margin: 1rem 0;
}
.step-indicator .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background .3s;
}
.step-indicator .dot.active { background: var(--gold); }
.step-btns {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--wine-amber), var(--gold));
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
  box-shadow: 0 4px 16px rgba(200,112,58,0.35), 0 2px 6px rgba(200,112,58,0.2);
  text-decoration: none;
  min-height: 44px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,112,58,0.45), 0 3px 10px rgba(200,112,58,0.25);
  filter: brightness(1.05);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  color: rgba(253,246,238,0.85);
  font-weight: 600;
  font-size: .9rem;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  min-height: 44px;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--wine-mid);
  font-weight: 700;
  font-size: .95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: 2px solid var(--wine-mid);
  cursor: pointer;
  transition: background .2s, color .2s;
  min-height: 44px;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--wine-mid);
  color: #fdf6ee;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(253,246,238,0.9);
  font-weight: 700;
  font-size: .95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  border: 2px solid rgba(253,246,238,0.4);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  min-height: 44px;
  text-decoration: none;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(253,246,238,0.7);
}

/* ============================================
   SECTIONS — Canvas Sections
   ============================================ */
.canvas-section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section-intro { background: var(--cream); }
.section-light { background: var(--cream); }
.section-gradient-dark {
  background: linear-gradient(135deg, #2d0a1e 0%, #6b1a3a 50%, #8b3a20 100%);
}
.section-gradient-mid {
  background: linear-gradient(135deg, #4a1028 0%, #8b2a48 60%, #c8703a 100%);
}
.section-amber {
  background: linear-gradient(135deg, #fdf6ee 0%, #f5e8d8 50%, #fdf6ee 100%);
}
.section-culture {
  background: linear-gradient(135deg, #2d0a1e 0%, #5a1530 40%, #8b3a20 80%, #c8703a 100%);
}
.section-regions { background: var(--cream-dark); }
.section-cta {
  background: linear-gradient(135deg, #2d0a1e 0%, #6b1a3a 60%, #c8703a 100%);
  padding: var(--section-pad) 0;
}
.section-map { background: var(--cream); padding-bottom: var(--section-pad); }


.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wine-amber);
  margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--gold); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--wine-deep);
  margin-bottom: 1rem;
}
.section-title.light { color: #fdf6ee; }
.section-lead {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-lead.light { color: rgba(253,246,238,0.75); }
.section-header.centered {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header.centered .section-lead { margin: 0 auto; }
.section-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform .5s ease;
}
.intro-image-wrap:hover .intro-img { transform: scale(1.03); }
.intro-img-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: rgba(45,10,30,0.85);
  border: 1px solid rgba(212,168,67,0.4);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(8px);
}
.intro-text { display: flex; flex-direction: column; gap: 1rem; }
.intro-text p {
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.75;
}
.intro-text .btn-outline { margin-top: 0.5rem; align-self: flex-start; }

/* ============================================
   GALLERY — Services/Topics Grid
   ============================================ */
.gallery { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.gallery-4 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.gallery-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }


.shelf-card {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.shelf-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fdf6ee;
  line-height: 1.3;
}
.shelf-card p {
  font-size: .9rem;
  color: rgba(253,246,238,0.75);
  line-height: 1.65;
  flex: 1;
}
.card-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  transition: background .2s;
}
.shelf-card:hover .card-icon { background: rgba(255,255,255,0.18); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap .2s;
  margin-top: auto;
}
.card-link:hover { gap: 0.6rem; }

/* ============================================
   PROCESS TABS
   ============================================ */
.process-tabs { width: 100%; }
.tab-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(45,10,30,0.12);
  padding-bottom: 0;
}
.tab-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: color .2s, background .2s;
  position: relative;
  min-height: 44px;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--wine-amber);
  transform: scaleX(0);
  transition: transform .2s;
}
.tab-btn.active { color: var(--wine-amber); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--wine-mid); background: rgba(45,10,30,0.04); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: tabFadeIn .35s ease; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.tab-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tab-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .5s ease;
}
.tab-img-wrap:hover img { transform: scale(1.03); }
.tab-text { display: flex; flex-direction: column; gap: 1rem; }
.tab-text h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--wine-deep);
}
.tab-text p {
  font-size: clamp(.9rem, 1.2vw, 1rem);
  color: var(--text-body);
  line-height: 1.75;
}

/* ============================================
   CULTURE SECTION
   ============================================ */
.culture-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.culture-text { display: flex; flex-direction: column; gap: 1.25rem; }
.light-text { color: rgba(253,246,238,0.82); line-height: 1.75; font-size: clamp(.95rem, 1.2vw, 1.05rem); }
.culture-images {
  position: relative;
  display: grid;
  gap: 1rem;
}
.culture-img-main {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform .4s ease;
}
.culture-img-secondary {
  width: 80%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin-left: auto;
  transition: transform .4s ease;
}
.culture-img-main:hover { transform: scale(1.02); }
.culture-img-secondary:hover { transform: scale(1.02); }

/* ============================================
   REGIONS GALLERY
   ============================================ */
.gallery-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.region-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
  background: #fff;
}
.region-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.region-card.spotlight {
  grid-column: span 1;
}
.region-img-wrap {
  overflow: hidden;
  height: 220px;
}
.region-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.region-card:hover .region-img-wrap img { transform: scale(1.05); }
.region-info {
  padding: 1.25rem 1.5rem;
}
.region-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wine-deep);
  margin-bottom: 0.5rem;
}
.region-info p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem);
}
.cta-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.cta-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fdf6ee;
  margin-bottom: 0.75rem;
}
.cta-block p {
  color: rgba(253,246,238,0.78);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #2d0a1e 0%, #6b1a3a 50%, #a84a20 100%);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) clamp(1rem,5vw,4rem) 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212,168,67,.2) 0%, transparent 60%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fdf6ee;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience-intro { margin-bottom: 3rem; max-width: 700px; }
.audience-intro h2 { margin-bottom: 0.75rem; }
.audience-intro p { color: var(--text-muted); font-size: 1.05rem; }
.audience-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.audience-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--wine-mid), var(--wine-amber));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fdf6ee;
  box-shadow: 0 4px 12px rgba(107,26,58,0.3);
}
.audience-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wine-deep);
}
.audience-card p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   TWO-COL SECTION
   ============================================ */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.two-col-text { display: flex; flex-direction: column; gap: 1.25rem; }
.approach-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}
.approach-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(253,246,238,0.88);
  font-size: .95rem;
}
.approach-list li i { color: var(--gold); flex-shrink: 0; }

/* ============================================
   TOPICS LIST
   ============================================ */
.topics-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.topic-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(45,10,30,0.1);
  transition: background .2s;
}
.topic-item:first-child { border-top: 1px solid rgba(45,10,30,0.1); }
.topic-num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(107,26,58,0.2);
  line-height: 1;
  padding-top: 0.2rem;
}
.topic-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wine-deep);
  margin-bottom: 0.5rem;
}
.topic-content p {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   SEASONS GRID
   ============================================ */
.season-intro {
  max-width: 700px;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.season-intro p { color: var(--text-muted); line-height: 1.75; font-size: 1.05rem; }
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.season-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
}
.season-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.season-header {
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.season-header i {
  font-size: 1.5rem;
}
.season-winter .season-header { background: linear-gradient(135deg, #2d0a1e, #4a1028); color: #fdf6ee; }
.season-spring .season-header { background: linear-gradient(135deg, #1a3a1a, #2d6b2d); color: #fdf6ee; }
.season-summer .season-header { background: linear-gradient(135deg, #6b3a0a, #c8703a); color: #fdf6ee; }
.season-autumn .season-header { background: linear-gradient(135deg, #6b3a0a, #a84a20); color: #fdf6ee; }
.season-header h3 { font-size: 1.2rem; font-weight: 700; }
.season-tag {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
}
.season-body { padding: 1.25rem 1.5rem 1.5rem; }
.season-body p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.season-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.season-topics li {
  font-size: .85rem;
  color: var(--text-body);
  padding-left: 1rem;
  position: relative;
}
.season-topics li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--wine-amber);
}

/* ============================================
   SCHEDULE TABLE
   ============================================ */
.schedule-wrap { max-width: 700px; }
.schedule-wrap .section-eyebrow { display: block; margin-bottom: 0.5rem; }
.schedule-wrap .section-title { margin-bottom: 2rem; }
.schedule-table { margin-bottom: 1.5rem; }
.schedule-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.schedule-row:not(.header-row):hover { background: rgba(107,26,58,0.04); }
.schedule-row.header-row {
  background: rgba(107,26,58,0.06);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--wine-mid);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.schedule-row:not(.header-row) {
  font-size: .95rem;
  color: var(--text-body);
  border-bottom: 1px solid rgba(45,10,30,0.07);
}
.schedule-note {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  background: none;
  border: 1.5px solid rgba(45,10,30,0.15);
  color: var(--text-muted);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
  min-height: 44px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--wine-mid);
  border-color: var(--wine-mid);
  color: #fdf6ee;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.blog-card.featured-post {
  grid-column: span 2;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-img {
  position: relative;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card.featured-post .blog-card-img img { height: 320px; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(45,10,30,0.85);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.blog-date {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.blog-title {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--wine-deep);
  line-height: 1.35;
}
.blog-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--wine-amber);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap .2s;
  margin-top: auto;
}
.blog-read-more:hover { gap: 0.6rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info .section-title { margin-bottom: 0; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--wine-mid), var(--wine-amber));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fdf6ee;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(107,26,58,0.25);
}
.contact-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 0.25rem;
}
.contact-item p, .contact-item a {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.55;
  text-decoration: none;
}
.contact-item a:hover { color: var(--wine-amber); }
.hours-block {
  background: rgba(45,10,30,0.04);
  border: 1px solid rgba(45,10,30,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.hours-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wine-deep);
  margin-bottom: 1rem;
}
.hours-grid { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(45,10,30,0.07);
  font-size: .9rem;
}
.hours-day { color: var(--text-body); font-weight: 500; }
.hours-time { color: var(--wine-mid); font-weight: 600; }
.hours-row.closed .hours-time { color: var(--text-muted); }
.hours-note {
  font-size: .82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
}
.contact-form-wrap {}
.form-card-contact {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.95);
}
.form-card-contact h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wine-deep);
  margin-bottom: 0.4rem;
}
.form-card-contact p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.form-card-contact .step-indicator .dot { background: rgba(45,10,30,0.2); }
.form-card-contact .step-indicator .dot.active { background: var(--wine-amber); }
.form-card-contact .btn-secondary {
  background: rgba(45,10,30,0.06);
  color: var(--text-muted);
  border-color: rgba(45,10,30,0.15);
}
.form-card-contact .btn-secondary:hover {
  background: rgba(45,10,30,0.1);
}
.map-wrap { max-width: 900px; margin: 0 auto; }
.map-wrap .section-title { margin-bottom: 1.5rem; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-main {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
}
.thanks-wrap {
  text-align: center;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.thanks-check {
  width: 120px; height: 120px;
}
.check-svg { width: 100%; height: 100%; }
.thanks-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.thanks-content.visible {
  opacity: 1;
  transform: translateY(0);
}
.thanks-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fdf6ee;
  margin-bottom: 1rem;
}
.thanks-text {
  font-size: 1.05rem;
  color: rgba(253,246,238,0.85);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.thanks-sub {
  font-size: .9rem;
  color: rgba(253,246,238,0.65);
  margin-bottom: 2rem;
}
.thanks-btn { margin: 0 auto; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-main {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
}
.legal-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  background: #fff;
  border: 1px solid rgba(45,10,30,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.legal-sidebar h3 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--wine-mid);
  margin-bottom: 1rem;
}
.legal-toc {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.legal-toc a {
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: background .15s, color .15s;
  line-height: 1.4;
}
.legal-toc a:hover {
  background: rgba(107,26,58,0.07);
  color: var(--wine-mid);
}
.legal-content { display: flex; flex-direction: column; gap: 2.5rem; }
.legal-header { padding-bottom: 2rem; border-bottom: 2px solid rgba(45,10,30,0.1); }
.legal-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--wine-deep);
  margin-bottom: 0.5rem;
}
.legal-meta {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.legal-content section {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wine-deep);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(45,10,30,0.1);
}
.legal-content p {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.75;
}
.legal-content a { color: var(--wine-amber); text-decoration: underline; }

/* ============================================
   COOKIES PAGE (unique layout)
   ============================================ */
.cookies-container {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) clamp(1rem, 4vw, 2.5rem) 5rem;
}
.cookies-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(45,10,30,0.1);
}
.cookies-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--wine-deep);
  margin-bottom: 0.5rem;
}
.cookies-header p { font-size: .95rem; color: var(--text-muted); line-height: 1.7; margin-top: 0.5rem; }
.cookies-blocks { display: flex; flex-direction: column; gap: 2.5rem; }
.cookie-block {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--wine-amber);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cookie-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wine-deep);
}
.cookie-block p { font-size: .93rem; color: var(--text-muted); line-height: 1.7; }
.cookie-block a { color: var(--wine-amber); text-decoration: underline; }
.cookie-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.cookie-tag.required { background: rgba(45,10,30,0.08); color: var(--wine-mid); }
.cookie-tag.analytics { background: rgba(200,112,58,0.12); color: var(--wine-amber); }
.cookie-table-wrap { overflow-x: auto; }
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.cookie-table th {
  text-align: left;
  padding: 0.6rem 1rem;
  background: rgba(45,10,30,0.05);
  color: var(--wine-mid);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cookie-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(45,10,30,0.07);
  color: var(--text-body);
}
.browser-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.browser-list li {
  font-size: .88rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.browser-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--wine-amber);
  font-size: 1.2rem;
  line-height: 1;
}
.cookie-reset-wrap { margin-top: 3rem; text-align: center; }

/* ============================================
   FOOTER
   ============================================ */
.canvas-footer {
  background: var(--wine-deep);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fdf6ee;
  letter-spacing: -0.02em;
}
.footer-logo-img {
  width: 36px; height: 36px;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(253,246,238,0.65);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer-contact span,
.footer-contact a {
  color: rgba(253,246,238,0.55);
  font-size: .88rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--amber-light); }
.footer-contact i { color: var(--gold); font-size: .8rem; }
.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}
.footer-legal span {
  font-size: .82rem;
  color: rgba(253,246,238,0.35);
}
.legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-links a {
  font-size: .82rem;
  color: rgba(253,246,238,0.45);
  text-decoration: none;
  transition: color .2s;
}
.legal-links a:hover { color: rgba(253,246,238,0.75); }

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(45,10,30,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
}
.bottom-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  color: rgba(253,246,238,0.5);
  text-decoration: none;
  font-size: .65rem;
  font-weight: 600;
  padding: 0.4rem 0;
  flex: 1;
  transition: color .2s;
  min-height: 44px;
  justify-content: center;
}
.bottom-tab i { font-size: 1.1rem; }
.bottom-tab.active, .bottom-tab:hover { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .stage-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stage { min-height: auto; padding-bottom: 5rem; }
  .gallery-regions { grid-template-columns: repeat(2, 1fr); }
  .blog-card.featured-post { grid-column: span 1; }
  .legal-container { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 70px; }

  .intro-layout,
  .tab-panel-inner,
  .culture-layout,
  .two-col-section,
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-regions { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .tab-nav { gap: 0.25rem; }
  .tab-btn { font-size: .85rem; padding: 0.6rem 0.9rem; }
  .intro-img { height: 300px; }
  .tab-img-wrap img { height: 250px; }
  .culture-img-main { height: 220px; }
  .culture-img-secondary { height: 160px; }
  .region-img-wrap { height: 180px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .schedule-row { grid-template-columns: 1fr 1fr; }
  .schedule-row.header-row span:last-child,
  .schedule-row:not(.header-row) span:last-child { display: none; }
  .footer-contact { flex-direction: column; gap: 0.75rem; }
  .stage-benefits { gap: 0.5rem; }
  .seasons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stage-headline { font-size: 2.4rem; }
  .page-title { font-size: 2rem; }
  .gallery-4, .gallery-3 { grid-template-columns: 1fr; }
  .cta-block { padding: 2rem 1.5rem; }
  .blog-filter { gap: 0.35rem; }
  .filter-btn { font-size: .8rem; padding: 0.4rem 0.85rem; }
}

/* ============================================
   COOKIE CONSENT PILL
   ============================================ */
#xmiCookiePill {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(45,10,30,0.95);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 100px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(253,246,238,0.9);
  font-size: .85rem;
  font-family: 'Schibsted Grotesk', sans-serif;
  transition: all .4s cubic-bezier(0.34,1.56,0.64,1);
  max-width: calc(100vw - 2rem);
}
#xmiCookiePill.pill-modal {
  border-radius: var(--radius-lg, 24px);
  white-space: normal;
  width: min(480px, calc(100vw - 2rem));
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  bottom: 1.5rem;
}
.xmi-pill-text { flex: 1; }
.xmi-pill-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.xmi-pill-accept {
  background: linear-gradient(135deg, var(--wine-amber, #c8703a), var(--gold, #d4a843));
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: filter .2s;
  min-height: 36px;
}
.xmi-pill-accept:hover { filter: brightness(1.1); }
.xmi-pill-settings {
  background: transparent;
  color: rgba(253,246,238,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s;
  min-height: 36px;
}
.xmi-pill-settings:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(253,246,238,0.9);
}
.xmi-modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fdf6ee;
  margin-bottom: 0.25rem;
}
.xmi-modal-desc {
  font-size: .85rem;
  color: rgba(253,246,238,0.7);
  line-height: 1.55;
}
.xmi-modal-cats { width: 100%; display: flex; flex-direction: column; gap: 0.75rem; }
.xmi-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm, 8px);
  padding: 0.75rem 1rem;
}
.xmi-cat-label { font-size: .88rem; color: rgba(253,246,238,0.85); font-weight: 500; }
.xmi-cat-badge {
  font-size: .72rem;
  font-weight: 600;
  background: rgba(212,168,67,0.15);
  color: var(--gold, #d4a843);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
}
.xmi-toggle {
  position: relative;
  width: 40px; height: 22px;
  flex-shrink: 0;
}
.xmi-toggle input { opacity: 0; width: 0; height: 0; }
.xmi-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s;
}
.xmi-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s;
}
.xmi-toggle input:checked + .xmi-slider { background: var(--wine-amber, #c8703a); }
.xmi-toggle input:checked + .xmi-slider::before { transform: translateX(18px); }
.xmi-toggle input:disabled + .xmi-slider { opacity: .6; cursor: not-allowed; }
.xmi-modal-footer { display: flex; gap: 0.75rem; width: 100%; justify-content: flex-end; flex-wrap: wrap; }

@media (max-width: 768px) {
  #xmiCookiePill { bottom: calc(70px + 1rem); }
  #xmiCookiePill.pill-modal { bottom: calc(70px + 1rem); }
}