/* ==========================================================
   Crawler World — site stylesheet (light)
   ========================================================== */

:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --ink: #10161d;
  --muted: #59677a;
  --line: #e2e8ef;
  --red: #e03a2e;
  --red-dark: #b52c22;
  --blue: #1f7fd1;
  --blue-dark: #1a68ab;
  --dark: #10161d;
  --radius: 16px;
  --header-h: 84px;
  --shadow-sm: 0 2px 8px rgba(16, 22, 29, 0.06);
  --shadow-md: 0 12px 32px rgba(16, 22, 29, 0.10);
  --shadow-lg: 0 24px 64px rgba(16, 22, 29, 0.16);
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--red); color: #fff; }

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

a { color: var(--blue); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Reveal-on-scroll ---------- */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--rv-delay, 0s);
}
.rv.in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 38px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s ease, border-color 0.2s ease;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(-1px); }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); color: #fff; }

.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); color: #fff; }

.btn-ghost { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: rgba(255, 255, 255, 0.55); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.14); }

/* ---------- Top tabs (Our Sites strip, ported from the old site) ---------- */
#toptabcontainer-flex {
  width: 100%;
  min-width: 960px;
  padding: 5px 0 0 0;
  background: #dcdcdc;
}
#toptabcontainer-flex #toptabs,
#toptabcontainer-flex #oursites {
  margin: auto;
  max-width: 1440px;
}
#toptabcontainer-flex #oursites {
  display: flex;
  width: 90%;
  align-items: flex-end;
  justify-content: flex-start;
}
#toptabcontainer-flex #oursites > div {
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  border-right: 1px solid #e9e9e9;
  flex: 1;
  height: 40px;
  max-width: 200px;
}
#toptabcontainer-flex #oursites > div.active,
#toptabcontainer-flex #oursites > div.active:before,
#toptabcontainer-flex #oursites > div.active:after {
  background-color: #ffffff;
}
#toptabcontainer-flex #oursites > div:before {
  transform: skew(-10deg);
  content: " ";
  width: 15px;
  height: 100%;
  background-color: #f2f2f2;
  margin-right: -10px;
  margin-left: -10px;
  border-left: 1px solid #ddd;
  border-top-right-radius: 6px;
  z-index: 10;
}
#toptabcontainer-flex #oursites > div:first-child:before {
  border-top-left-radius: 6px;
}
#toptabcontainer-flex #oursites > div:after {
  transform: skew(10deg);
  content: " ";
  width: 15px;
  height: 100%;
  background-color: #f2f2f2;
  margin-right: -10px;
  margin-left: -10px;
  border-top-right-radius: 6px;
  z-index: 10;
}
#toptabcontainer-flex #oursites > div a,
#toptabcontainer-flex #oursites > div span.non-clickable-tab {
  display: flex;
  justify-content: center;
  width: 100%;
}
#toptabcontainer-flex #oursites img {
  height: auto;
  width: 55%;
  max-width: 140px;
  max-height: 30px;
  margin-left: 10px;
  object-fit: contain;
  z-index: 11;
  align-self: flex-start;
}
#toptabcontainer-flex #oursites img:hover { filter: initial; }
@media (max-width: 1000px) {
  #toptabcontainer-flex { display: none !important; }
}

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--dark);
  color: #cdd7e1;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 16px;
}
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar a:hover { color: #fff; opacity: 0.85; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 22, 29, 0.08);
}
.site-header .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 52px; width: auto; transition: transform 0.3s var(--ease-out); }
.brand:hover img { transform: scale(1.04); }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  position: relative;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  padding: 6px 2px;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav a:not(.btn):hover::after,
.nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--red); }
.nav .btn { font-size: 1.05rem; padding: 9px 24px; }
.nav a.btn, .nav a.btn:hover { color: #fff; }

.nav-toggle { display: none; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, width 0.3s var(--ease-out), background 0.2s ease;
}
.nav-burger span:nth-child(2) { width: 18px; align-self: flex-end; }
.nav-burger:hover span { background: var(--red); }
.nav-burger:hover span:nth-child(2) { width: 26px; }

@media (max-width: 980px) {
  .nav-burger { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out);
  }
  .nav a { padding: 14px 24px; border-bottom: 1px solid var(--line); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin: 14px 24px 20px; text-align: center; }

  /* menu items cascade in when the panel opens */
  .nav a {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity 0.3s ease, transform 0.45s var(--ease-out);
  }
  .nav-toggle:checked ~ .nav { max-height: 720px; }
  .nav-toggle:checked ~ .nav a { opacity: 1; transform: none; }
  .nav-toggle:checked ~ .nav a:nth-child(1) { transition-delay: 0.05s; }
  .nav-toggle:checked ~ .nav a:nth-child(2) { transition-delay: 0.1s; }
  .nav-toggle:checked ~ .nav a:nth-child(3) { transition-delay: 0.15s; }
  .nav-toggle:checked ~ .nav a:nth-child(4) { transition-delay: 0.2s; }
  .nav-toggle:checked ~ .nav a:nth-child(5) { transition-delay: 0.25s; }
  .nav-toggle:checked ~ .nav a:nth-child(6) { transition-delay: 0.3s; }
  .nav-toggle:checked ~ .nav a:nth-child(7) { transition-delay: 0.35s; }
  .nav-toggle:checked ~ .nav a:nth-child(8) { transition-delay: 0.42s; }
  .nav-toggle:checked ~ .nav a:nth-child(9) { transition-delay: 0.5s; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero video,
.hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 13, 16, 0.6) 0%, rgba(10, 13, 16, 0.35) 50%, rgba(10, 13, 16, 0.72) 100%);
}
.hero .content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 160px;
  max-width: 920px;
}
.hero .kicker,
.hero h1,
.hero p,
.hero .actions {
  opacity: 0;
  animation: heroUp 0.9s var(--ease-out) forwards;
}
.hero .kicker { animation-delay: 0.15s; }
.hero h1 { animation-delay: 0.3s; }
.hero p { animation-delay: 0.45s; }
.hero .actions { animation-delay: 0.6s; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: none; }
}
.hero .kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  transform: skewX(-8deg);
}
.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #e4ebf2;
  max-width: 720px;
  margin: 0 auto 36px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}
.hero .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page hero (subpages) */
.page-hero {
  position: relative;
  padding: 100px 24px 120px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 17, 22, 0.78) 0%, rgba(13, 17, 22, 0.66) 100%), var(--hero-img, none) center/cover no-repeat, var(--dark);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #fff;
  margin-bottom: 14px;
  opacity: 0;
  animation: heroUp 0.8s var(--ease-out) 0.15s forwards;
}
.page-hero p {
  color: #d4dde6;
  max-width: 660px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0;
  animation: heroUp 0.8s var(--ease-out) 0.3s forwards;
}
.page-hero a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.page-hero.checkered::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 16px;
  z-index: 3;
  background: repeating-conic-gradient(#e9edf1 0% 25%, #10161d 0% 50%);
  background-size: 32px 32px;
  opacity: 0.9;
}
/* Optional video background for page heroes */
.page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero.has-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 17, 22, 0.72) 0%, rgba(13, 17, 22, 0.6) 100%);
}
.page-hero.has-video h1,
.page-hero.has-video p { position: relative; z-index: 2; }

/* ---------- Price card (Scalextric) ---------- */
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 44px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--blue);
}
.price-card .price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
}
.price-card .per {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 22px;
}
.price-card ul { list-style: none; text-align: left; max-width: 260px; margin: 0 auto; }
.price-card ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 14px; height: 14px;
  background: var(--blue);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -34px 0 34px;
  position: relative;
  z-index: 3;
  box-shadow: var(--shadow-md);
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tick 26s linear infinite;
}
.ticker span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  white-space: nowrap;
  padding: 0 28px;
  position: relative;
}
.ticker span::after {
  content: "";
  position: absolute;
  right: -5px; top: 50%;
  width: 9px; height: 9px;
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-50%) rotate(45deg);
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------- Sections ---------- */
section { padding: 92px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { text-align: center; max-width: 740px; margin: 0 auto 56px; }
.section-head .eyebrow,
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.section-head h2::after {
  content: "";
  display: block;
  width: 64px; height: 4px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-out) 0.3s;
}
.section-head.in h2::after,
.section-head:not(.rv) h2::after { transform: scaleX(1); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Stat strip ---------- */
.stats { padding: 30px 0 10px; position: relative; z-index: 4; }
.stats .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stats .stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  padding: 26px 16px 20px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.stats .stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stats .stat h3 { font-size: 2.1rem; color: var(--blue); }
.stats .stat:nth-child(odd) h3 { color: var(--red); }
.stats .stat p {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media (max-width: 800px) { .stats .grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(224, 58, 46, 0.1), rgba(31, 127, 209, 0.1));
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.35s var(--ease-out), background 0.3s ease;
}
.card .icon svg { width: 28px; height: 28px; }
.card:hover .icon { transform: rotate(-6deg) scale(1.1); }
.card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card a.more {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
}
.card a.more:hover { color: var(--red-dark); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 22, 29, 0.45));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery a:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); z-index: 2; }
.gallery a:hover::after { opacity: 1; }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery a:hover img { transform: scale(1.08); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 13, 17, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  transform: scale(0.94);
  transition: transform 0.3s var(--ease-out);
}
.lightbox.open img { transform: scale(1); }
.lightbox .close {
  position: absolute;
  top: 20px; right: 26px;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.8;
}
.lightbox .close:hover { opacity: 1; }

/* ---------- Split (text + media) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.split > div > p { color: var(--muted); margin-bottom: 14px; }
.split .media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: transform 0.4s var(--ease-out);
}
.split .media:hover { transform: rotate(0deg) scale(1.02); }
.split .media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 2;
}
.split ul { list-style: none; margin: 18px 0 28px; }
.split ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
}
.split ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--red);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Booking / widget panel ---------- */
.widget-panel {
  position: relative;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.widget-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: var(--blue);
  border-radius: var(--radius) var(--radius) 0 0;
}
.widget-panel iframe { max-width: 100% !important; }
.widget-panel .wheel-shield {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
}
.widget-panel .wheel-shield.off { pointer-events: none; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: linear-gradient(115deg, var(--red) 0%, #92221a 100%);
  border-radius: var(--radius);
  padding: 60px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: -50% -10%;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0 26px,
    rgba(255, 255, 255, 0.05) 26px 52px
  );
  animation: drift 24s linear infinite;
  pointer-events: none;
}
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(74px); }
}
.cta-banner > * { position: relative; }
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); color: #fff; }
.cta-banner p { color: rgba(255, 255, 255, 0.88); }
.cta-banner p a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cta-banner .btn { background: #fff; color: var(--red); }
.cta-banner .btn:hover { background: #f3f3f3; color: var(--red-dark); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-list details:hover { box-shadow: var(--shadow-md); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 60px 20px 26px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
  color: var(--red);
  transition: transform 0.3s var(--ease-out);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details .answer { padding: 0 26px 24px; color: var(--muted); }
.faq-list details[open] { border-color: var(--blue); }
.faq-list details[open] .answer { animation: fadeDown 0.35s var(--ease-out); }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Info / contact ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--blue); }
.info-card p, .info-card li { color: var(--muted); }
.info-card ul { list-style: none; }
.info-card li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.info-card li:last-child { border-bottom: none; }
.info-card li span:last-child { color: var(--ink); font-weight: 600; }
.info-card .addr { font-style: normal; line-height: 1.9; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }

/* ---------- Live stream ---------- */
.stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 22px;
}
.stream-card {
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.stream-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stream-card .frame { aspect-ratio: 16 / 9; background: #000; }
.stream-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.stream-card .label {
  padding: 14px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  color: #fff;
}
.live-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 0 0 rgba(224, 58, 46, 0.6);
  animation: ping 1.8s infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(224, 58, 46, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(224, 58, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 58, 46, 0); }
}

/* ---------- Video embed ---------- */
.video-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.video-embed:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #aeb9c5;
  padding: 68px 0 0;
  margin-top: 56px;
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: 108px;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.site-footer h4 { font-size: 1.15rem; margin-bottom: 16px; color: #fff; }
.site-footer p, .site-footer a { color: #aeb9c5; font-size: 0.95rem; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer .flogo img {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 10px;
}
.site-footer .social { display: flex; gap: 12px; margin-top: 18px; }
.site-footer .social a {
  width: 42px; height: 42px;
  border: 1px solid #2c3742;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: #cdd7e1;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.25s var(--ease-out);
}
.site-footer .social a svg { width: 20px; height: 20px; }
.site-footer .social a:hover { border-color: var(--red); color: #fff; transform: translateY(-3px); }
.partners {
  border-top: 1px solid #222c36;
  background: #f2f4f6;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partners img { height: 36px; width: auto; opacity: 0.8; transition: opacity 0.2s ease, transform 0.25s var(--ease-out); }
.partners a:hover img { opacity: 1; transform: translateY(-2px); }
.copyright {
  background: #0b0f13;
  padding: 20px 0;
  text-align: center;
  color: #5f6d7a;
  font-size: 0.85rem;
}
@media (max-width: 900px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .cols { grid-template-columns: 1fr; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rv { opacity: 1; transform: none; }
  .hero .kicker, .hero h1, .hero p, .hero .actions,
  .page-hero h1, .page-hero p { opacity: 1; animation: none; }
}
