/* ==========================================================================
   Red Dead Gamer Zone — Khandwa
   Dark, gritty arcade theme. Single committed dark look (no light mode).
   ========================================================================== */

:root {
  /* Palette and type from the Red Dead Gamer Zone logo — concept 7a,
     "six chambers": the revolver cylinder as the token. */
  --ink:        #0b0a0a;   /* page base */
  --ink-2:      #111010;   /* alternating section */
  --panel:      #141212;   /* cards */
  --panel-2:    #1b1918;   /* card hover / raised */
  --line:       #262322;   /* hairlines */

  --red:        #e11d21;   /* brand red */
  --red-hot:    #ff4a4a;   /* hover / glow */
  --red-deep:   #7a1114;   /* engraved ring, gradients */

  --text:       #f5f2f0;   /* brand cream */
  --text-mute:  #8a8380;
  --text-dim:   #6d6764;

  /* Channels for the two reds, so translucent tints derive from the tokens
     above instead of repeating literals: rgb(var(--red-rgb) / .4) */
  --red-rgb:     225 29 33;
  --red-hot-rgb: 255 74 74;
  --ink-rgb:     11 10 10;

  --display:  'Barlow Condensed', 'Arial Narrow', sans-serif;  /* headings */
  --wordmark: 'Rye', Georgia, serif;                           /* "Red Dead" */
  --mark:     'Archivo Black', 'Arial Black', sans-serif;      /* the RD hub */
  --body: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
  --radius: 14px;
  --radius-sm: 9px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

/* The UA stylesheet's [hidden] { display: none } loses to any author rule that
   sets display (our .gallery and .gallery-empty are both display: grid), which
   would leave elements toggled off in JS still on screen. */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  /* keeps anchor targets clear of the sticky header */
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

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

img, svg, iframe { display: block; max-width: 100%; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-hot); text-decoration: underline; }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 34px);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ── Typography ──────────────────────────────────────────────────────────── */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

/* Tracking tightens as type grows and opens up as it shrinks; leading moves the
   opposite way. One value across the scale is always wrong at one end of it. */
h1 { letter-spacing: -.015em; line-height: .92; }
h2 {
  font-size: clamp(2.3rem, 5.5vw, 3.9rem);
  letter-spacing: -.005em;
  line-height: .96;
}
h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  letter-spacing: .025em;
  line-height: 1.1;
}

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

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin: 0 0 .85rem;
}

.section-sub {
  color: var(--text-mute);
  max-width: 56ch;
  margin: 1rem 0 0;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .78em 1.5em;
  border: 1px solid transparent;
  border-radius: 100px;
  background: var(--btn-bg);
  color: inherit;
  font: inherit;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { text-decoration: none; }
/* Only lift on devices that genuinely hover. On touch, :hover latches after a
   tap and the button stays raised until you tap elsewhere. */
@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
}
/* The press is the feedback, and it lands on pointer-down rather than release. */
.btn:active {
  transform: scale(.97);
  transition-duration: .09s;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 20px -8px rgb(var(--red-rgb) / .8);
}
.btn-primary:hover {
  --btn-bg: linear-gradient(135deg, var(--red-hot) 0%, var(--red) 100%);
  box-shadow: 0 12px 28px -10px rgb(var(--red-hot-rgb) / .9);
}

.btn-ghost {
  --btn-bg: rgba(255, 255, 255, .04);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  --btn-bg: rgba(255, 255, 255, .08);
  border-color: var(--red);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}
.btn-outline:hover { --btn-bg: rgba(255, 255, 255, .12); border-color: #fff; }

.btn-lg { padding: .95em 1.9em; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; margin-top: 1.4rem; }

/* ── Header ──────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(var(--ink-rgb) / .72);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.site-header.scrolled {
  background: rgb(var(--ink-rgb) / .94);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--text); }
.brand:hover { text-decoration: none; }

.brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  /* the token carries its own glow instead of sitting in a tile */
  filter: drop-shadow(0 0 7px rgb(var(--red-rgb) / .45));
}
.brand-mark svg { width: 100%; height: 100%; }

/* Static solid mark, coloured from the tokens. The chambers and centre bore are
   cut through rather than filled, so the mark sits on any background. Only the
   hero emblem animates — at header size a spin is just noise. */
.mark-body { fill: var(--red); }

/* Horizontal lockup from the logo sheet: Rye "Red Dead" over a letterspaced
   Barlow "GAMER ZONE" in brand red. */
.brand-text { display: grid; gap: .18em; line-height: 1; }
.brand-text strong {
  font-family: var(--wordmark);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0;
}
.brand-text em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 700;
  font-size: .6rem;
  letter-spacing: .32em;
  /* letter-spacing trails the last glyph; pad the head to keep it optically centred */
  padding-left: .32em;
  text-transform: uppercase;
  color: var(--red);
}

.nav { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }
.nav > a:not(.btn) {
  position: relative;
  color: var(--text-mute);
  font-size: .93rem;
  font-weight: 500;
  padding: .35rem 0;
}
.nav > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav > a:not(.btn):hover,
.nav > a.active { color: var(--text); text-decoration: none; }
.nav > a:not(.btn):hover::after,
.nav > a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: .4rem; padding: .6em 1.25em; font-size: .9rem; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 13vh, 8.5rem) 0 clamp(3.5rem, 8vh, 5.5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Layers paint top-to-bottom in this list. Drop a wide photo of the floor at
     img/hero.jpg and it slots in beneath the scrim; with no file there the
     gradients underneath carry the hero on their own, so it never looks broken. */
  background:
    radial-gradient(ellipse 70% 55% at 18% 0%, rgb(var(--red-rgb) / .22), transparent 65%),
    radial-gradient(ellipse 60% 50% at 92% 15%, rgba(122, 17, 20, .28), transparent 60%),
    /* Weighted to the left so the copy always has a dark field under it while the
       right half stays photographic. Without this the headline fights whatever
       bright thing happens to be in frame. */
    linear-gradient(100deg,
      rgb(var(--ink-rgb) / .93) 0%,
      rgb(var(--ink-rgb) / .78) 38%,
      rgb(var(--ink-rgb) / .42) 68%,
      rgb(var(--ink-rgb) / .55) 100%),
    linear-gradient(180deg, rgb(var(--ink-rgb) / .30) 0%, rgb(var(--ink-rgb) / .55) 62%, var(--ink) 100%),
    url('img/hero.jpg') center / cover no-repeat,
    linear-gradient(180deg, #1a0d0e 0%, var(--ink) 72%);
}
/* faint scanline grit over the hero */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: repeating-linear-gradient(
    0deg, rgba(0, 0, 0, .22) 0 1px, transparent 1px 3px
  );
}

.hero-inner { position: relative; }

.hero-title {
  font-size: clamp(2.9rem, 8vw, 6.2rem);
  margin-bottom: 1.4rem;
}
.hero-title span { display: block; }
.hero-title .accent {
  background: linear-gradient(100deg, var(--red-hot) 0%, var(--red) 78%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 54ch;
  font-size: clamp(1.02rem, 1.9vw, 1.2rem);
  color: var(--text-mute);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.1rem; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 2.2rem;
  list-style: none;
  margin: 3rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  font-size: .93rem;
  color: var(--text-mute);
}
.hero-facts strong { color: var(--text); font-weight: 600; }
/* Deliberately not flex: a flex container trims the whitespace around inline
   <strong> runs, which would glue "Near" to "Club Fox". */
.hero-facts li { display: block; }

.dot {
  display: inline-block;
  vertical-align: middle;
  margin-right: .45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ad66d;
  box-shadow: 0 0 0 3px rgba(74, 214, 109, .2);
}
.dot.open { animation: pulse 2.4s ease-in-out infinite; }
.rating { color: var(--text); font-weight: 600; }
.rating:hover { color: var(--red-hot); }
.rating .star { color: var(--red); margin-left: .15em; }
.rating-count { color: var(--text-dim); }

.dot.shut {
  background: var(--text-dim);
  box-shadow: 0 0 0 3px rgba(109, 103, 100, .25);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 214, 109, .2); }
  50%      { box-shadow: 0 0 0 7px rgba(74, 214, 109, 0); }
}


/* ── Sections ────────────────────────────────────────────────────────────── */

.section { padding: clamp(3.8rem, 9vh, 6.5rem) 0; }
.section-alt { background: var(--ink-2); border-block: 1px solid var(--line); }
.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }

/* ── Zones ───────────────────────────────────────────────────────────────── */

.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 1.15rem;
}

.zone-card {
  position: relative;
  isolation: isolate;
  padding: 1.9rem 1.6rem 1.6rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .28s var(--ease), border-color .28s var(--ease),
              background .28s var(--ease);
}
/* red wash that sweeps in on hover */
.zone-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 90% 70% at 0% 0%, rgb(var(--red-rgb) / .16), transparent 70%);
  opacity: 0;
  transition: opacity .28s var(--ease);
}
.zone-card:hover {
  transform: translateY(-5px);
  border-color: rgb(var(--red-rgb) / .5);
  background: var(--panel-2);
}
.zone-card:hover::before { opacity: 1; }

.zone-num {
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-dim);
  display: block;
  margin-bottom: .7rem;
  transition: -webkit-text-stroke-color .28s var(--ease);
}
.zone-card:hover .zone-num { -webkit-text-stroke-color: var(--red-hot); }

.zone-card h3 { margin-bottom: .6rem; }
.zone-card p { color: var(--text-mute); font-size: .95rem; }

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
}
.tags li {
  padding: .28em .7em;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, .03);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Rates ───────────────────────────────────────────────────────────────── */

.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.rate-card {
  position: relative;
  padding: 2rem 1.7rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rate-card.featured {
  background: linear-gradient(170deg, var(--panel-2) 0%, var(--panel) 100%);
  border-color: rgb(var(--red-rgb) / .55);
  box-shadow: 0 22px 50px -30px rgb(var(--red-rgb) / .75);
}

.rate-flag {
  position: absolute;
  top: -.75rem;
  left: 1.7rem;
  padding: .3em .8em;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rate-desc { color: var(--text-dim); font-size: .85rem; margin: .4rem 0 0; }

.rate-price {
  font-family: var(--display);
  font-size: 1.9rem;
  color: var(--text);
  margin: 1rem 0 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: .1em;
}
.rate-price span { font-size: 3.2rem; line-height: .9; color: var(--red-hot); }
.rate-price small {
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-left: .5em;
}

/* Group deal row — the "cheaper with more people" hook */
.rate-group {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  /* wrap between the label and the price, never inside either */
  flex-wrap: wrap;
  gap: .3rem .6rem;
  margin: -.6rem 0 1.3rem;
  padding: .7rem .9rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  background: rgb(var(--red-rgb) / .06);
}
.rate-group > span {
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.rate-group strong {
  white-space: nowrap;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
}
.rate-group strong small {
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 500;
  color: var(--text-dim);
}

.rate-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.rate-list li {
  position: relative;
  padding-left: 1.55rem;
  font-size: .93rem;
  color: var(--text-mute);
}
.rate-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
  transform: rotate(45deg);
}

.rate-note {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--red);
  background: rgb(var(--red-rgb) / .07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .93rem;
  color: var(--text-mute);
}

/* ── Booking form ────────────────────────────────────────────────────────── */

.book-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}
/* A grid track's automatic minimum is its content's min-content width, and
   native date/time inputs report a wide one — without this the column grows
   past the page and the whole section overflows on small screens. */
.book-layout > *,
.field-row > * { min-width: 0; }

.book-intro h2 { margin-bottom: 1.2rem; }
.book-intro > p { color: var(--text-mute); max-width: 46ch; }
.book-alt { margin-top: 1.5rem; font-size: .93rem; color: var(--text-mute); }

.book-form {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  /* minmax(0, 1fr) rather than a bare auto/1fr track: an auto track is sized
     by its content's max-content width, and native date/time inputs report a
     wide one, which would push the controls out past the card's padding. */
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .4rem;
}
.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.field label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field label .opt { font-weight: 400; letter-spacing: .02em; text-transform: none; color: var(--text-dim); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .72em .85em;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: .97rem;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 3.2em; }
.field input, .field select, .field textarea { min-width: 0; }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--text-dim); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgb(var(--red-rgb) / .2);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.field select {
  appearance: none;
  /* chevron drawn inline so there's no image request */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%23b3a49c' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9em center;
  background-size: 11px;
  padding-right: 2.4em;
}

/* Dark-mode the native date/time picker icons */
.field input[type="date"],
.field input[type="time"] { color-scheme: dark; }

.form-error {
  margin: 0;
  padding: .7rem .9rem;
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgb(var(--red-rgb) / .12);
  font-size: .9rem;
  color: var(--text);
}

.form-hint {
  margin: 0;
  font-size: .82rem;
  color: var(--text-dim);
  text-align: center;
}

.book-form .btn-block { margin-top: .4rem; }

/* ── Events ──────────────────────────────────────────────────────────────── */

/* ── Good to know ─────────────────────────────────────────────────────────── */

.know-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.know-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .93rem;
  color: var(--text-mute);
}
/* a drawn tick, so there's no icon font to load */
.know-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: .45em;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}


.events-layout {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: start;
}

.events-copy h2 { margin-bottom: 1.2rem; }
.events-copy p { color: var(--text-mute); max-width: 54ch; }

.social-row { display: grid; gap: .8rem; margin-top: 2rem; }

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}
.social-card:hover {
  text-decoration: none;
  transform: translateX(4px);
  border-color: rgb(var(--red-rgb) / .5);
  background: var(--panel-2);
}
.social-card > svg { width: 26px; height: 26px; flex: none; color: var(--red-hot); }
.social-card span { display: grid; }
.social-card strong { font-weight: 600; font-size: .97rem; }
.social-card small { color: var(--text-dim); font-size: .83rem; }
.social-arrow {
  margin-left: auto;
  color: var(--text-dim);
  font-size: 1.15rem;
  transition: transform .22s var(--ease), color .22s var(--ease);
}
.social-card:hover .social-arrow { transform: translateX(4px); color: var(--red-hot); }

.events-card {
  padding: 1.9rem 1.7rem;
  background: linear-gradient(165deg, rgb(var(--red-rgb) / .12) 0%, var(--panel) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.events-card h3 { margin-bottom: .8rem; }
.events-card p { color: var(--text-mute); font-size: .95rem; }

.mini-facts { margin: 1.5rem 0 0; display: grid; gap: .1rem; }
.mini-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-top: 1px solid var(--line);
}
.mini-facts dt { color: var(--text-dim); font-size: .88rem; }
.mini-facts dd { margin: 0; font-weight: 600; font-size: .9rem; text-align: right; }

/* ── Gallery ─────────────────────────────────────────────────────────────── */

/* One block, not five pictures: the tiles butt straight up against each other
   and a single rounded, clipped container holds the lot. Four columns by two
   rows of square cells, so the whole mosaic is 2:1. */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  aspect-ratio: 2 / 1;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.shot {
  margin: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;   /* clips the hover zoom at the seam */
  background: var(--panel);
}
/* the feature frame anchors the mosaic at twice the size of the rest */
.shot-feature { grid-column: span 2; grid-row: span 2; }

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease), filter .45s var(--ease);
}
.shot:hover img { transform: scale(1.05); filter: saturate(1.15); }

/* Placeholder state: shown when the photo file isn't there yet. */
.shot[data-empty] {
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgb(var(--red-rgb) / .18), transparent 62%),
    repeating-linear-gradient(135deg, var(--panel) 0 11px, var(--panel-2) 11px 22px);
}
.shot[data-empty] img { display: none; }
.shot[data-empty]::after {
  content: attr(data-empty);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.gallery-note { margin-top: 1.4rem; font-size: .92rem; color: var(--text-dim); }

/* Stand-in for the grid before any photos are added */
.gallery-empty {
  display: grid;
  justify-items: start;
  gap: 1.3rem;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 100% at 0% 0%, rgb(var(--red-rgb) / .1), transparent 65%),
    var(--panel);
}
.gallery-empty p { max-width: 52ch; color: var(--text-mute); }

/* ── Visit ───────────────────────────────────────────────────────────────── */

.visit-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.visit-info { display: grid; gap: 1.6rem; }

.info-block {
  padding: 1.5rem 1.5rem 1.6rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.info-block h3 {
  font-size: 1.05rem;
  letter-spacing: .14em;
  color: var(--red-hot);
  margin-bottom: 1rem;
}
.info-block address { font-style: normal; color: var(--text-mute); line-height: 1.85; }
.info-block .btn { margin-top: 1.2rem; }
.plus-code {
  margin: .9rem 0 0;
  font-size: .85rem;
  color: var(--text-dim);
}
.plus-code strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9rem;
  color: var(--text);
  letter-spacing: .02em;
}

.hours { width: 100%; border-collapse: collapse; font-size: .93rem; }
.hours th, .hours td { padding: .55rem 0; text-align: left; vertical-align: top; }
.hours th { font-weight: 500; color: var(--text-mute); }
.hours td { text-align: right; font-weight: 600; }
.hours tr + tr th, .hours tr + tr td { border-top: 1px solid var(--line); }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.contact-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.contact-list a { font-weight: 600; }
.contact-list span { color: var(--text-dim); font-size: .82rem; text-align: right; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  min-height: 420px;
  height: 100%;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  /* tones the bright Google map into the dark palette */
  filter: invert(.9) hue-rotate(180deg) saturate(.72) contrast(.95);
}

/* ── CTA strip ───────────────────────────────────────────────────────────── */

.cta-strip {
  padding: clamp(3rem, 8vh, 5rem) 0;
  background:
    radial-gradient(ellipse 80% 120% at 50% 120%, rgb(var(--red-hot-rgb) / .35), transparent 70%),
    linear-gradient(120deg, var(--red-deep) 0%, #5c0f0b 55%, #2a0a08 100%);
  text-align: center;
}
.cta-inner h2 { margin-bottom: 1.8rem; color: #fff; }
.cta-inner .hero-actions { justify-content: center; margin-top: 0; }

/* ── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
  padding: 3rem 0 2.2rem;
  background: #0a0908;
  border-top: 1px solid var(--line);
}
.footer-inner { display: grid; gap: 1.8rem; }
.brand-lockup { display: inline-flex; align-items: center; gap: .7rem; }
.footer-brand p { color: var(--text-dim); font-size: .9rem; margin-top: .9rem; }
.footer-brand .brand-text strong { font-size: 1.4rem; }

.footer-nav { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; }
.footer-nav a { color: var(--text-mute); font-size: .92rem; }
.footer-nav a:hover { color: var(--red-hot); }

.footer-legal {
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: .85rem;
}

/* ── Scroll reveal ───────────────────────────────────────────────────────── */

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

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .book-layout,
  .events-layout,
  .visit-layout { grid-template-columns: 1fr; }
  .map-frame { min-height: 320px; }
  .map-frame iframe { min-height: 320px; }
}

@media (max-width: 700px) {
  /* two columns: the feature keeps its 2x2 block, the rest pair up beneath it */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    aspect-ratio: 1 / 2;
  }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }

  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    /* 68px === .header-inner min-height, so the panel sits flush under it */
    inset: 68px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem clamp(18px, 5vw, 34px) 1.5rem;
    background: rgb(var(--ink-rgb) / .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    /* hidden until toggled */
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s var(--ease), opacity .25s var(--ease), visibility .25s;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }

  .nav > a:not(.btn) {
    padding: .95rem 0;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--line);
  }
  .nav > a:not(.btn)::after { display: none; }
  .nav-cta { margin: 1.1rem 0 0; padding: .85em 1.25em; }

  .hero-facts { gap: .6rem 1.4rem; font-size: .88rem; }
  .hero-actions .btn { flex: 1 1 auto; }
  .contact-list li { flex-direction: column; gap: .1rem; }
  .contact-list span { text-align: left; }
}

@media (max-width: 480px) {
  .rate-price span { font-size: 2.7rem; }
  /* date + time side by side gets too cramped to tap accurately */
  .field-row { grid-template-columns: minmax(0, 1fr); }
}

/* ── Motion & print ──────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Reduced motion isn't "no feedback" — it's feedback without the vestibular
     part. Movement goes; colour and opacity stay as a short cross-fade. */
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .12s !important;
    transition-property: opacity, color, background-color, border-color !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── §14 The other two accessibility signals ─────────────────────────────── */

@media (prefers-reduced-transparency: reduce) {
  /* frost the glass into a solid surface rather than dropping the blur alone,
     which would leave text sitting on whatever scrolls underneath */
  .site-header,
  .site-header.scrolled { background: var(--ink); backdrop-filter: none; }
  .nav { background: var(--ink); backdrop-filter: none; }
}

@media (prefers-contrast: more) {
  :root {
    --text-mute: #cdc5c1;
    --text-dim:  #ada4a0;
    --line:      #4a423f;
  }
  .site-header, .site-header.scrolled { background: var(--ink); backdrop-filter: none; }
  .zone-card, .rate-card, .info-block, .book-form, .social-card, .events-card {
    border-color: var(--text-dim);
  }
  .btn-ghost { border-color: var(--text); }
}

@media print {
  .site-header, .nav-toggle, .cta-strip, .map-frame, .gallery { display: none; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
