:root {
  --ink: #181716;
  --muted: #6d6760;
  --line: #ded8cf;
  --paper: #f7f2ea;
  --white: #fff;
  --wine: #8f2535;
  --teal: #1d6d6a;
  --gold: #c49b54;
  --black: #090909;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 242, 234, 0.92);
  border-bottom: 1px solid rgba(24, 23, 22, 0.12);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 172px;
  height: auto;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-menu a {
  text-decoration: none;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 72px) 88px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

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

.hero-video {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.32) 46%, rgba(0, 0, 0, 0.16));
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(56px, 12vw, 132px);
  line-height: 0.9;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.02;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.primary {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}

.ghost {
  color: var(--white);
}

.hours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hours div {
  padding: 28px clamp(18px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

.hours span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
}

.hours strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
}

.split,
.section,
.feature-band,
.contact,
.partners {
  padding: clamp(58px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.copy p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  color: var(--wine);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.image-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  color: var(--white);
  background: var(--teal);
}

.feature-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

.events {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.events article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.events img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.events article div {
  padding: 24px 24px 24px 0;
}

.events span {
  color: var(--wine);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.events p,
.rule-grid p,
.info-list p {
  color: var(--muted);
}

.rules {
  background: var(--white);
}

.rule-grid,
.info-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rule-grid div,
.info-list div {
  border-top: 4px solid var(--gold);
  padding-top: 22px;
}

.partners {
  background: var(--white);
}

.partners div {
  align-items: center;
}

.partners img {
  width: min(300px, 100%);
  max-height: 110px;
  object-fit: contain;
  background: var(--paper);
  padding: 18px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  color: var(--white);
  background: var(--black);
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  font-size: 22px;
  font-weight: 800;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

footer img {
  width: 150px;
}

footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .site-menu a {
    padding: 16px 22px;
    border-top: 1px solid var(--line);
  }

  .hours,
  .split,
  .feature-band,
  .events,
  .rule-grid,
  .info-list,
  .contact {
    grid-template-columns: 1fr;
  }

  .events article {
    grid-template-columns: 1fr;
  }

  .events article div {
    padding: 0 22px 24px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 86vh;
    padding-bottom: 54px;
  }

  .brand img {
    width: 142px;
  }

  .hours strong {
    font-size: 22px;
  }

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

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Original-inspired dark WordPress clone layer */
body {
  color: #f3eee7;
  background: #050505;
}

.topbar {
  display: block;
  min-height: 0;
  padding: 0;
  color: #f3eee7;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.utility-row,
.main-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 56px);
}

.utility-row {
  min-height: 38px;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav-row {
  min-height: 76px;
}

.social-links,
.utility-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links a,
.utility-actions a,
.utility-actions button,
.site-menu a,
.site-menu button {
  color: inherit;
  text-decoration: none;
}

.utility-actions button,
.site-menu button {
  font: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.brand img,
footer img {
  filter: invert(1) brightness(1.65);
}

.site-menu {
  gap: clamp(10px, 1.6vw, 22px);
  color: #f3eee7;
}

.menu-item {
  position: relative;
}

.submenu,
.language-switcher div {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  padding: 10px 0;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.submenu a,
.language-switcher div a {
  display: block;
  padding: 11px 16px;
  color: #f3eee7;
  text-transform: none;
}

.has-dropdown:hover .submenu,
.has-dropdown.is-open .submenu,
.language-switcher:hover div,
.language-switcher.is-open div {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-switcher {
  position: relative;
}

.language-switcher div {
  right: 0;
  left: auto;
  min-width: 90px;
}

.search-panel {
  padding: 18px clamp(18px, 4vw, 56px) 22px;
  background: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.search-panel form {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.search-panel input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: #f3eee7;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.search-panel button {
  min-height: 46px;
  padding: 0 18px;
  color: #050505;
  font-weight: 800;
  background: var(--gold);
  border: 0;
}

.hero {
  min-height: 100vh;
  padding-top: 150px;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.24));
}

.hours,
.rules,
.partners,
footer {
  color: #f3eee7;
  background: #090909;
  border-color: rgba(255, 255, 255, 0.12);
}

.hours div,
.events article,
.rule-grid div,
.info-list div,
.partners img {
  background: #101010;
  border-color: rgba(255, 255, 255, 0.12);
}

.copy p,
.events p,
.rule-grid p,
.info-list p,
footer p {
  color: #bbb3a9;
}

.feature-band {
  background: #111;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  background: #050505;
}

.events article {
  color: #f3eee7;
}

.text-link.on-dark,
.text-link {
  color: var(--gold);
}

.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 74px;
  overflow: hidden;
  color: #fff;
  background: #050505;
}

.page-hero.compact {
  min-height: 44vh;
}

.page-hero img,
.page-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero img {
  object-fit: cover;
}

.page-hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.42));
}

.page-hero > div:last-child {
  position: relative;
  width: min(900px, 100%);
}

.content-section {
  padding: clamp(58px, 9vw, 112px) clamp(20px, 5vw, 72px);
  background: #050505;
}

.content-copy {
  width: min(980px, 100%);
}

.content-copy p {
  color: #d7d0c7;
  font-size: 20px;
}

.event-detail {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 28px;
  margin-top: 36px;
  padding: 20px;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.event-detail img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.event-detail span {
  color: var(--gold);
  font-weight: 800;
}

.contact-card,
.search-result {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 22px;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card a,
.search-result a {
  color: #f3eee7;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #f3eee7;
  text-decoration: none;
}

footer address {
  font-size: 16px;
}

@media (max-width: 900px) {
  .utility-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .main-nav-row {
    position: relative;
  }

  .menu-button {
    color: #f3eee7;
    background: #111;
    border-color: rgba(255, 255, 255, 0.18);
  }

  .menu-button span {
    background: #f3eee7;
  }

  .site-menu {
    top: 76px;
    background: #0b0b0b;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .site-menu a,
  .site-menu button {
    width: 100%;
    padding: 16px 22px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .submenu,
  .language-switcher div {
    position: static;
    min-width: 0;
    padding: 0;
    background: #151515;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .has-dropdown.is-open .submenu,
  .language-switcher.is-open div {
    display: block;
  }

  .search-panel form,
  .event-detail {
    grid-template-columns: 1fr;
  }
}
