:root {
  --black: #050505;
  --black-soft: #0d0b08;
  --panel: #15110b;
  --panel-soft: #1d1710;
  --gold: #d7b45a;
  --gold-bright: #f3d783;
  --gold-deep: #8b6a24;
  --text: #f6f1e6;
  --muted: #c7bca4;
  --line: rgba(215, 180, 90, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max: 1160px;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter.var.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--black);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(243, 215, 131, 0.86);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.52), transparent);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  width: 132px;
  display: inline-flex;
  align-items: center;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-bright);
}

.site-nav {
  position: fixed;
  inset: 72px 16px auto;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 8, 6, 0.96);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  padding: 12px 0;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.86rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(215, 180, 90, 0.16);
}

.site-nav a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px 0 92px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 36%, rgba(0, 0, 0, 0.9) 100%),
    radial-gradient(circle at 50% 20%, rgba(215, 180, 90, 0.2), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 12vw, 7.8rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.1rem, 7vw, 4.6rem);
}

h3 {
  font-size: 1.3rem;
}

.hero-lede {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--gold-bright);
  font-size: clamp(1.16rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-facts,
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-facts {
  margin-top: 22px;
}

.hero-facts span,
.pill-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.42);
  font-size: 0.84rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.88rem;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  border: 1px solid var(--gold-bright);
  color: #100c05;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.34);
}

.intro-strip {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(215, 180, 90, 0.08), rgba(255, 255, 255, 0.02), rgba(215, 180, 90, 0.08));
}

.stats-grid {
  display: grid;
  gap: 1px;
  background: transparent;
}

.stats-grid div {
  padding: 22px 18px;
  background: transparent;
  border-bottom: 1px solid rgba(215, 180, 90, 0.16);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--gold-bright);
  font-size: 2rem;
  line-height: 1;
}

.stats-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 72px 0;
  background: var(--black);
}

.section-dark {
  background: var(--black);
}

.section-ink {
  background: linear-gradient(180deg, var(--black), var(--black-soft));
}

.section-gold-line {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #090806, #0f0c08);
}

.split,
.contact-layout {
  display: grid;
  gap: 34px;
}

.section-copy p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-copy p:last-child,
.section-heading p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.feature-panel,
.cards-grid article,
.enquiry-form,
.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(29, 23, 16, 0.92), rgba(12, 10, 7, 0.94));
  box-shadow: var(--shadow);
}

.feature-panel {
  padding: 24px;
}

.feature-list,
.compact-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.feature-list li,
.compact-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  color: var(--muted);
  border-bottom: 1px solid rgba(215, 180, 90, 0.14);
}

.feature-list li::before,
.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-list li:last-child,
.compact-list li:last-child {
  border-bottom: 0;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 360px;
}

.image-stack img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.image-stack img:nth-child(2) {
  margin-top: 36px;
}

.pill-grid {
  margin-top: 22px;
}

.events-layout {
  display: grid;
  gap: 34px;
}

.event-flyers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.event-flyers a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.event-flyers img {
  width: 100%;
  height: auto;
  transition: transform 220ms ease;
}

.event-flyers a:hover img {
  transform: scale(1.025);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.cards-grid {
  display: grid;
  gap: 16px;
}

.cards-grid article {
  padding: 24px;
}

.center-cta {
  margin-top: 28px;
}

.hire-copy {
  max-width: 850px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.membership-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 10%, rgba(215, 180, 90, 0.16), transparent 34%),
    linear-gradient(180deg, #0d0b08, #050505);
}

.membership-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: linear-gradient(180deg, rgba(29, 23, 16, 0.76), rgba(5, 5, 5, 0.9));
  box-shadow: var(--shadow);
}

.membership-panel p {
  max-width: 700px;
  color: var(--muted);
}

.tour-section {
  background: linear-gradient(180deg, var(--black), #0b0907);
}

.tour-video {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.tour-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-masonry {
  column-count: 2;
  column-gap: 14px;
}

.gallery-masonry figure {
  position: relative;
  margin: 0 0 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  break-inside: avoid;
  cursor: zoom-in;
}

.gallery-masonry img {
  width: 100%;
  height: auto;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-masonry figure:hover img {
  transform: scale(1.025);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 18px 34px;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-frame {
  width: min(100%, 1040px);
  max-height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-frame img {
  display: block;
  max-width: 100%;
  max-height: calc(100svh - 106px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 10, 7, 0.88);
  color: var(--gold-bright);
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.lightbox-nav::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.lightbox-prev::before {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.lightbox-next::before {
  transform: rotate(45deg);
  margin-right: 5px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: var(--gold-bright);
  background: rgba(29, 23, 16, 0.96);
}

.contact-section {
  background: radial-gradient(circle at 50% 0%, rgba(215, 180, 90, 0.13), transparent 38%), var(--black);
}

.location-card {
  margin-top: 24px;
  padding: 20px;
}

.contact-copy a {
  color: var(--gold-bright);
  font-weight: 800;
}

.location-card p {
  margin: 8px 0 12px;
}

.location-card a {
  color: var(--gold-bright);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.enquiry-form {
  padding: 20px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.two-col {
  gap: 14px;
}

label {
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(215, 180, 90, 0.32);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.48);
  font: inherit;
  line-height: 1.3;
}

select {
  height: 56px;
  padding-right: 54px;
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(0, 0, 0, 0.48);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23f3d783' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px 18px;
}

input[type="date"] {
  height: 56px;
  padding-right: 18px;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  margin-right: 2px;
  padding: 6px;
  cursor: pointer;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(243, 215, 131, 0.7);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: 100%;
  border: 1px solid var(--gold-bright);
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--gold-bright);
  font-weight: 700;
}

.map-section {
  height: 380px;
  border-block: 1px solid var(--line);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.95);
}

.site-footer {
  padding: 42px 0 92px;
  background: #030303;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 14px;
}

.footer-grid p {
  margin: 4px 0;
  color: var(--muted);
}

.footer-seo {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(215, 180, 90, 0.16);
}

.footer-seo p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  color: var(--gold-bright);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.84rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 18;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.sticky-cta a {
  min-height: 54px;
  display: grid;
  place-items: center;
  color: #100c05;
  background: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 900;
}

.sticky-cta a + a {
  color: var(--gold-bright);
  background: #070707;
  border-left: 1px solid var(--line);
}

@media (min-width: 680px) {
  .container {
    width: min(100% - 48px, var(--max));
  }

  .brand {
    width: 170px;
  }

  .stats-grid,
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-masonry {
    column-count: 2;
  }

  .two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .site-header {
    padding: 18px 32px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    position: static;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0;
    border: 0;
  }

  .hero {
    min-height: 94svh;
    padding: 136px 0 104px;
  }

  .stats-grid div {
    text-align: center;
  }

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

  .hero-content {
    max-width: 920px;
  }

  .section {
    padding: 104px 0;
  }

  .split {
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
  }

  .split-reverse {
    grid-template-columns: 430px minmax(0, 1fr);
  }

  .events-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
    align-items: center;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    align-items: start;
  }

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

  .membership-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 34px;
  }

  .enquiry-form {
    padding: 28px;
  }

  .sticky-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 48px;
  }

  .lightbox {
    padding-inline: 82px;
  }

  .lightbox-prev {
    left: 28px;
  }

  .lightbox-next {
    right: 28px;
  }
}

@media (min-width: 1180px) {
  .hero-media video {
    object-position: center 42%;
  }

  .gallery-masonry {
    column-count: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
