/* =========================================================
   Oste Events — Design System
   Fonts self-hosted (Space Grotesk / Manrope). Arctic-blue accent
   on near-black, matching the logo. Soft rounded shape system:
   pill buttons, rounded panels and inputs.
   ========================================================= */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/SpaceGrotesk-Variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/Manrope-Variable.woff2') format('woff2');
}

:root {
  /* --- surfaces (cool near-black, matching the logo's dark badge) --- */
  --bg: #0a0b0d;
  --bg-soft: #0e1013;
  --surface: #131519;
  --surface-elevated: #191c21;
  --border: #262a30;
  --border-soft: #1c1f24;

  /* --- text --- */
  --text: #f3f6f9;
  --text-muted: #a7b0ba;
  --text-faint: #6b7480;

  /* --- single accent: arctic blue, taken from the logo --- */
  --accent: #7dd3fc;
  --accent-strong: #a9e3ff;
  --accent-ink: #06141c;
  --accent-wash: rgba(125, 211, 252, 0.1);
  --accent-wash-strong: rgba(125, 211, 252, 0.2);

  /* --- functional (real brand + real semantic state only) --- */
  --whatsapp: #25d366;
  --whatsapp-ink: #ffffff;
  --booked: #d9724f;

  /* --- shape lock: soft rounded corners throughout --- */
  --radius-pill: 999px;
  --radius-panel: 20px;
  --radius-input: 10px;

  /* --- shadow, tinted to background hue --- */
  --shadow-panel: 0 24px 60px -28px rgba(2, 3, 5, 0.8);
  --shadow-hover: 0 0 0 1px rgba(125, 211, 252, 0.28), 0 26px 60px -20px rgba(2, 3, 5, 0.85);

  --container: 1240px;
  --nav-height: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: 'Space Grotesk', system-ui, sans-serif; font-weight: 600; }
p { margin: 0; }

.oe-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .oe-container { padding: 0 2.5rem; }
}

.oe-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.oe-skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-input);
  font-weight: 600;
  transition: top 0.2s var(--ease-out);
}
.oe-skip-link:focus {
  top: 1rem;
}

/* ---------- focus ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- grain overlay (fixed, non-scrolling for perf) ---------- */
.oe-grain {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- reveal-on-scroll (IntersectionObserver driven) ---------- */
.oe-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.oe-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .oe-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- buttons (shape lock: pill) ---------- */
.oe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.oe-btn:active { transform: scale(0.97); }

.oe-btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.oe-btn--primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.oe-btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.oe-btn--ghost:hover { border-color: var(--accent); color: var(--accent-strong); transform: translateY(-2px); }

.oe-btn--whatsapp {
  background: var(--whatsapp);
  color: var(--whatsapp-ink);
}
.oe-btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 20px 45px -18px rgba(37, 211, 102, 0.45); }

.oe-btn--block { width: 100%; }
.oe-btn--sm { padding: 0.7rem 1.25rem; font-size: 0.88rem; }

.oe-icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

/* ================= HEADER / NAV ================= */
.oe-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-height);
  z-index: 100;
  background: rgba(21, 19, 15, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
}
.oe-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.oe-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.oe-brand img { width: 38px; height: 38px; border-radius: 50%; }
.oe-brand span { color: var(--accent); }

.oe-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
}
.oe-nav-links a { transition: color 0.2s var(--ease-out); }
.oe-nav-links a:hover { color: var(--text); }

.oe-nav-cta { display: none; }

.oe-menu-btn {
  display: flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--text);
}

@media (min-width: 860px) {
  .oe-nav-links, .oe-nav-cta { display: flex; }
  .oe-menu-btn { display: none; }
}

.oe-mobile-menu {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.oe-mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.oe-mobile-menu a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 1.1rem;
  font-weight: 500;
}
.oe-mobile-menu .oe-btn { margin-top: 1.5rem; }
.oe-mobile-legal {
  margin-top: auto;
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-faint);
}

@media (min-width: 860px) {
  .oe-mobile-menu { display: none; }
}

/* ================= HERO (fills the first viewport) ================= */
/* Tall wrapper gives scroll distance to scrub the video against.
   The inner .oe-hero-sticky pins at the viewport top for that
   distance, so the page only scrolls past the hero once the video
   has played through. */
.oe-hero-pin-wrap {
  position: relative;
  height: 260vh;
}
@media (max-width: 700px) {
  .oe-hero-pin-wrap { height: 210vh; }
}
.oe-hero-pin-wrap.is-static {
  height: auto;
}

.oe-hero-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.oe-hero-pin-wrap.is-static .oe-hero-sticky {
  position: relative;
}

.oe-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.oe-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(4,5,7,0.92) 0%, rgba(4,5,7,0.72) 32%, rgba(4,5,7,0.3) 62%, rgba(4,5,7,0.55) 100%),
    linear-gradient(0deg, rgba(4,5,7,0.75) 0%, transparent 32%);
  pointer-events: none;
}

.oe-hero-glow {
  position: absolute;
  z-index: 1;
  width: 60vw; height: 42vw;
  max-width: 900px; max-height: 620px;
  background: linear-gradient(128deg, rgba(125,211,252,0.22), transparent 62%);
  transform: skewY(-7deg);
  top: -12%; left: -14%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.oe-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-height) + 1rem);
  width: 100%;
}

/* .oe-hero-copy and .oe-hero-steps occupy the same box so the steps
   read as a continuation of the headline, not a new block. Both are
   driven every frame from JS (opacity/transform), not CSS transitions,
   since they are scrubbed directly by scroll position. */
.oe-hero-stage {
  position: relative;
  min-height: 22rem;
}

.oe-hero-copy {
  max-width: 40rem;
}

.oe-hero-copy h1 {
  font-size: clamp(2.1rem, 3.3vw + 1rem, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 15ch;
}
.oe-hero-copy h1 em {
  font-style: normal;
  color: var(--accent);
}

.oe-letter-word {
  display: inline-block;
  white-space: pre;
}
.oe-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i) * 38ms);
}
.oe-hero-copy.is-lettered .oe-letter {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .oe-letter { opacity: 1; transform: none; transition: none; }
}

.oe-hero-copy p {
  margin-top: 1.5rem;
  max-width: 46ch;
  font-size: clamp(1.02rem, 0.4vw + 1rem, 1.2rem);
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease-out) 1.1s, transform 0.8s var(--ease-out) 1.1s;
}
.oe-hero-copy.is-lettered p {
  opacity: 1;
  transform: translateY(0);
}

.oe-hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s var(--ease-out) 1.3s, transform 0.8s var(--ease-out) 1.3s;
}
.oe-hero-copy.is-lettered .oe-hero-ctas {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .oe-hero-copy p, .oe-hero-ctas { transition-delay: 0s; }
}

/* Steps: hidden by default, brought in frame-by-frame from JS as the
   user scrolls (see initHeroScrub in main.js). Absolute so they overlap
   the copy block exactly instead of pushing layout around. */
.oe-hero-steps {
  position: absolute;
  inset: 0;
  max-width: 34rem;
  pointer-events: none;
}
.oe-hero-steps-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  opacity: 0;
  margin-bottom: 1.5rem;
}
.oe-hero-step {
  opacity: 0;
  transform: translateY(28px);
  padding: 1.1rem 0;
  border-top: 1px solid var(--border-soft);
}
.oe-hero-step:last-child { border-bottom: 1px solid var(--border-soft); }
.oe-hero-step h3 {
  font-size: 1.25rem;
  color: var(--accent);
}
.oe-hero-step p {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ================= SECTION SCAFFOLDING ================= */
.oe-section {
  padding: 5.5rem 0;
  border-top: 1px solid var(--border-soft);
}
.oe-section--alt { background: var(--bg-soft); }

.oe-section-head {
  max-width: 56ch;
  margin-bottom: 3rem;
}
.oe-section-head h2 {
  font-size: clamp(1.9rem, 1.4vw + 1.3rem, 2.6rem);
  letter-spacing: -0.015em;
}
.oe-section-head p {
  margin-top: 0.85rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ================= PRODUCTS ================= */
.oe-product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 700px) {
  .oe-product-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

.oe-product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-panel);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.oe-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(125,211,252,0.35);
}

.oe-product-media {
  position: relative;
  height: 15rem;
  background: var(--bg-soft);
  overflow: hidden;
}
.oe-product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.oe-product-media-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s var(--ease-out);
}
.oe-product-media-track > div { flex-shrink: 0; height: 100%; }

.oe-product-empty {
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.oe-dot-row {
  position: absolute;
  bottom: 0.85rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.4rem;
  z-index: 3;
}
.oe-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(243,246,249,0.35);
  transition: width 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.oe-dot.is-active { width: 18px; background: var(--accent); border-radius: 999px; }

.oe-slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(10,11,13,0.65);
  backdrop-filter: blur(6px);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: background 0.2s var(--ease-out);
}
.oe-slide-btn:hover { background: rgba(125,211,252,0.3); }
.oe-slide-btn--prev { left: 0.6rem; }
.oe-slide-btn--next { right: 0.6rem; }

.oe-product-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.oe-product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.oe-product-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}
.oe-badge {
  flex-shrink: 0;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--accent-wash);
  color: var(--accent-strong);
  border: 1px solid rgba(125,211,252,0.32);
  white-space: nowrap;
}
.oe-product-desc {
  margin-top: 0.6rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.oe-product-price {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
  font-variant-numeric: tabular-nums;
}
.oe-price-value { font-size: 1.4rem; font-weight: 700; }
.oe-price-unit { font-size: 0.85rem; color: var(--text-faint); margin-left: 0.25rem; }
.oe-price-request { font-size: 1rem; font-weight: 700; color: var(--accent-strong); }

.oe-product-actions {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.6rem;
}
.oe-product-actions .oe-btn { flex: 1; }

/* ---------- loading / error / empty states ---------- */
.oe-state {
  padding: 4rem 0;
  text-align: center;
  color: var(--text-muted);
}
.oe-spinner {
  width: 2.5rem; height: 2.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  animation: oe-spin 0.85s linear infinite;
}
@keyframes oe-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .oe-spinner { animation-duration: 2.4s; }
}

.oe-skeleton-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 700px) {
  .oe-skeleton-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.oe-skeleton-card {
  height: 24rem;
  border-radius: var(--radius-panel);
  background: linear-gradient(100deg, var(--surface) 30%, var(--surface-elevated) 50%, var(--surface) 70%);
  background-size: 200% 100%;
  animation: oe-shimmer 1.6s ease-in-out infinite;
}
@keyframes oe-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .oe-skeleton-card { animation: none; background: var(--surface); }
}

/* ================= KONTAKT ================= */
.oe-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .oe-contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; }
}

.oe-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}
.oe-contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-input);
}
.oe-contact-row .oe-icon-badge {
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: var(--accent-wash);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.oe-contact-row .oe-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.oe-contact-row a, .oe-contact-row span.oe-value {
  font-weight: 600;
  color: var(--text);
}

.oe-contact-panel {
  border-radius: 24px;
  padding: 2.25rem;
  background:
    linear-gradient(128deg, rgba(125,211,252,0.16), transparent 62%),
    var(--surface);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.oe-contact-panel h3 { font-size: 1.4rem; }
.oe-contact-panel p { color: var(--text-muted); }

/* ================= FOOTER ================= */
.oe-footer {
  padding: 2.75rem 0;
  border-top: 1px solid var(--border-soft);
}
.oe-footer-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-faint);
}
@media (min-width: 700px) {
  .oe-footer-row { flex-direction: row; justify-content: space-between; text-align: left; }
}
.oe-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.oe-footer-links a, .oe-footer-links button { transition: color 0.2s var(--ease-out); }
.oe-footer-links a:hover, .oe-footer-links button:hover { color: var(--accent-strong); }

/* ================= WHATSAPP FLOAT (documented exception: round, matches the WhatsApp bubble convention and the round logo) ================= */
.oe-wa-float {
  position: fixed;
  right: 1.25rem; bottom: 1.25rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--whatsapp-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px -12px rgba(37,211,102,0.55);
  transition: transform 0.25s var(--ease-out);
}
.oe-wa-float:hover { transform: scale(1.08); }
.oe-wa-float .oe-icon { width: 1.6rem; height: 1.6rem; }
.oe-wa-dot {
  position: absolute;
  top: -2px; right: -2px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--booked);
  border: 2px solid var(--bg);
  animation: oe-pulse 2.4s ease-in-out infinite;
}
@keyframes oe-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .oe-wa-dot { animation: none; }
}

/* ================= MODALS (product detail + calendar) ================= */
.oe-modal-backdrop {
  position: fixed; inset: 0;
  z-index: 150;
  background: rgba(4,5,7,0.8);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  padding: 1.25rem;
}
.oe-modal-backdrop.is-open { display: flex; }

.oe-modal {
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 24px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-panel);
  position: relative;
  animation: oe-modal-in 0.35s var(--ease-out);
}
@keyframes oe-modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .oe-modal { animation: none; }
}
.oe-modal--sm { max-width: 460px; padding: 1.75rem; }

.oe-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 5;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: rgba(4,5,7,0.7);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
}
.oe-modal-close:hover { color: var(--accent-strong); }

.oe-modal-media {
  position: relative;
  height: 22rem;
  background: var(--bg);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.oe-modal-media img { width: 100%; height: 100%; object-fit: contain; }
.oe-modal-track { display: flex; height: 100%; transition: transform 0.5s var(--ease-out); }
.oe-modal-track > div { flex-shrink: 0; height: 100%; display: flex; align-items: center; justify-content: center; }

.oe-thumb-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem 0;
  overflow-x: auto;
}
.oe-thumb {
  flex-shrink: 0;
  width: 3.5rem; height: 3.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: opacity 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}
.oe-thumb.is-active { opacity: 1; border-color: var(--accent); }
.oe-thumb img { width: 100%; height: 100%; object-fit: cover; }

.oe-modal-body { padding: 1.75rem 1.75rem 2rem; }
.oe-modal-body h2 { font-size: 1.6rem; line-height: 1.25; }
.oe-modal-body .oe-modal-desc {
  margin-top: 1rem;
  color: var(--text-muted);
  white-space: pre-line;
  font-size: 0.97rem;
}
.oe-modal-actions {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  gap: 0.75rem;
}
.oe-modal-actions .oe-btn { flex: 1; }

/* ---------- calendar ---------- */
.oe-cal-title { font-size: 1.25rem; }
.oe-cal-sub { margin-top: 0.35rem; color: var(--text-muted); font-size: 0.9rem; }
.oe-cal-month { margin-top: 1.5rem; }
.oe-cal-month h4 {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.oe-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  text-align: center;
}
.oe-cal-dow { font-size: 0.72rem; color: var(--text-faint); padding: 0.35rem 0; }
.oe-cal-day {
  height: 2.1rem;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.oe-cal-day.is-available { background: var(--bg-soft); color: var(--text); }
.oe-cal-day.is-booked { background: rgba(217,114,79,0.16); color: var(--booked); }
.oe-cal-day.is-today { outline: 1px solid var(--accent); }
.oe-cal-legend {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-faint);
}
.oe-cal-legend span.oe-swatch {
  display: inline-block;
  width: 0.7rem; height: 0.7rem;
  border-radius: 3px;
  margin-right: 0.5rem;
}

/* ================= COOKIE CONSENT ================= */

/* Self-contained: blocking + dimming + the banner UI all live inside
   ONE element (.oe-cookie-overlay). Nothing outside it is ever touched
   or disabled. If a browser extension hides/removes this element (many
   "auto-reject cookie banners" addons do exactly that), the page
   underneath was never altered and is immediately fully usable again,
   instead of staying stuck blurred with no way to dismiss it. */
.oe-cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.oe-cookie-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(4,5,7,0.35);
  backdrop-filter: blur(16px) saturate(0.85);
}
@media (prefers-reduced-motion: reduce) {
  .oe-cookie-backdrop { backdrop-filter: blur(16px); }
}

.oe-cookie-sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(14,16,19,0.97);
  border-top: 1px solid var(--border-soft);
  animation: oe-slide-up 0.4s var(--ease-out);
}
@keyframes oe-slide-up {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .oe-cookie-sheet { animation: none; }
}
.oe-cookie-inner {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
@media (min-width: 760px) {
  .oe-cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
}
.oe-cookie-text h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.oe-cookie-text p { font-size: 0.85rem; color: var(--text-muted); }
.oe-cookie-text a { color: var(--accent-strong); }
.oe-cookie-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; flex-shrink: 0; }

.oe-cookie-noSave {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-faint);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.oe-cookie-noSave:hover { color: var(--text-muted); }

.oe-cookie-cat {
  padding: 1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-input);
  margin-bottom: 0.75rem;
}
.oe-cookie-cat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.4rem; }
.oe-cookie-cat-head label { font-weight: 600; font-size: 0.92rem; }
.oe-cookie-cat p { font-size: 0.8rem; color: var(--text-muted); }
.oe-cookie-list { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.oe-cookie-list span {
  font-size: 0.72rem;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: var(--bg-soft);
  color: var(--text-faint);
}
.oe-cookie-toggle { width: 2.4rem; height: 1.4rem; accent-color: var(--accent); }

/* ================= LEGAL PAGES ================= */
.oe-legal-main {
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 5rem;
}
.oe-legal-main h1 { font-size: clamp(2rem, 2vw + 1.3rem, 2.75rem); }
.oe-legal-intro { margin-top: 0.5rem; color: var(--text-muted); }
.oe-legal-panel {
  margin-top: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-panel);
  padding: 2rem;
}
@media (min-width: 700px) {
  .oe-legal-panel { padding: 2.75rem; }
}
.oe-legal-panel section + section { margin-top: 2rem; }
.oe-legal-panel h2 { font-size: 1.15rem; margin-bottom: 0.65rem; }
.oe-legal-panel p, .oe-legal-panel li { color: var(--text-muted); font-size: 0.96rem; }
.oe-legal-panel p + p, .oe-legal-panel ul { margin-top: 0.6rem; }
.oe-legal-panel ul { padding-left: 1.2rem; list-style: disc; }
.oe-legal-panel li + li { margin-top: 0.3rem; }
.oe-legal-panel a { color: var(--accent-strong); }
.oe-legal-box {
  margin-top: 0.6rem;
  padding: 1rem 1.1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-input);
}
.oe-legal-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  font-size: 0.85rem;
  color: var(--text-faint);
}
