/* ==========================================================================
   Onnelliset Hetket — global styles
   Theme: "Nordic aurora" — deep midnight blue, aurora gradients, gold accents.
   Library-first: Bootstrap handles layout, this file only carries the theme.
   ========================================================================== */

:root {
  /* Palette — midnight, not pure black */
  --oh-ink: #0a1120;
  --oh-ink-2: #0e1830;
  --oh-ink-3: #142141;
  --oh-line: rgba(158, 178, 220, 0.16);
  --oh-text: #e9edf6;
  --oh-muted: #9aa8c2;
  --oh-teal: #3ee6c4;
  --oh-green: #7de3a5;
  --oh-violet: #9d7bff;
  --oh-gold: #e9c87e;
  --oh-danger-soft: #5b2333;

  --oh-grad-aurora: linear-gradient(100deg, var(--oh-teal), var(--oh-green) 45%, var(--oh-violet));
  --oh-grad-gold: linear-gradient(100deg, #f3d9a0, var(--oh-gold) 60%, #c99a4b);

  --oh-font-display: "Fraunces", Georgia, serif;
  --oh-font-body: "Manrope", system-ui, -apple-system, sans-serif;

  --oh-radius: 1.25rem;
  --oh-radius-sm: 0.75rem;
  --oh-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);

  /* Re-map Bootstrap's own tokens so utilities follow the theme */
  --bs-body-bg: var(--oh-ink);
  --bs-body-color: var(--oh-text);
  --bs-heading-color: var(--oh-text);
  --bs-link-color: var(--oh-teal);
  --bs-link-hover-color: var(--oh-green);
  --bs-border-color: var(--oh-line);
}

/* ---------- Base ---------- */

html {
  scroll-behavior: smooth;overflow-x:hidden
}

body {
  background-color: var(--oh-ink);
  color: var(--oh-text);
  font-family: var(--oh-font-body);
  /* faint starfield wash built from gradients only — no svg allowed here */
  background-image:
    radial-gradient(1200px 500px at 85% -10%, rgba(157, 123, 255, 0.12), transparent 60%),
    radial-gradient(900px 420px at -10% 8%, rgba(62, 230, 196, 0.10), transparent 60%);
  background-repeat: no-repeat;
  overflow-x: hidden;
}

::selection {
  background: rgba(62, 230, 196, 0.35);
  color: #fff;
}

h1, h2, h3, .h1, .h2, .h3, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--oh-font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4, h5, h6, .h4, .h5, .h6 {
  font-family: var(--oh-font-body);
  font-weight: 700;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--oh-teal);
}

a:hover {
  color: var(--oh-green);
}

.text-muted, .text-secondary {
  color: var(--oh-muted) !important;
}

/* ---------- Reusable section furniture ---------- */

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  overflow: hidden;
}

.section--tint {
  background-color: var(--oh-ink-2);
}

.section--deep {
  background-color: var(--oh-ink);
}

/* Sections that carry a photo background get the inline overlay from markup */
.section--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section--image .section__inner {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oh-teal);
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--oh-grad-aurora);
}

.section__title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  margin-bottom: 0;
}

.section__lead {
  color: var(--oh-muted);
  font-size: 1.06rem;
  max-width: 46rem;
}

.text-gradient {
  background: var(--oh-grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gold {
  color: var(--oh-gold);
}

/* Soft aurora blob — drop into any section, purely decorative */
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.aurora-orb--teal {
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(62, 230, 196, 0.35), transparent 65%);
}

.aurora-orb--violet {
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(157, 123, 255, 0.30), transparent 65%);
}

.aurora-orb--gold {
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(233, 200, 126, 0.22), transparent 65%);
}

/* Thin glowing divider */
.glow-line {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(62, 230, 196, 0.55), rgba(157, 123, 255, 0.55), transparent);
}

/* ---------- Buttons ---------- */

.btn {
  --bs-btn-border-radius: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-aurora {
  background: var(--oh-grad-aurora);
  color: #06121c;
  border: 0;
  box-shadow: 0 14px 34px -14px rgba(62, 230, 196, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-aurora:hover, .btn-aurora:focus {
  color: #06121c;
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 20px 44px -14px rgba(62, 230, 196, 0.65);
}

.btn-ghost {
  border: 1px solid var(--oh-line);
  color: var(--oh-text);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.btn-ghost:hover, .btn-ghost:focus {
  color: var(--oh-text);
  border-color: rgba(62, 230, 196, 0.6);
  background: rgba(62, 230, 196, 0.08);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--oh-grad-gold);
  color: #241a05;
  border: 0;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.btn-gold:hover, .btn-gold:focus {
  color: #241a05;
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* ---------- Header ---------- */

.topbar {
  background: var(--oh-ink-2);
  border-bottom: 1px solid var(--oh-line);
  font-size: 0.82rem;
  color: var(--oh-muted);
}

.topbar a {
  color: var(--oh-muted);
}

.topbar a:hover {
  color: var(--oh-teal);
}

.topbar .fa-solid, .topbar .fa-regular {
  color: var(--oh-teal);
}

.site-header .navbar {
  position: relative;
  background: rgba(10, 17, 32, 0.82);
  border-bottom: 1px solid var(--oh-line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Blur lives on a pseudo-layer: backdrop-filter on the navbar itself would
   trap the fixed offcanvas drawer inside the bar's box on mobile */
.site-header .navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}

.site-header .navbar.is-scrolled {
  background: rgba(10, 17, 32, 0.96);
  box-shadow: 0 12px 34px -18px rgba(0, 0, 0, 0.8);
}

.navbar-brand {
  font-family: var(--oh-font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--oh-text) !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-brand .brand__accent {
  color: var(--oh-teal);
}

.site-header .nav-link {
  color: var(--oh-muted);
  font-weight: 600;
  font-size: 0.88rem;
  padding-inline: 0.6rem;
  position: relative;
  white-space: nowrap;
}

.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.35rem;
  height: 2px;
  background: var(--oh-grad-aurora);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-header .nav-link:hover, .site-header .nav-link.active {
  color: var(--oh-text);
}

.site-header .nav-link:hover::after, .site-header .nav-link.active::after {
  transform: scaleX(1);
}

.site-header .navbar .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar-toggler {
  border-color: var(--oh-line);
  color: var(--oh-teal);
  font-size: 1.1rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(62, 230, 196, 0.25);
}

/* Offcanvas (mobile menu) follows the dark theme */
.offcanvas {
  background: var(--oh-ink-2);
  color: var(--oh-text);
  border-left: 1px solid var(--oh-line);
}

/* Drawer-only nav styling — must not leak into the expanded desktop bar */
@media (max-width: 1199.98px) {
  .offcanvas .nav-link {
    color: var(--oh-text);
    font-size: 1.05rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--oh-line);
  }
}

.offcanvas .btn-close {
  filter: invert(1);
  opacity: 0.7;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(6rem, 12vw, 9.5rem) 0 clamp(5rem, 9vw, 7rem);
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 20% 20%, rgba(62, 230, 196, 0.10), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.05;
}

.hero__lead {
  color: #cfd8ea;
  font-size: 1.12rem;
  max-width: 40rem;
}

.hero__panel {
  background: rgba(14, 24, 48, 0.66);
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius);
  backdrop-filter: blur(12px);
  box-shadow: var(--oh-shadow);
}

/* Small page hero used on inner pages */
.page-hero {
  position: relative;
  padding: clamp(5rem, 9vw, 7.5rem) 0 clamp(3.5rem, 6vw, 5rem);
  background-size: cover;
  background-position: center;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  --bs-breadcrumb-divider-color: var(--oh-muted);
  --bs-breadcrumb-item-active-color: var(--oh-teal);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--oh-muted);
}

/* ---------- Cards ---------- */

.card-oh {
  background: linear-gradient(160deg, rgba(20, 33, 65, 0.72), rgba(14, 24, 48, 0.9));
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius);
  color: var(--oh-text);
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-oh:hover {
  transform: translateY(-6px);
  border-color: rgba(62, 230, 196, 0.45);
  box-shadow: var(--oh-shadow);
}

.card-oh__media {
  position: relative;
  overflow: hidden;
}

.card-oh__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
  transition: transform 0.6s ease;
}

.card-oh:hover .card-oh__media img {
  transform: scale(1.06);
}

.card-oh__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(10, 17, 32, 0.78);
  border: 1px solid var(--oh-line);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oh-teal);
}

.card-oh__body {
  padding: 1.5rem;
}

.card-oh__title {
  font-family: var(--oh-font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.card-oh__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  font-size: 0.82rem;
  color: var(--oh-muted);
}

.card-oh__meta .fa-solid {
  color: var(--oh-gold);
  margin-right: 0.35rem;
}

.card-oh__price {
  font-family: var(--oh-font-display);
  font-size: 1.5rem;
  color: var(--oh-gold);
}

.card-oh__price small {
  font-family: var(--oh-font-body);
  font-size: 0.78rem;
  color: var(--oh-muted);
  font-weight: 600;
}

/* Icon chip used across feature blocks */
.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: rgba(62, 230, 196, 0.10);
  border: 1px solid rgba(62, 230, 196, 0.35);
  color: var(--oh-teal);
  font-size: 1.2rem;
}

.icon-chip--violet {
  background: rgba(157, 123, 255, 0.10);
  border-color: rgba(157, 123, 255, 0.4);
  color: var(--oh-violet);
}

.icon-chip--gold {
  background: rgba(233, 200, 126, 0.10);
  border-color: rgba(233, 200, 126, 0.4);
  color: var(--oh-gold);
}

/* Numbered process steps */
.step-card {
  position: relative;
  padding: 1.75rem;
  background: var(--oh-ink-2);
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius);
  height: 100%;
}

.step-card__num {
  font-family: var(--oh-font-display);
  font-size: 2.6rem;
  line-height: 1;
  background: var(--oh-grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Stats */
.stat {
  text-align: center;
  padding: 1.25rem;
}

.stat__num {
  font-family: var(--oh-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  background: var(--oh-grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  color: var(--oh-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Checklist */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
  color: var(--oh-muted);
}

.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--oh-teal);
}

/* Framed imagery — tilted card with gradient border */
.img-frame {
  position: relative;
  border-radius: var(--oh-radius);
  padding: 0.6rem;
  background: linear-gradient(150deg, rgba(62, 230, 196, 0.5), rgba(157, 123, 255, 0.4) 55%, rgba(233, 200, 126, 0.4));
}

.img-frame img {
  border-radius: calc(var(--oh-radius) - 0.45rem);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-frame--tilt {
  transform: rotate(-2deg);
}

.img-frame--tilt-r {
  transform: rotate(2deg);
}

/* Floating badge that sits on imagery */
.float-badge {
  position: absolute;
  z-index: 3;
  background: rgba(10, 17, 32, 0.85);
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius-sm);
  backdrop-filter: blur(10px);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--oh-shadow);
}

.float-badge .fa-solid {
  color: var(--oh-gold);
}

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--oh-line);
  border-bottom: 1px solid var(--oh-line);
  background: var(--oh-ink-2);
  padding: 1.1rem 0;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--oh-font-display);
  font-size: 1.15rem;
  color: var(--oh-muted);
  white-space: nowrap;
}

.marquee__item .fa-solid {
  color: var(--oh-teal);
  font-size: 0.7rem;
}

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Timeline ---------- */

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--oh-teal), var(--oh-violet));
  opacity: 0.55;
}

.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--oh-ink);
  border: 2px solid var(--oh-teal);
  box-shadow: 0 0 0 4px rgba(62, 230, 196, 0.15);
}

.timeline__year {
  font-family: var(--oh-font-display);
  color: var(--oh-gold);
  font-size: 1.1rem;
}

/* ---------- Reviews ---------- */

.review-card {
  background: var(--oh-ink-2);
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius);
  padding: 1.75rem;
  height: 100%;
  position: relative;
}

.review-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  font-size: 1.6rem;
  color: rgba(157, 123, 255, 0.35);
}

.review-card__stars {
  color: var(--oh-gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.review-card__avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--oh-grad-aurora);
  color: #06121c;
  font-weight: 800;
  font-size: 0.95rem;
}

/* ---------- Accordion ---------- */

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: var(--oh-line);
  --bs-accordion-color: var(--oh-muted);
  --bs-accordion-btn-color: var(--oh-text);
  --bs-accordion-btn-bg: var(--oh-ink-2);
  --bs-accordion-active-bg: var(--oh-ink-3);
  --bs-accordion-active-color: var(--oh-text);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(62, 230, 196, 0.2);
}

.accordion-item {
  border-radius: var(--oh-radius-sm) !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 1px solid var(--oh-line);
}

.accordion-button {
  font-weight: 700;
}

.accordion-button::after {
  /* keep Bootstrap arrow behaviour but tint it via filter on the default icon */
  filter: invert(0.8) sepia(0.4) saturate(3) hue-rotate(110deg);
}

/* ---------- Forms ---------- */

.form-control, .form-select {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--oh-line);
  color: var(--oh-text);
  border-radius: var(--oh-radius-sm);
  padding: 0.8rem 1rem;
}

.form-control:focus, .form-select:focus {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--oh-teal);
  color: var(--oh-text);
  box-shadow: 0 0 0 0.2rem rgba(62, 230, 196, 0.18);
}

.form-control::placeholder {
  color: #72809c;
}

.form-label {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--oh-muted);
}

.form-check-input {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--oh-line);
}

.form-check-input:checked {
  background-color: var(--oh-teal);
  border-color: var(--oh-teal);
}

/* ---------- Modal (quick contact) ---------- */

.modal-content {
  background: var(--oh-ink-2);
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius);
  color: var(--oh-text);
}

.modal-header {
  border-bottom-color: var(--oh-line);
}

.modal-footer {
  border-top-color: var(--oh-line);
}

.modal .btn-close {
  filter: invert(1);
  opacity: 0.7;
}

/* ---------- Toast notifications ---------- */

.toast-stack {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toast-oh {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(14, 24, 48, 0.95);
  border: 1px solid rgba(62, 230, 196, 0.5);
  border-radius: var(--oh-radius-sm);
  padding: 0.9rem 1.2rem;
  color: var(--oh-text);
  box-shadow: var(--oh-shadow);
  backdrop-filter: blur(10px);
  animation: toast-in 0.35s ease;
}

.toast-oh .fa-solid {
  color: var(--oh-teal);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Cookie banner ---------- */

.cookie-banner {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1080;
  max-width: 26rem;
  background: rgba(14, 24, 48, 0.96);
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius);
  padding: 1.4rem;
  box-shadow: var(--oh-shadow);
  backdrop-filter: blur(12px);
}

.cookie-banner[hidden] {
  display: none;
}

/* ---------- Disclaimer (responsible gaming) ---------- */

.disclaimer {
  background: linear-gradient(160deg, rgba(20, 33, 65, 0.6), rgba(14, 24, 48, 0.9));
  border: 1px solid var(--oh-line);
  border-radius: var(--oh-radius);
  padding: clamp(1.6rem, 3vw, 2.6rem);
}

.disclaimer__warn {
  background: rgba(91, 35, 51, 0.35);
  border: 1px solid rgba(214, 106, 133, 0.4);
  border-radius: var(--oh-radius-sm);
  padding: 1.4rem 1.6rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  border: 2px solid var(--oh-gold);
  color: var(--oh-gold);
  font-weight: 800;
  font-size: 1.05rem;
}

/* ---------- Team ---------- */

.team-card {
  text-align: center;
}

.team-card__photo {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid rgba(62, 230, 196, 0.4);
  padding: 0.25rem;
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  border-radius: calc(var(--oh-radius) + 0.5rem);
  overflow: hidden;
  border: 1px solid var(--oh-line);
  background-size: cover;
  background-position: center;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 6vw, 4.5rem);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--oh-ink-2);
  border-top: 1px solid var(--oh-line);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  color: var(--oh-muted);
  font-size: 0.92rem;
}

.site-footer h6 {
  color: var(--oh-text);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: var(--oh-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--oh-teal);
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  align-items: flex-start;
}

.footer-contact .fa-solid {
  color: var(--oh-teal);
  margin-top: 0.25rem;
}

.footer-contact a {
  color: var(--oh-muted);
}

.footer-contact a:hover {
  color: var(--oh-teal);
}

.footer-bottom {
  border-top: 1px solid var(--oh-line);
  margin-top: 2.5rem;
  padding: 1.4rem 0;
  font-size: 0.82rem;
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}

/* Legal pages typography */
.legal-body h2, .legal-body h3 {
  margin-top: 0;
}

.legal-body p, .legal-body li {
  color: var(--oh-muted);
}

/* ---------- Responsive polish ---------- */

@media (max-width: 991.98px) {
  .hero__panel {
    margin-top: 2rem;
  }

  .topbar .topbar__item {
    font-size: 0.78rem;
  }
}

@media (max-width: 575.98px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
  }

  .toast-stack {
    left: 0.75rem;
    right: 0.75rem;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
