:root {
  --black: #0e0e0e;
  --cream: #f2dfc1;
  --red: #c6281e;
  --green: #2e3d23;
  --gold: #d4a017;
  --brown: #5b3a1e;
  --ink: #15100c;
  --paper: #f8edd7;
  --muted: rgba(248, 237, 215, 0.72);
  --line: rgba(242, 223, 193, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--cream);
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.92), rgba(14, 14, 14, 0.5), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 30px);
  color: rgba(248, 237, 215, 0.82);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

nav a {
  padding: 8px 0;
}

.nav-cta {
  color: var(--black);
  background: var(--cream);
  padding: 8px 14px;
  border: 1px solid var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 14, 14, 0.88) 0%, rgba(14, 14, 14, 0.5) 42%, rgba(14, 14, 14, 0.12) 100%),
    linear-gradient(0deg, rgba(14, 14, 14, 0.96) 0%, transparent 46%);
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 96px) 130px;
}

.eyebrow,
.package-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2,
h3 {
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 10vw, 8.8rem);
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.72);
}

h2 {
  font-size: clamp(2.25rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  color: var(--cream);
  background: rgba(14, 14, 14, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.button.primary {
  color: var(--black);
  background: var(--cream);
}

.button.secondary {
  border-color: rgba(242, 223, 193, 0.55);
}

.hero-proof {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 26px;
  left: clamp(18px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.hero-proof span {
  border: 1px solid rgba(242, 223, 193, 0.38);
  padding: 8px 12px;
  color: rgba(248, 237, 215, 0.78);
  background: rgba(14, 14, 14, 0.54);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section,
.intro-band,
.experience-section,
.booking-types,
.booking-section {
  position: relative;
  padding: clamp(74px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-band {
  background:
    linear-gradient(90deg, rgba(46, 61, 35, 0.92), rgba(14, 14, 14, 0.96)),
    var(--green);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.experience-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.intro-logo {
  width: min(520px, 100%);
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.45));
}

.intro-grid p,
.section-heading p,
.experience-copy,
.package-card p,
.ticket-model p,
.gallery-section p,
.booking-panel p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 38px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
}

.offer-grid,
.package-grid,
.type-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

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

.offer-card,
.package-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(91, 58, 30, 0.35), rgba(14, 14, 14, 0.86)),
    var(--black);
  box-shadow: var(--shadow);
}

.offer-card {
  min-height: 220px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(92px, 0.85fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.offer-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.offer-card p {
  color: var(--muted);
}

.experience-section {
  background:
    linear-gradient(90deg, rgba(14, 14, 14, 0.96), rgba(91, 58, 30, 0.34)),
    var(--black);
  border-block: 1px solid var(--line);
}

.experience-copy {
  columns: 1;
}

.experience-art {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}

.experience-banner {
  width: 100%;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.5));
}

.experience-snake {
  width: 118px;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.48));
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(46, 61, 35, 0.36)),
    var(--black);
}

.menu-grid,
.class-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-grid article,
.class-card {
  border: 1px solid var(--line);
  background: rgba(14, 14, 14, 0.74);
  box-shadow: var(--shadow);
}

.menu-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.menu-grid h3,
.menu-grid ul,
.class-card h3,
.class-card p {
  margin-inline: 22px;
}

.menu-grid h3,
.class-card h3 {
  margin-top: 22px;
}

.menu-grid ul {
  padding: 0 0 24px;
  list-style: none;
  color: var(--muted);
}

.menu-grid li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(242, 223, 193, 0.12);
}

.classes-section {
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.12), transparent 34%),
    var(--black);
}

.class-card {
  min-height: 220px;
  padding-block: 8px 26px;
}

.class-card p {
  color: var(--muted);
}

.packages {
  background:
    radial-gradient(circle at top left, rgba(198, 40, 30, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(46, 61, 35, 0.42), transparent 38%),
    var(--black);
}

.package-card {
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(212, 160, 23, 0.78);
  transform: translateY(-12px);
}

.price {
  color: var(--cream) !important;
  font-size: 1.55rem !important;
  font-weight: 900;
}

.ticket-model {
  width: min(1180px, 100%);
  margin: 18px auto 0;
  padding: 28px;
  border: 1px solid rgba(212, 160, 23, 0.48);
  background: rgba(14, 14, 14, 0.72);
}

.ticket-model ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.ticket-model li {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  color: var(--cream);
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-types {
  padding-block: 34px;
  overflow: hidden;
  border-block: 1px solid rgba(242, 223, 193, 0.18);
  background: var(--cream);
  color: var(--black);
}

.marquee-row {
  display: flex;
  gap: clamp(28px, 5vw, 70px);
  width: max-content;
  margin-bottom: 22px;
  color: rgba(14, 14, 14, 0.18);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.type-grid div {
  display: grid;
  min-height: 84px;
  place-items: center;
  border: 2px solid var(--black);
  padding: 12px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-section {
  background: #120f0d;
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 12px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

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

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
  background: var(--cream);
}

.gallery-grid .tall img {
  object-fit: contain;
  padding: 22px;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(46, 61, 35, 0.42), rgba(14, 14, 14, 0.96) 58%),
    var(--black);
}

.booking-art {
  position: sticky;
  top: 100px;
  padding-top: 24px;
}

.booking-art img {
  width: 100%;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.52));
}

.booking-panel {
  border: 1px solid rgba(212, 160, 23, 0.5);
  padding: clamp(22px, 4vw, 42px);
  background: rgba(14, 14, 14, 0.78);
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(242, 223, 193, 0.28);
  border-radius: 0;
  padding: 13px 12px;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.34);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(248, 237, 215, 0.62) !important;
  font-size: 0.86rem !important;
}

.direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.direct-links a {
  border-bottom: 1px solid var(--gold);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: rgba(248, 237, 215, 0.7);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.about-hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: 130px clamp(18px, 5vw, 72px) 76px;
  background:
    radial-gradient(circle at 80% 30%, rgba(198, 40, 30, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(14, 14, 14, 0.98), rgba(46, 61, 35, 0.58)),
    var(--black);
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.about-hero img {
  width: min(620px, 100%);
  filter: drop-shadow(0 24px 55px rgba(0, 0, 0, 0.5));
}

.about-story {
  background: #120f0d;
}

.credential-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.credential-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(14, 14, 14, 0.72);
  box-shadow: var(--shadow);
}

.credential-grid p {
  color: var(--muted);
}

.about-questions,
.founder-section {
  background: var(--cream);
  color: var(--black);
}

.about-questions h2,
.founder-section h2 {
  color: var(--black);
}

.founder-section p:not(.eyebrow) {
  max-width: 880px;
  color: rgba(14, 14, 14, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.about-questions ol {
  margin: 24px 0 0;
  padding-left: 22px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.about-questions li {
  margin-bottom: 12px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    gap: 10px;
    font-size: 0.72rem;
  }

  .intro-grid,
  .experience-grid,
  .section-heading.split,
  .booking-section,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .menu-grid,
  .class-grid,
  .credential-grid,
  .package-grid,
  .type-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: none;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .booking-art {
    position: relative;
    top: auto;
    max-width: 640px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    padding: 12px 16px;
  }

  .brand span {
    display: none;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-content {
    margin: 0 18px 150px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 5.4rem);
  }

  .hero-proof {
    justify-content: flex-start;
  }

  .offer-card {
    min-height: auto;
    grid-template-columns: minmax(82px, 0.65fr) minmax(0, 1fr);
  }

  .experience-art {
    grid-template-columns: 1fr;
  }

  .experience-snake {
    width: 96px;
  }

  .booking-form,
  .ticket-model ul,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    display: grid;
  }
}
