
:root {
  --red: #e5232d;
  --red-dark: #b81720;
  --gold: #f8bd27;
  --orange: #f18a22;
  --ink: #171717;
  --charcoal: #252525;
  --slate: #525252;
  --cream: #fff8e8;
  --paper: #ffffff;
  --line: #dedbd2;
  --shadow: 0 18px 45px rgba(22, 22, 22, 0.14);
  --radius: 20px;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(3.3rem, 9vw, 7.5rem);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

p {
  color: var(--slate);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 900px);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-tinted {
  background: var(--cream);
}

.section-dark {
  background: var(--ink);
  color: white;
}

.section-dark p {
  color: #d8d8d8;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  font-size: 1.1rem;
}

.section-kicker,
.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: var(--gold);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

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

.brand {
  min-width: 0;
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 78px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  min-width: 0;
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-location {
  margin-bottom: 0.18rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.brand-subtitle {
  margin-top: 0.3rem;
  color: var(--slate);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.site-nav a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
}

.site-nav .nav-cta {
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  background: var(--red);
  color: white;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--red-dark);
  color: white;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 24px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 82px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 58%;
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(15, 15, 15, 0.83) 0%,
      rgba(15, 15, 15, 0.52) 48%,
      rgba(15, 15, 15, 0.08) 100%
    ),
    linear-gradient(
      0deg,
      rgba(15, 15, 15, 0.34),
      transparent 40%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding-block: 6rem;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 2rem;
  color: white;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  background: var(--red);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: white;
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--red);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: white;
  text-decoration: none;
}

/* Introduction */

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
}

.intro-grid h2 {
  max-width: 780px;
}

.intro-copy p {
  font-size: 1.07rem;
}

/* Facilities */

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.facility-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 30px rgba(22, 22, 22, 0.07);
}

.facility-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.facility-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.facility-card:hover .facility-image-wrap img {
  transform: scale(1.035);
}

.facility-content {
  padding: 1.5rem;
}

.facility-number {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.facility-content p {
  margin-bottom: 0;
}

/* Membership */

.membership {
  position: relative;
  overflow: hidden;
}

.membership::after {
  content: "";
  position: absolute;
  top: 5%;
  right: -120px;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 65px solid rgba(248, 189, 39, 0.25);
  border-radius: 50%;
}

.membership-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.membership-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.membership-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.membership-content p {
  font-size: 1.06rem;
}

.check-list {
  margin: 1.6rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: -0.1rem;
  left: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.8rem;
}

.fine-print {
  font-size: 0.93rem !important;
}

/* Rules */

.rules-section {
  padding-top: 0;
}

.rules-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 2px dashed #c8c3b5;
  border-radius: var(--radius);
  background: #fbfaf6;
}

.rules-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 900;
}

.rules-panel h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.rules-panel p:last-child {
  margin-bottom: 0;
}

/* Location */

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.location-content h2 {
  color: white;
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.location-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #2b2b2b;
}

.location-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location-image figcaption {
  padding: 0.75rem 1rem;
  color: #cfcfcf;
  font-size: 0.87rem;
}

.text-link {
  font-weight: 800;
  text-underline-offset: 0.25em;
}

.light-link {
  color: white;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-rows: repeat(2, minmax(220px, 330px));
  gap: 1rem;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-grid .gallery-wide {
  grid-row: 1 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid .gallery-wide img {
  object-position: center 42%;
}

/* Contact */

.contact-section {
  background: linear-gradient(135deg, #fff7e4, #ffffff 56%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-details {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.contact-details a {
  width: fit-content;
  color: var(--red-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.form-row label {
  font-size: 0.92rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #bcbcbc;
  border-radius: 10px;
  background: white;
  color: var(--ink);
}

.form-row input,
.form-row select {
  min-height: 48px;
  padding: 0 0.85rem;
}

.form-row textarea {
  min-height: 145px;
  padding: 0.8rem;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(229, 35, 45, 0.2);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note,
.form-status {
  margin: 0.8rem 0 0;
  font-size: 0.85rem;
}

.form-status {
  color: var(--red-dark);
  font-weight: 750;
}

/* Footer */

.site-footer {
  padding: 4rem 0 1.4rem;
  background: #101010;
  color: white;
}

.site-footer p,
.site-footer address {
  color: #bfbfbf;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand img {
  width: 220px;
  height: 105px;
  padding: 0.35rem;
  border-radius: 12px;
  background: white;
  object-fit: contain;
}

.footer-brand p {
  margin-top: 0.6rem;
}

.footer-heading {
  margin-bottom: 0.9rem;
  color: white;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 0.6rem;
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid #343434;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  margin: 0;
}

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

/* Tablet */

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid rgba(23, 23, 23, 0.12);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }

  .site-nav .nav-cta {
    margin-top: 0.3rem;
    text-align: center;
  }

  .intro-grid,
  .membership-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .facility-grid {
    grid-template-columns: 1fr;
  }

  .facility-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .facility-image-wrap {
    min-height: 260px;
    aspect-ratio: auto;
  }

  .contact-copy {
    position: static;
  }
}

/* Mobile */

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

  .header-inner {
    min-height: 76px;
    gap: 0.65rem;
  }

  .brand {
    max-width: calc(100% - 46px);
    gap: 0.5rem;
  }

  .brand img {
    width: 58px;
    height: 54px;
  }

  .brand-location {
    font-size: 0.56rem;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    display: none;
  }

  .menu-toggle {
    flex: 0 0 auto;
    padding: 0.45rem;
  }

  .menu-toggle-label {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 76px);
  }

  .hero-image {
    object-position: 56% center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(15, 15, 15, 0.84),
      rgba(15, 15, 15, 0.42)
    );
  }

  .hero-actions,
  .location-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .location-actions .button,
  .location-actions .text-link {
    width: 100%;
    text-align: center;
  }

  .facility-card {
    display: block;
  }

  .facility-image-wrap {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .rules-panel {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-grid .gallery-wide {
    grid-row: auto;
  }

  .gallery-grid figure,
  .gallery-grid .gallery-wide {
    min-height: 260px;
    max-height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Reduced motion */

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