:root {
  --bg: #09100d;
  --bg-alt: #0f1914;
  --bg-soft: #15241c;
  --surface: rgba(15, 25, 20, 0.88);
  --surface-strong: rgba(21, 35, 27, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --surface-pressed: rgba(255, 255, 255, 0.1);
  --state-hover: rgba(255, 255, 255, 0.08);
  --state-focus: rgba(255, 255, 255, 0.1);
  --state-pressed: rgba(255, 255, 255, 0.1);
  --state-dragged: rgba(255, 255, 255, 0.16);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text-high: rgba(255, 255, 255, 0.87);
  --text-soft: rgba(255, 255, 255, 0.74);
  --text-mid: rgba(255, 255, 255, 0.6);
  --text-low: rgba(255, 255, 255, 0.52);
  --text-disabled: rgba(255, 255, 255, 0.38);
  --gold: #d7b064;
  --gold-soft: #f0ddb4;
  --felt: #17724c;
  --felt-soft: #249065;
  --wood: #5a3623;
  --claret: #7d2530;
  --shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 16px 36px rgba(0, 0, 0, 0.24);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --step--1: 0.75rem;
  --step-0: 0.875rem;
  --step-1: 1rem;
  --step-2: 1.125rem;
  --step-3: 1.25rem;
  --motion-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --shell: min(1120px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  color: var(--text-high);
  background:
    radial-gradient(circle at top left, rgba(23, 114, 76, 0.28), transparent 28rem),
    radial-gradient(circle at 82% 10%, rgba(215, 176, 100, 0.18), transparent 18rem),
    linear-gradient(180deg, #09100d 0%, #0c1612 42%, #070b09 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--gold-soft);
}

p {
  margin: 0;
  color: var(--text-mid);
}

h1,
h2 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.1rem, 14vw, 5.8rem);
}

h2 {
  font-size: clamp(2.35rem, 9vw, 4rem);
}

h3 {
  margin: 0;
  font-size: var(--step-3);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

input,
textarea {
  color: var(--text-high);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section-panel {
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 176, 100, 0.1), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border-block: 1px solid var(--line);
}

.section-dark {
  background:
    radial-gradient(circle at 86% 18%, rgba(23, 114, 76, 0.16), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  border-block: 1px solid var(--line);
}

.section-news {
  background:
    radial-gradient(circle at 18% 16%, rgba(23, 114, 76, 0.18), transparent 20rem),
    radial-gradient(circle at 88% 22%, rgba(125, 37, 48, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.015));
  border-block: 1px solid var(--line);
}

.contact-section {
  background:
    radial-gradient(circle at 20% 24%, rgba(23, 114, 76, 0.16), transparent 22rem),
    radial-gradient(circle at 80% 18%, rgba(215, 176, 100, 0.12), transparent 16rem);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1208;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 16, 13, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
  background: #0f492f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: var(--step-1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand-copy small {
  display: block;
  color: var(--text-low);
  font-size: var(--step-0);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text-high);
  transition: transform 160ms ease, opacity 160ms 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);
}

.nav-links {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(12, 20, 16, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links a {
  padding: 12px 16px;
  border-radius: 16px;
  color: var(--text-mid);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--state-hover);
  color: var(--text-high);
}

.nav-cta {
  padding: 12px 16px;
  color: #1b1209 !important;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.hero {
  padding-top: 40px;
  overflow: clip;
}

.hero-layout,
.club-layout,
.news-layout,
.visit-layout,
.contact-layout {
  display: grid;
  gap: 32px;
}

.hero-copy {
  max-width: 40rem;
}

.eyebrow {
  margin-bottom: 12px;
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-lead {
  margin-top: 16px;
  max-width: 34rem;
  font-size: var(--step-2);
  color: var(--text-soft);
}

.title-accent {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 10px 20px rgba(215, 176, 100, 0.16));
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #1b1209;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 32px rgba(215, 176, 100, 0.16);
}

.button-primary:hover {
  color: #1b1209;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.button:active {
  transform: translateY(0);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text-mid);
  font-size: var(--step-0);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #69d58a;
  box-shadow: 0 0 0 6px rgba(105, 213, 138, 0.14);
}

.status-dot.is-closed {
  background: #d87569;
  box-shadow: 0 0 0 6px rgba(216, 117, 105, 0.14);
}

.hero-media {
  display: grid;
  gap: 16px;
}

.hero-main-photo,
.hero-mini-photo,
.feature-photo,
.game-card,
.info-card,
.point-card,
.visit-card,
.visit-inset,
.hours-card,
.contact-form,
.news-panel,
.news-notice,
.news-empty,
.event-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-soft);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hero-main-photo,
.feature-photo,
.game-card,
.hours-card,
.contact-form,
.news-panel,
.news-empty {
  border-radius: var(--radius-xl);
}

.hero-main-photo::before,
.hero-mini-photo::before,
.feature-photo::before,
.game-card::before,
.info-card::before,
.point-card::before,
.visit-card::before,
.visit-inset::before,
.hours-card::before,
.contact-form::before,
.news-panel::before,
.news-notice::before,
.news-empty::before,
.event-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.02) 38%, rgba(215, 176, 100, 0.18) 50%, rgba(255, 255, 255, 0.02) 62%, transparent 78%);
  opacity: 0;
  transform: translateX(-38%);
  transform-origin: center;
  pointer-events: none;
  transition: transform 460ms ease, opacity 220ms ease;
  z-index: 0;
}

.hero-main-photo > *,
.hero-mini-photo > *,
.feature-photo > *,
.game-card > *,
.info-card > *,
.point-card > *,
.visit-card > *,
.visit-inset > *,
.hours-card > *,
.contact-form > *,
.news-panel > *,
.news-notice > *,
.news-empty > *,
.event-card > * {
  position: relative;
  z-index: 1;
}

.hero-main-photo {
  aspect-ratio: 11 / 13;
}

.hero-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 840ms var(--motion-soft), filter 840ms var(--motion-soft);
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: -40px;
  padding-inline: 16px;
  position: relative;
  z-index: 1;
}

.hero-mini-photo {
  border-radius: var(--radius-md);
}

.hero-mini-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 720ms var(--motion-soft), filter 720ms var(--motion-soft);
}

.hero-mini-photo figcaption {
  padding: 12px 16px;
  color: var(--text-mid);
  font-size: var(--step-0);
  background: rgba(9, 16, 13, 0.92);
}

.hero-mini-photo:first-child img {
  object-position: center 58%;
}

.hero-mini-photo:last-child img {
  object-position: center 18%;
}

.info-band {
  padding-bottom: 24px;
}

.info-grid,
.club-points,
.games-grid,
.news-feed,
.footer-layout {
  display: grid;
  gap: 16px;
}

.info-card,
.point-card,
.visit-card,
.visit-inset,
.news-notice,
.event-card {
  border-radius: var(--radius-lg);
}

.info-card,
.point-card,
.visit-card,
.visit-inset,
.hours-card,
.contact-form,
.game-body,
.news-panel,
.news-notice,
.news-empty,
.event-card {
  padding: 20px;
}

.info-card,
.point-card,
.visit-card {
  display: grid;
  align-content: start;
  gap: 8px;
}

.info-card::after,
.point-card::after,
.visit-card::after,
.hours-card::after,
.news-panel::after,
.news-empty::after,
.contact-form::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 221, 180, 0.7), rgba(240, 221, 180, 0.18), transparent 82%);
  opacity: 0.9;
  z-index: 1;
}

.info-card span,
.label {
  display: block;
  color: var(--gold-soft);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.info-card strong,
.point-card strong,
.visit-card strong {
  display: block;
  color: var(--text-high);
}

.info-card strong {
  font-size: var(--step-3);
}

.info-card p,
.point-card span {
  display: block;
  margin-top: 0;
}

.section-copy,
.visit-copy {
  display: grid;
  gap: 16px;
}

.news-feed {
  align-content: start;
}

.club-points {
  margin-top: 8px;
}

.point-card strong {
  font-size: var(--step-3);
}

.point-card span {
  color: var(--text-soft);
}

.feature-photo {
  display: grid;
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 840ms var(--motion-soft), filter 840ms var(--motion-soft);
}

.feature-photo figcaption {
  padding: 16px 20px 20px;
  color: var(--text-mid);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.game-card {
  overflow: hidden;
}

.game-photo {
  aspect-ratio: 5 / 4;
  overflow: hidden;
}

.game-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 840ms var(--motion-soft), filter 840ms var(--motion-soft);
}

#snooker .game-photo img {
  object-position: center 44%;
}

#biljard .game-photo img {
  object-position: center 58%;
}

#dart .game-photo img {
  object-position: center 36%;
}

.game-body {
  display: grid;
  gap: 12px;
}

.news-panel,
.news-empty,
.news-notice,
.event-card {
  display: grid;
  gap: 16px;
}

.news-panel-header {
  display: grid;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.news-panel-header h3,
.news-empty h3 {
  max-width: 18ch;
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.membership-list,
.event-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.membership-list {
  display: grid;
  gap: 12px;
}

.membership-item {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.membership-item + .membership-item {
  border-top: 0;
}

.membership-item strong {
  color: var(--text-high);
  font-size: var(--step-2);
}

.membership-item span {
  color: var(--text-mid);
}

.event-list {
  display: grid;
  gap: 20px;
}

.event-card {
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(23, 114, 76, 0.12));
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.event-meta time {
  color: var(--gold-soft);
  font-size: var(--step-0);
  font-weight: 700;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(215, 176, 100, 0.18);
  background: rgba(215, 176, 100, 0.08);
  color: var(--gold-soft);
  font-size: var(--step--1);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-card h4 {
  margin: 0;
  font-size: var(--step-3);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.news-notice {
  background: rgba(215, 176, 100, 0.1);
  border-color: rgba(215, 176, 100, 0.24);
}

.news-notice p:last-child,
.news-empty p:last-child,
.event-card p:last-child {
  color: var(--text-soft);
}

.news-notice-strong {
  background: linear-gradient(145deg, rgba(125, 37, 48, 0.22), rgba(90, 54, 35, 0.12));
  border-color: rgba(215, 176, 100, 0.18);
}

.news-empty {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.visit-inset img {
  transition: transform 760ms var(--motion-soft), filter 760ms var(--motion-soft);
}

.inline-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--gold-soft);
  font-weight: 700;
}

.visit-card {
  display: grid;
  gap: 4px;
  background: rgba(0, 0, 0, 0.18);
}

.visit-card span {
  color: var(--text-mid);
}

.visit-card a {
  color: var(--gold-soft);
  font-weight: 700;
}

.visit-inset {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.visit-inset img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 44%;
}

.hours-card {
  padding: 24px;
}

.hours-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.hours-card-header .eyebrow {
  margin-bottom: 4px;
}

.hours-card-header span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(215, 176, 100, 0.1);
  border: 1px solid rgba(215, 176, 100, 0.2);
  color: var(--gold-soft);
  font-size: var(--step-0);
  font-weight: 800;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-mid);
}

.hours-table caption {
  margin-bottom: 8px;
  text-align: left;
  color: var(--text-high);
  font-weight: 700;
}

.hours-table th,
.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hours-table th {
  text-align: left;
  color: var(--text-high);
  font-weight: 600;
}

.hours-table td {
  text-align: right;
}

.hours-table tr.is-today th,
.hours-table tr.is-today td {
  color: var(--gold-soft);
}

.summer-hours {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(23, 114, 76, 0.18);
  border: 1px solid rgba(23, 114, 76, 0.36);
}

.summer-hours h3 {
  margin-bottom: 8px;
  font-size: var(--step-2);
}

.summer-hours.is-active {
  border-color: rgba(215, 176, 100, 0.32);
  box-shadow: inset 0 0 0 1px rgba(215, 176, 100, 0.08);
}

.notice {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(215, 176, 100, 0.1);
  border: 1px solid rgba(215, 176, 100, 0.22);
  color: #ead8b3;
}

.english-note a {
  color: var(--gold-soft);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--text-high);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(215, 176, 100, 0.8);
  box-shadow: 0 0 0 4px rgba(215, 176, 100, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 12px;
  color: var(--text-mid) !important;
  font-weight: 500 !important;
}

.checkbox-row input {
  width: auto;
  accent-color: var(--gold);
}

.form-feedback {
  min-height: 24px;
  color: var(--gold-soft);
}

.social-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-row {
  align-items: center;
}

.social-row a {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-high);
  font-weight: 700;
}

.site-footer {
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.footer-layout {
  align-items: start;
}

.footer-brand {
  justify-self: start;
}

.footer-layout p {
  margin: 0;
  color: var(--text-low);
  font-size: var(--step-0);
}

.reveal {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  will-change: opacity, transform, filter;
  transition:
    opacity 620ms var(--motion-soft),
    transform 780ms var(--motion-spring),
    filter 780ms var(--motion-soft);
}

.has-reveal .reveal[data-reveal-state="pending"] {
  opacity: 0;
  filter: blur(10px);
}

.has-reveal .reveal-rise[data-reveal-state="pending"] {
  transform: translate3d(0, 28px, 0) scale(0.98);
}

.has-reveal .reveal-left[data-reveal-state="pending"] {
  transform: translate3d(-40px, 16px, 0) scale(0.98);
}

.has-reveal .reveal-right[data-reveal-state="pending"] {
  transform: translate3d(40px, 16px, 0) scale(0.98);
}

.has-reveal .reveal-scale[data-reveal-state="pending"] {
  transform: translate3d(0, 18px, 0) scale(0.92);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

.reveal-delay-4 {
  transition-delay: 320ms;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .hero-main-photo:hover,
  .hero-mini-photo:hover,
  .feature-photo:hover,
  .game-card:hover,
  .info-card:hover,
  .point-card:hover,
  .visit-card:hover,
  .visit-inset:hover,
  .hours-card:hover,
  .contact-form:hover,
  .news-panel:hover,
  .news-notice:hover,
  .news-empty:hover,
  .event-card:hover,
  .hero-main-photo:focus-within,
  .hero-mini-photo:focus-within,
  .feature-photo:focus-within,
  .game-card:focus-within,
  .info-card:focus-within,
  .point-card:focus-within,
  .visit-card:focus-within,
  .visit-inset:focus-within,
  .hours-card:focus-within,
  .contact-form:focus-within,
  .news-panel:focus-within,
  .news-notice:focus-within,
  .news-empty:focus-within,
  .event-card:focus-within {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.26);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  }

  .hero-main-photo:hover::before,
  .hero-mini-photo:hover::before,
  .feature-photo:hover::before,
  .game-card:hover::before,
  .info-card:hover::before,
  .point-card:hover::before,
  .visit-card:hover::before,
  .visit-inset:hover::before,
  .hours-card:hover::before,
  .contact-form:hover::before,
  .news-panel:hover::before,
  .news-notice:hover::before,
  .news-empty:hover::before,
  .event-card:hover::before,
  .hero-main-photo:focus-within::before,
  .hero-mini-photo:focus-within::before,
  .feature-photo:focus-within::before,
  .game-card:focus-within::before,
  .info-card:focus-within::before,
  .point-card:focus-within::before,
  .visit-card:focus-within::before,
  .visit-inset:focus-within::before,
  .hours-card:focus-within::before,
  .contact-form:focus-within::before,
  .news-panel:focus-within::before,
  .news-notice:focus-within::before,
  .news-empty:focus-within::before,
  .event-card:focus-within::before {
    opacity: 1;
    transform: translateX(34%);
  }

  .hero-main-photo:hover img,
  .hero-main-photo:focus-within img,
  .feature-photo:hover img,
  .feature-photo:focus-within img {
    transform: scale(1.035);
    filter: saturate(1.04);
  }

  .hero-mini-photo:hover img,
  .hero-mini-photo:focus-within img,
  .game-card:hover .game-photo img,
  .game-card:focus-within .game-photo img {
    transform: scale(1.05);
    filter: saturate(1.06);
  }

  .visit-inset:hover img,
  .visit-inset:focus-within img {
    transform: scale(1.05) rotate(-1deg);
    filter: saturate(1.04);
  }

  .event-card:hover,
  .event-card:focus-within {
    transform: translate3d(6px, -2px, 0);
  }

  .news-notice:hover,
  .news-notice:focus-within,
  .news-empty:hover,
  .news-empty:focus-within {
    transform: translateY(-2px) scale(1.01);
  }
}

@media (min-width: 640px) {
  :root {
    --shell: min(1120px, calc(100vw - 48px));
  }

  .section {
    padding: 88px 0;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .club-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visit-inset {
    grid-template-columns: 160px 1fr;
    align-items: center;
  }

  .visit-inset img {
    aspect-ratio: 5 / 4;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0;
    border-radius: 0;
  }

  .nav-links a:not(.nav-cta) {
    position: relative;
  }

  .nav-links a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
  }

  .nav-links a:not(.nav-cta):hover,
  .nav-links a:not(.nav-cta):focus-visible {
    background: transparent;
  }

  .nav-links a:not(.nav-cta):hover::after,
  .nav-links a:not(.nav-cta):focus-visible::after {
    transform: scaleX(1);
  }

  .nav-cta {
    padding: 12px 18px !important;
    border-radius: 999px !important;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: start;
    gap: 48px;
  }

  .hero-main-photo {
    aspect-ratio: 6 / 7;
  }

  .hero-mini-grid {
    max-width: 78%;
    margin-top: -72px;
    margin-left: auto;
  }

  .info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .club-layout,
  .news-layout,
  .visit-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  }

  .club-layout,
  .visit-layout,
  .contact-layout {
    align-items: center;
  }

  .news-layout {
    align-items: start;
  }

  .club-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .membership-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .membership-item:last-child {
    grid-column: 1 / -1;
  }

  .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .game-photo img {
    height: 100%;
  }

  .section-heading {
    max-width: 46rem;
    margin-inline: auto;
    text-align: center;
  }

  .footer-layout {
    grid-template-columns: 1.1fr 1fr auto;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-layout p {
    text-align: right;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
