/* ============================================================
   SOUVENIRDORE — Global Stylesheet
   Monte Carlo Premium Theme · Bootstrap 5.3.3 + AOS + FontAwesome
   ============================================================ */

:root {
  --sd-emerald: #0a3d2e;
  --sd-emerald-deep: #062017;
  --sd-emerald-light: #0f5238;
  --sd-emerald-mid: #14694b;
  --sd-gold: #d4af37;
  --sd-gold-light: #e8c869;
  --sd-gold-dim: #b8932a;
  --sd-burgundy: #722f37;
  --sd-burgundy-light: #8f424b;
  --sd-cream: #f5f0e1;
  --sd-cream-dim: #c9c3b0;
  --sd-graphite: #14181a;
  --sd-graphite-light: #1f2426;
  --sd-glass: rgba(15, 82, 56, 0.55);
  --sd-glass-dark: rgba(10, 35, 25, 0.78);
  --sd-shadow-gold: 0 14px 40px -12px rgba(212, 175, 55, 0.45);
  --sd-shadow-deep: 0 24px 60px -20px rgba(0, 0, 0, 0.65);
  --sd-radius: 18px;
  --sd-radius-lg: 28px;
  --sd-radius-sm: 10px;
  --sd-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sd-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --sd-transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sd-sans);
  background-color: var(--sd-emerald-deep);
  color: var(--sd-cream);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

main.page-content { padding-top: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sd-serif);
  font-weight: 600;
  color: var(--sd-cream);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.1; }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p { color: var(--sd-cream-dim); }

a {
  color: var(--sd-gold);
  text-decoration: none;
  transition: color var(--sd-transition);
}
a:hover { color: var(--sd-gold-light); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--sd-gold); color: var(--sd-emerald-deep); }

/* ---------- Decorative primitives ---------- */
.sd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sd-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sd-gold);
  margin-bottom: 1.2rem;
}
.sd-eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sd-gold));
}

.sd-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sd-gold-dim), transparent);
  margin: 3rem auto;
  max-width: 720px;
}
.sd-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--sd-gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.sd-gold-line {
  height: 2px;
  background: linear-gradient(90deg, var(--sd-gold), var(--sd-gold-light), var(--sd-gold));
  border: none;
  opacity: 0.85;
}

.sd-frame {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--sd-radius);
  background: var(--sd-glass-dark);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.sd-frame::before,
.sd-frame::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--sd-gold);
  pointer-events: none;
}
.sd-frame::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.sd-frame::after { bottom: -2px; right: -2px; border-left: none; border-top: none; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sd-sans);
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 50px;
  padding: 0.85rem 1.9rem;
  transition: all var(--sd-transition);
  border: 1px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--sd-gold), var(--sd-gold-light));
  color: var(--sd-emerald-deep);
  border-color: var(--sd-gold);
  box-shadow: var(--sd-shadow-gold);
}
.btn-gold:hover {
  color: var(--sd-emerald-deep);
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -10px rgba(212, 175, 55, 0.65);
}
.btn-outline-gold {
  background: transparent;
  color: var(--sd-gold);
  border: 1px solid var(--sd-gold);
}
.btn-outline-gold:hover {
  background: var(--sd-gold);
  color: var(--sd-emerald-deep);
  transform: translateY(-3px);
}
.btn-ghost {
  background: var(--sd-glass);
  color: var(--sd-cream);
  border: 1px solid rgba(245, 240, 225, 0.18);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--sd-emerald-light);
  color: var(--sd-cream);
  border-color: var(--sd-gold);
}

/* ---------- Section scaffolding ---------- */
.sd-section {
  position: relative;
  padding: 6.5rem 0;
  overflow: hidden;
}
.sd-section--tight { padding: 4.5rem 0; }
.sd-section--lg { padding: 8rem 0; }

.sd-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.sd-bg-fixed-overlay {
  position: relative;
}
.sd-bg-fixed-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 32, 23, 0.55), rgba(6, 32, 23, 0.85));
  pointer-events: none;
}

.sd-grain {
  position: relative;
}
.sd-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.5;
}

/* ---------- Header ---------- */
.sd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 1.1rem 0;
  background: rgba(6, 32, 23, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  transition: all var(--sd-transition);
}
.sd-header.is-scrolled {
  padding: 0.55rem 0;
  background: rgba(6, 32, 23, 0.92);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
.sd-header__logo img {
  height: 48px;
  width: auto;
  transition: height var(--sd-transition);
}
.sd-header.is-scrolled .sd-header__logo img { height: 38px; }

.sd-nav__link {
  font-family: var(--sd-sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sd-cream);
  padding: 0.4rem 0.9rem;
  position: relative;
  transition: color var(--sd-transition);
}
.sd-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--sd-gold);
  transition: all var(--sd-transition);
  transform: translateX(-50%);
}
.sd-nav__link:hover,
.sd-nav__link.active { color: var(--sd-gold); }
.sd-nav__link:hover::after,
.sd-nav__link.active::after { width: 70%; }

.sd-header__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  font-size: 0.82rem;
  line-height: 1.3;
}
.sd-header__contact span,
.sd-header__contact a {
  color: var(--sd-cream-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.sd-header__contact i { color: var(--sd-gold); font-size: 0.78rem; }

.sd-burger {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--sd-gold);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--sd-transition);
}
.sd-burger:hover { background: var(--sd-gold); color: var(--sd-emerald-deep); }

/* Offcanvas menu */
.sd-offcanvas {
  background: var(--sd-emerald-deep);
  color: var(--sd-cream);
  border-left: 1px solid rgba(212, 175, 55, 0.3);
}
.sd-offcanvas .offcanvas-title {
  font-family: var(--sd-serif);
  color: var(--sd-gold);
  font-size: 1.6rem;
}
.sd-offcanvas .btn-close { filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg); }
.sd-offcanvas__link {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--sd-sans);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--sd-cream);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: all var(--sd-transition);
}
.sd-offcanvas__link:hover { color: var(--sd-gold); padding-left: 0.6rem; }
.sd-offcanvas__link i { color: var(--sd-gold); width: 22px; }

/* ---------- Hero ---------- */
.sd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.sd-hero__title {
  font-family: var(--sd-serif);
  font-weight: 700;
  background: linear-gradient(120deg, var(--sd-cream) 30%, var(--sd-gold) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sd-hero__lead {
  font-size: 1.18rem;
  max-width: 620px;
  color: var(--sd-cream-dim);
}

.sd-badge-offline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.1rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--sd-gold);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sd-gold);
}
.sd-badge-offline i { font-size: 0.7rem; }

.sd-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem;
  background: var(--sd-glass);
  border: 1px solid rgba(245, 240, 225, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  color: var(--sd-cream);
}
.sd-hero__chip i { color: var(--sd-gold); }
.sd-hero__chip strong { color: var(--sd-gold); font-weight: 700; }

/* ---------- Bento Grid ---------- */
.sd-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1.2rem;
}
.sd-bento__cell {
  position: relative;
  border-radius: var(--sd-radius);
  padding: 1.6rem;
  overflow: hidden;
  background: var(--sd-emerald-light);
  border: 1px solid rgba(212, 175, 55, 0.18);
  transition: all var(--sd-transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sd-bento__cell:hover {
  transform: translateY(-6px);
  border-color: var(--sd-gold);
  box-shadow: var(--sd-shadow-gold);
}
.sd-bento__cell--lg { grid-column: span 2; grid-row: span 2; }
.sd-bento__cell--wide { grid-column: span 2; }
.sd-bento__cell--tall { grid-row: span 2; }
.sd-bento__cell--bg {
  background-size: cover;
  background-position: center;
}
.sd-bento__cell--bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 32, 23, 0.2), rgba(6, 32, 23, 0.92));
}
.sd-bento__cell > * { position: relative; z-index: 1; }
.sd-bento__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--sd-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.sd-bento__crown {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, var(--sd-gold), var(--sd-gold-light));
  color: var(--sd-emerald-deep);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Cinema Reel ---------- */
.sd-cinema {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sd-cinema__play {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid var(--sd-gold);
  color: var(--sd-gold);
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--sd-transition);
  cursor: pointer;
}
.sd-cinema__play:hover {
  background: var(--sd-gold);
  color: var(--sd-emerald-deep);
  transform: scale(1.08);
  box-shadow: var(--sd-shadow-gold);
}
.sd-cinema__badge {
  position: absolute;
  top: 18%;
  right: 6%;
  padding: 1.2rem 1.6rem;
  background: var(--sd-glass-dark);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--sd-radius);
  backdrop-filter: blur(14px);
  text-align: left;
  max-width: 240px;
}
.sd-cinema__progress {
  position: absolute;
  bottom: 8%;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(245, 240, 225, 0.18);
  border-radius: 2px;
}
.sd-cinema__progress-bar {
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, var(--sd-gold), var(--sd-gold-light));
  border-radius: 2px;
}
.sd-cinema__marker {
  position: absolute;
  top: -10px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--sd-cream-dim);
}
.sd-cinema__marker i { color: var(--sd-gold); }
.sd-cinema__marker-dot {
  width: 12px; height: 12px;
  background: var(--sd-gold);
  border-radius: 50%;
  border: 2px solid var(--sd-emerald-deep);
}

/* ---------- Metrics / Counters ---------- */
.sd-counter {
  font-family: var(--sd-serif);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4rem);
  background: linear-gradient(120deg, var(--sd-gold), var(--sd-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.sd-counter__label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sd-cream-dim);
  margin-top: 0.6rem;
}
.sd-counter__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--sd-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* ---------- Marquee ---------- */
.sd-marquee {
  display: flex;
  overflow: hidden;
  gap: 3rem;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.sd-marquee__track {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
  animation: sd-marquee 28s linear infinite;
  align-items: center;
}
.sd-marquee__item {
  font-family: var(--sd-serif);
  font-size: 1.5rem;
  color: var(--sd-cream-dim);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.sd-marquee__item i { color: var(--sd-gold); font-size: 1rem; }
@keyframes sd-marquee {
  to { transform: translateX(-100%); }
}

/* ---------- Thematic Arenas (curtains) ---------- */
.sd-arenas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  height: 560px;
}
.sd-arena {
  position: relative;
  border-radius: var(--sd-radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: flex var(--sd-transition);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.sd-arena::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 32, 23, 0.35), rgba(6, 32, 23, 0.92));
  transition: opacity var(--sd-transition);
}
.sd-arena__content { position: relative; z-index: 1; }
.sd-arena__title {
  font-family: var(--sd-serif);
  font-size: 1.8rem;
  color: var(--sd-cream);
  margin-bottom: 0.4rem;
}
.sd-arena__spec {
  font-size: 0.85rem;
  color: var(--sd-cream-dim);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--sd-transition);
}
.sd-arena:hover { flex: 1.6; }
.sd-arena:hover .sd-arena__spec { max-height: 200px; opacity: 1; margin-top: 0.6rem; }
.sd-arena:hover::before { background: linear-gradient(180deg, rgba(6, 32, 23, 0.2), rgba(6, 32, 23, 0.95)); }

/* ---------- Configurator / Calculator ---------- */
.sd-config {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.sd-config__panel {
  padding: 2.2rem;
  background: var(--sd-glass-dark);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--sd-radius);
  backdrop-filter: blur(14px);
}
.sd-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(245, 240, 225, 0.18);
  border-radius: 4px;
  outline: none;
}
.sd-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--sd-gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}
.sd-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--sd-gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.sd-config__total {
  font-family: var(--sd-serif);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--sd-gold), var(--sd-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sd-addon {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: rgba(15, 82, 56, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--sd-radius-sm);
  cursor: pointer;
  transition: all var(--sd-transition);
}
.sd-addon:hover { border-color: var(--sd-gold); }
.sd-addon.is-active { background: rgba(212, 175, 55, 0.15); border-color: var(--sd-gold); }
.sd-addon__check {
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 1px solid var(--sd-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sd-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.sd-addon.is-active .sd-addon__check { background: var(--sd-gold); color: var(--sd-emerald-deep); }

/* ---------- Package Matrix ---------- */
.sd-tier {
  position: relative;
  padding: 2.2rem;
  background: var(--sd-emerald-light);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--sd-radius);
  transition: all var(--sd-transition);
  height: 100%;
}
.sd-tier:hover { transform: translateY(-6px); border-color: var(--sd-gold); box-shadow: var(--sd-shadow-gold); }
.sd-tier--featured {
  border: 2px solid var(--sd-gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), var(--sd-emerald-light));
}
.sd-tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, var(--sd-gold), var(--sd-gold-light));
  color: var(--sd-emerald-deep);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sd-tier__price {
  font-family: var(--sd-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--sd-gold);
}
.sd-tier__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  font-size: 0.92rem;
  color: var(--sd-cream-dim);
}
.sd-tier__feature i { color: var(--sd-gold); }
.sd-tier__feature--off i { color: rgba(245, 240, 225, 0.25); }
.sd-tier__feature--off { color: rgba(245, 240, 225, 0.4); }

/* ---------- Testimonials ---------- */
.sd-quote {
  position: relative;
  padding: 2.4rem;
  background: var(--sd-glass-dark);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--sd-radius-lg);
  backdrop-filter: blur(14px);
  height: 100%;
}
.sd-quote__mark {
  font-family: var(--sd-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--sd-gold);
  opacity: 0.5;
}
.sd-quote__text {
  font-family: var(--sd-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--sd-cream);
  line-height: 1.5;
}
.sd-stars { color: var(--sd-gold); font-size: 0.85rem; letter-spacing: 0.15em; }

/* ---------- Cards (generic) ---------- */
.sd-card {
  position: relative;
  padding: 2rem;
  background: var(--sd-emerald-light);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--sd-radius);
  transition: all var(--sd-transition);
  height: 100%;
}
.sd-card:hover { transform: translateY(-6px); border-color: var(--sd-gold); box-shadow: var(--sd-shadow-gold); }
.sd-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--sd-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.sd-card__img {
  border-radius: var(--sd-radius-sm);
  overflow: hidden;
  margin-bottom: 1.2rem;
  aspect-ratio: 4/3;
}
.sd-card__img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Game Switcher ---------- */
.sd-game-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.sd-game-tab {
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: var(--sd-cream-dim);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--sd-transition);
}
.sd-game-tab:hover { color: var(--sd-gold); border-color: var(--sd-gold); }
.sd-game-tab.is-active {
  background: linear-gradient(135deg, var(--sd-gold), var(--sd-gold-light));
  color: var(--sd-emerald-deep);
  border-color: var(--sd-gold);
}
.sd-game-panel { display: none; }
.sd-game-panel.is-active { display: block; animation: sd-fade 0.5s ease; }
@keyframes sd-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Timeline ---------- */
.sd-timeline {
  position: relative;
  padding-left: 2.5rem;
}
.sd-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--sd-gold), transparent);
}
.sd-timeline__item {
  position: relative;
  padding-bottom: 2rem;
}
.sd-timeline__item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 18px; height: 18px;
  background: var(--sd-gold);
  border: 3px solid var(--sd-emerald-deep);
  border-radius: 50%;
}
.sd-timeline__time {
  font-family: var(--sd-serif);
  font-size: 1.3rem;
  color: var(--sd-gold);
  font-weight: 700;
}

/* ---------- Form ---------- */
.sd-form { display: grid; gap: 1.2rem; }
.sd-form__label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sd-gold);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}
.sd-form__input,
.sd-form__select,
.sd-form__textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(15, 82, 56, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--sd-radius-sm);
  color: var(--sd-cream);
  font-family: var(--sd-sans);
  font-size: 1rem;
  transition: all var(--sd-transition);
}
.sd-form__input:focus,
.sd-form__select:focus,
.sd-form__textarea:focus {
  outline: none;
  border-color: var(--sd-gold);
  background: rgba(15, 82, 56, 0.6);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}
.sd-form__input::placeholder,
.sd-form__textarea::placeholder { color: rgba(245, 240, 225, 0.4); }
.sd-form__textarea { resize: vertical; min-height: 120px; }

.sd-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.sd-chip {
  padding: 0.55rem 1.1rem;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: var(--sd-cream-dim);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--sd-transition);
}
.sd-chip:hover { border-color: var(--sd-gold); color: var(--sd-gold); }
.sd-chip.is-active { background: var(--sd-gold); color: var(--sd-emerald-deep); border-color: var(--sd-gold); }

/* Notification toast */
.sd-notification {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 2000;
  padding: 1.2rem 1.6rem;
  background: var(--sd-emerald-light);
  border: 1px solid var(--sd-gold);
  border-left: 4px solid var(--sd-gold);
  border-radius: var(--sd-radius-sm);
  color: var(--sd-cream);
  box-shadow: var(--sd-shadow-deep);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 380px;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.sd-notification.is-visible { transform: translateX(0); }
.sd-notification i { color: var(--sd-gold); font-size: 1.4rem; }
.sd-notification__title { font-weight: 700; color: var(--sd-gold); margin-bottom: 0.2rem; }
.sd-notification__text { font-size: 0.88rem; color: var(--sd-cream-dim); }

/* ---------- Cookie banner ---------- */
.sd-cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1900;
  padding: 1.4rem 1.8rem;
  background: var(--sd-emerald-deep);
  border: 1px solid var(--sd-gold);
  border-radius: var(--sd-radius);
  box-shadow: var(--sd-shadow-deep);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  transform: translateY(140%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.sd-cookie.is-visible { transform: translateY(0); }
.sd-cookie__text { flex: 1; min-width: 260px; color: var(--sd-cream-dim); font-size: 0.9rem; }
.sd-cookie__text a { color: var(--sd-gold); text-decoration: underline; }
.sd-cookie__btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ---------- Floating HUD ---------- */
.sd-hud {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.7rem;
  background: rgba(6, 32, 23, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6), 0 0 30px -8px rgba(212, 175, 55, 0.3);
}
.sd-hud__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  background: transparent;
  border: none;
  color: var(--sd-cream);
  font-size: 0.82rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--sd-transition);
  text-decoration: none;
}
.sd-hud__item:hover { background: rgba(212, 175, 55, 0.15); color: var(--sd-gold); }
.sd-hud__item i { color: var(--sd-gold); }
.sd-hud__live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--sd-cream-dim);
}
.sd-hud__pulse {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: sd-pulse 1.6s ease-in-out infinite;
}
@keyframes sd-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}
.sd-hud__divider { width: 1px; height: 22px; background: rgba(212, 175, 55, 0.3); }

/* ---------- Footer ---------- */
.sd-footer {
  background: var(--sd-graphite);
  color: var(--sd-cream-dim);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
}
.sd-footer__brand {
  font-family: var(--sd-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  background: linear-gradient(120deg, var(--sd-cream), var(--sd-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  letter-spacing: 0.02em;
}
.sd-footer__col h5 {
  font-family: var(--sd-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sd-gold);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.sd-footer__link {
  display: block;
  padding: 0.35rem 0;
  color: var(--sd-cream-dim);
  font-size: 0.92rem;
  transition: all var(--sd-transition);
}
.sd-footer__link:hover { color: var(--sd-gold); padding-left: 0.4rem; }
.sd-footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--sd-cream-dim);
}
.sd-footer__contact i { color: var(--sd-gold); margin-top: 4px; }
.sd-footer__offline {
  padding: 1.4rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--sd-radius-sm);
  font-size: 0.88rem;
  color: var(--sd-cream-dim);
}
.sd-footer__offline strong { color: var(--sd-gold); }
.sd-footer__clocks {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--sd-cream-dim);
}
.sd-footer__clock span { color: var(--sd-gold); font-weight: 600; }
.sd-footer__social {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--sd-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--sd-transition);
}
.sd-footer__social:hover { background: var(--sd-gold); color: var(--sd-emerald-deep); transform: translateY(-3px); }
.sd-footer__bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 1.6rem;
  margin-top: 3rem;
  font-size: 0.82rem;
  color: rgba(245, 240, 225, 0.4);
}

/* ---------- Legal pages ---------- */
.sd-legal-article {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.sd-legal-article h3 { color: var(--sd-gold); margin-bottom: 0.8rem; }
.sd-legal-article p { color: var(--sd-cream-dim); }
.sd-legal-num {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--sd-gold);
  align-items: center;
  justify-content: center;
  font-family: var(--sd-serif);
  font-weight: 700;
  margin-right: 0.8rem;
}

/* ---------- Map ---------- */
.sd-map {
  border-radius: var(--sd-radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  filter: grayscale(0.3) contrast(1.1);
}
.sd-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Accordion override ---------- */
.accordion-item {
  background: var(--sd-emerald-light);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--sd-radius-sm) !important;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.accordion-button {
  background: var(--sd-emerald-light);
  color: var(--sd-cream);
  font-family: var(--sd-sans);
  font-weight: 600;
  padding: 1.1rem 1.4rem;
}
.accordion-button:not(.collapsed) {
  background: rgba(212, 175, 55, 0.1);
  color: var(--sd-gold);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: var(--sd-gold); }
.accordion-button::after { filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg); }
.accordion-body { color: var(--sd-cream-dim); padding: 1.1rem 1.4rem; }

/* ---------- Nav tabs override ---------- */
.nav-tabs { border-bottom: 1px solid rgba(212, 175, 55, 0.25); gap: 0.5rem; }
.nav-tabs .nav-link {
  color: var(--sd-cream-dim);
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.3rem;
  font-weight: 500;
}
.nav-tabs .nav-link:hover { color: var(--sd-gold); }
.nav-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--sd-gold), var(--sd-gold-light));
  color: var(--sd-emerald-deep);
}

/* ---------- Utility ---------- */
.sd-text-gold { color: var(--sd-gold) !important; }
.sd-text-cream { color: var(--sd-cream) !important; }
.sd-bg-emerald { background: var(--sd-emerald) !important; }
.sd-bg-glass { background: var(--sd-glass-dark); backdrop-filter: blur(14px); }
.sd-rounded { border-radius: var(--sd-radius) !important; }
.sd-rounded-lg { border-radius: var(--sd-radius-lg) !important; }
.sd-vh-100 { min-height: 100vh; }
.sd-vh-80 { min-height: 80vh; }
.sd-z-2 { position: relative; z-index: 2; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .sd-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .sd-bento__cell--lg, .sd-bento__cell--wide { grid-column: span 2; }
  .sd-arenas { grid-template-columns: 1fr; height: auto; }
  .sd-arena { min-height: 220px; }
  .sd-arena:hover { flex: none; }
  .sd-arena__spec { max-height: 200px; opacity: 1; margin-top: 0.6rem; }
  .sd-config { grid-template-columns: 1fr; }
  .sd-cinema__badge { position: static; max-width: 100%; margin: 1.5rem auto; }
  .sd-cinema__progress { position: static; margin: 2rem 0; }
}

@media (max-width: 767.98px) {
  .sd-section { padding: 4rem 0; }
  .sd-hero { min-height: auto; padding: 7rem 0 4rem; text-align: center; }
  .sd-hero__lead { margin: 0 auto; }
  .sd-bento { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .sd-bento__cell--lg, .sd-bento__cell--wide, .sd-bento__cell--tall { grid-column: span 1; grid-row: span 1; }
  .sd-cinema { min-height: 60vh; }
  .sd-hud { left: 12px; right: 12px; transform: none; justify-content: center; flex-wrap: wrap; }
  .sd-hud__live { display: none; }
  .sd-cookie { left: 12px; right: 12px; bottom: 12px; }
  .sd-footer { padding: 3rem 0 1.5rem; }
  .sd-notification { left: 12px; right: 12px; max-width: none; }
}

@media (max-width: 575.98px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .sd-game-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
  .sd-game-tab { white-space: nowrap; }
}
