/* ==========================================================================
   Ravenz Realm — Gaming Lounge, Kingston JA
   Brand: gold + electric blue on black, neon arcade energy.
   ========================================================================== */

:root {
  --gold:        #f5c542;
  --gold-deep:   #d29a15;
  --blue:        #3ea8f5;
  --blue-deep:   #1b6fbf;
  --magenta:     #c13be0;
  --ink:         #08070c;
  --ink-2:       #0f0d18;
  --ink-3:       #17142408;
  --panel:       rgba(255, 255, 255, 0.045);
  --panel-line:  rgba(255, 255, 255, 0.10);
  --text:        #f2f0f7;
  --text-dim:    #a9a4bd;
  --text-faint:  #6f6a86;

  --shell: 1180px;
  --radius: 16px;
  --radius-lg: 24px;

  --font-display: 'Anton', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
  --font-body: 'Barlow', 'Avenir Next Condensed', 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient nebula wash behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 620px at 12% -5%,  rgba(62, 168, 245, 0.16), transparent 62%),
    radial-gradient(760px 560px at 92% 8%,   rgba(193, 59, 224, 0.14), transparent 60%),
    radial-gradient(1100px 800px at 50% 108%, rgba(245, 197, 66, 0.09), transparent 62%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.012em;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: #000; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout primitives ---------- */

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }

/* Interior-page intro: sits directly under the nav, so it needs far less air
   above and below than a mid-page section. */
.page-head {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}
.page-head + .section,
.page-head + .section--tight { padding-top: clamp(1.5rem, 3vw, 2.5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-size: clamp(2.2rem, 6vw, 3.9rem);
  max-width: 20ch;
}

.lede {
  color: var(--text-dim);
  font-size: clamp(1.02rem, 1.6vw, 1.17rem);
  max-width: 58ch;
  margin-top: 1.35rem;
}

/* Matches the gold chrome wordmark in the Ravenz Realm logo — brand asset, not decoration. */
.grad-gold {
  background: linear-gradient(105deg, #fff3c9 0%, var(--gold) 38%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(140deg, #ffe9a8, var(--gold) 45%, var(--gold-deep));
  color: #17120a;
  box-shadow: 0 6px 26px -8px rgba(245, 197, 66, 0.65);
}
.btn--gold:hover { box-shadow: 0 12px 36px -8px rgba(245, 197, 66, 0.8); }

.btn--wa {
  background: #25d366;
  color: #05230f;
  box-shadow: 0 6px 26px -8px rgba(37, 211, 102, 0.6);
}
.btn--wa:hover { box-shadow: 0 12px 36px -8px rgba(37, 211, 102, 0.75); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--panel-line);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(245, 197, 66, 0.55);
  background: rgba(245, 197, 66, 0.07);
}

.btn--lg { padding: 1.1rem 2.1rem; font-size: 0.97rem; }
.btn--block { width: 100%; }

/* ---------- Alert bar ---------- */

.alertbar {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, var(--magenta), var(--blue-deep) 55%, var(--magenta));
  background-size: 220% 100%;
  animation: slide-bg 12s linear infinite;
  font-size: 0.86rem;
  font-weight: 600;
}
@keyframes slide-bg { to { background-position: 220% 0; } }

.alertbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding: 0.7rem 3rem 0.7rem 1.25rem;
  text-align: center;
}
.alertbar strong { color: #fff; }
.alertbar a {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 1px;
  font-weight: 700;
}
.alertbar a:hover { border-color: #fff; }

.alertbar__close {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}
.alertbar__close:hover { color: #fff; background: rgba(0, 0, 0, 0.2); }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 7, 12, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 74px;
}

.brand { display: flex; align-items: center; gap: 0.75rem; margin-right: auto; }
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  border: 1px solid rgba(245, 197, 66, 0.35);
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: 0.03em;
  line-height: 1;
}
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-top: 3px;
}

.nav__links { display: flex; align-items: center; gap: 1.9rem; }

/* :not(.btn) throughout — these rules are for plain nav links only. The CTA is a
   button and must keep its own colour, padding and underline behaviour. */
.nav__links a:not(.btn) {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__links a:not(.btn):hover,
.nav__links a:not(.btn)[aria-current='page'] { color: var(--text); }
.nav__links a:not(.btn):hover::after,
.nav__links a:not(.btn)[aria-current='page']::after { transform: scaleX(1); }

/* Flex would otherwise shrink the CTA below its label width; combined with the
   nowrap on .btn that clipped "WhatsApp us". */
.nav__links .btn { flex: none; }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s;
}
.nav__toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(1.15) contrast(1.05);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 7, 12, 0.96) 8%, rgba(8, 7, 12, 0.82) 42%, rgba(8, 7, 12, 0.45) 100%),
    linear-gradient(0deg, var(--ink) 2%, transparent 45%);
}

.hero__inner { max-width: 44rem; }

.hero h1 {
  font-size: clamp(2.9rem, 8.5vw, 5.6rem);
  margin-bottom: 1.4rem;
}
.hero h1 span { display: block; }

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--text-dim);
  max-width: 42ch;
  margin-bottom: 2.2rem;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2.2rem;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.proof__stat { display: flex; flex-direction: column; gap: 0.2rem; }
.proof__stat b {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
  color: var(--gold);
}
.proof__stat span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
}

.openpill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--panel-line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.openpill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #46d97a;
  box-shadow: 0 0 0 4px rgba(70, 217, 122, 0.18);
}
.openpill[data-open='false'] .openpill__dot {
  background: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.18);
}

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

.marquee {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
  overflow: hidden;
  padding: 1.05rem 0;
}
.marquee__track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 2.6rem;
  white-space: nowrap;
}
.marquee span::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
}

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

.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  padding: 1.9rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid var(--panel-line);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease),
              background 0.3s var(--ease);
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(340px 200px at 50% -20%, rgba(245, 197, 66, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 66, 0.35);
}
.card:hover::after { opacity: 1; }

.card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(245, 197, 66, 0.18), rgba(62, 168, 245, 0.1));
  border: 1px solid rgba(245, 197, 66, 0.25);
  margin-bottom: 1.15rem;
}
.card__icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.7; }

.card h3 { font-size: 1.28rem; margin-bottom: 0.6rem; }
.card p { color: var(--text-dim); font-size: 0.94rem; line-height: 1.6; }

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.gallery figure {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 3 / 4;
  background: var(--ink-2);
}
.gallery figure.tall { grid-row: span 2; aspect-ratio: 3 / 8.15; }
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s;
  filter: saturate(1.05);
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.4rem 0.95rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: linear-gradient(0deg, rgba(8, 7, 12, 0.92), transparent);
  color: var(--text);
}

/* ---------- Feature split ---------- */

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--flip > *:first-child { order: 2; }

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Tournament panel ---------- */

.tourney {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(193, 59, 224, 0.35);
  background:
    linear-gradient(150deg, rgba(193, 59, 224, 0.16), rgba(27, 111, 191, 0.14) 60%, transparent),
    var(--ink-2);
  padding: clamp(2rem, 5vw, 3.4rem);
}
.tourney::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: radial-gradient(600px 300px at 85% 0%, rgba(193, 59, 224, 0.28), transparent 65%);
  pointer-events: none;
}
.tourney > * { position: relative; }

.tourney__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: center;
}

.tourney__flyer {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
  max-width: 340px;
  margin-inline: auto;
}

.speclist {
  display: grid;
  gap: 0;
  margin: 1.8rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.speclist div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.speclist dt, .speclist .k {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
  margin: 0;
}
.speclist dd, .speclist .v {
  margin: 0;
  font-weight: 600;
  text-align: right;
  color: var(--text);
}
.speclist .v em { font-style: normal; color: var(--gold); }

/* Countdown */
.countdown { display: flex; gap: 0.7rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.countdown div {
  min-width: 72px;
  padding: 0.7rem 0.5rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.countdown b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  color: #fff;
}
.countdown span {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
}

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

.rating-hero {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding: 1.4rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 197, 66, 0.28);
  background: linear-gradient(120deg, rgba(245, 197, 66, 0.1), transparent 70%);
  margin-bottom: 2.6rem;
}
.rating-hero__score {
  font-family: var(--font-display);
  font-size: 3.1rem;
  line-height: 1;
  color: var(--gold);
}
.stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.15em; }

.review {
  padding: 1.7rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--panel-line);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
}
.review footer {
  font-size: 0.8rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.review .stars { font-size: 0.85rem; }

/* ---------- Booking form ---------- */

.form {
  display: grid;
  gap: 1.05rem;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-line);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
}
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--panel-line);
  border-radius: 11px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.5);
}
.field select option { background: var(--ink-2); color: var(--text); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }

.form__note {
  font-size: 0.82rem;
  color: var(--text-faint);
  text-align: center;
}

/* ---------- Hours table ---------- */

.hours { width: 100%; border-collapse: collapse; }
.hours td {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}
.hours td:last-child { text-align: right; font-weight: 600; }
.hours tr[data-today] td { color: var(--gold); }
.hours tr[data-today] td:first-child::after {
  content: 'Today';
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(245, 197, 66, 0.16);
  border: 1px solid rgba(245, 197, 66, 0.35);
  color: var(--gold);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  margin-left: 0.6rem;
  vertical-align: middle;
}
.hours .closed { color: var(--text-faint); }

/* ---------- Info tiles ---------- */

.infotile {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: 14px;
  border: 1px solid var(--panel-line);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s, background 0.25s;
}
a.infotile:hover { border-color: rgba(245, 197, 66, 0.45); background: rgba(245, 197, 66, 0.06); }
.infotile svg { width: 21px; height: 21px; stroke: var(--gold); fill: none; stroke-width: 1.7; flex: none; margin-top: 3px; }
.infotile b { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.2rem; font-weight: 700; }
.infotile span { font-size: 0.98rem; }

/* ---------- Map ---------- */

.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--panel-line);
  min-height: 340px;
  height: 100%;
}
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: invert(0.92) hue-rotate(190deg) saturate(0.7) contrast(0.9); }

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

.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(2.6rem, 6vw, 4.4rem);
  text-align: center;
  border: 1px solid rgba(245, 197, 66, 0.3);
  background:
    radial-gradient(700px 340px at 50% 0%, rgba(245, 197, 66, 0.18), transparent 68%),
    linear-gradient(160deg, rgba(62, 168, 245, 0.1), transparent 60%),
    var(--ink-2);
}
.cta-band h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); margin-bottom: 1.1rem; }
.cta-band p { color: var(--text-dim); max-width: 50ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-band .hero__cta { justify-content: center; }

/* ---------- Store items ---------- */

.item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--panel-line);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.item:hover { transform: translateY(-4px); border-color: rgba(62, 168, 245, 0.45); }
.item__img { aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink-2); }
.item__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.item:hover .item__img img { transform: scale(1.05); }
.item__body { padding: 1.05rem 1.15rem 1.25rem; }
.item__body h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.item__body p { font-size: 0.86rem; color: var(--text-dim); }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid rgba(255, 255, 255, 0.09); }
.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2.5rem 1.35rem 0;
  position: relative;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--gold); }
.faq details > div {
  padding: 0 2.5rem 1.5rem 0;
  color: var(--text-dim);
  font-size: 0.98rem;
}

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

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  /* Extra bottom room so the floating WhatsApp button never covers the last line. */
  padding: clamp(3rem, 6vw, 4.5rem) 0 5.5rem;
  margin-top: clamp(3rem, 7vw, 6rem);
  background: rgba(0, 0, 0, 0.35);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer h4 {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer li a { color: var(--text-dim); font-size: 0.93rem; transition: color 0.2s; }
.footer li a:hover { color: var(--gold); }
.footer__about p { color: var(--text-dim); font-size: 0.92rem; max-width: 34ch; margin-top: 1rem; }

.socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  border: 1px solid var(--panel-line);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.25s var(--ease);
}
.socials a:hover { border-color: var(--gold); background: rgba(245, 197, 66, 0.1); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; fill: var(--text-dim); }
.socials a:hover svg { fill: var(--gold); }

.footer__base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.7);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 29px; height: 29px; fill: #05230f; }

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .split, .tourney__grid { grid-template-columns: 1fr; }
  .split--flip > *:first-child { order: 0; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery figure.tall { grid-row: span 1; aspect-ratio: 3 / 4; }
}

@media (max-width: 940px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    /* Solid, not translucent — the hero headline used to read straight through it. */
    background: #0b0a12;
    border-bottom: 1px solid var(--panel-line);
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.9);
    padding: 0.5rem 1.25rem 1.25rem;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(.btn) {
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  /* In the stacked menu the sliding underline collides with the row dividers,
     so mark the current page with colour instead. */
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links a:not(.btn)[aria-current='page'] { color: var(--gold); }
  .nav__links .btn { margin-top: 1.1rem; padding: 1rem 1.7rem; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .rating-hero { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
