@font-face {
  font-family: "Gobold";
  src: url("assets/fonts/gobold-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --gold: #eeb91d;
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.78);
  --line-dark: rgba(0, 0, 0, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 1rem; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--black);
  padding: 0.7rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.ticker {
  display: flex;
  overflow: hidden;
  gap: 2rem;
  white-space: nowrap;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 0;
}
.ticker span {
  min-width: max-content;
  animation: marquee 18s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 2rem)); }
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: var(--black);
}
.brand img { width: clamp(4.2rem, 8vw, 5.5rem); }
nav { display: flex; gap: clamp(0.8rem, 2vw, 1.5rem); }
nav a {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav a:hover, nav a:focus-visible { color: var(--gold); }

.hero {
  padding: 0 clamp(1rem, 4vw, 3rem) clamp(3rem, 6vw, 4.5rem);
}
.hero-frame {
  position: relative;
  min-height: min(72vh, 46rem);
  overflow: hidden;
  border-radius: clamp(1rem, 2.8vw, 2rem);
  background: var(--black);
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/images/header-cover.webp") center/cover no-repeat;
  filter: saturate(0.92) contrast(1.08);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.58) 48%, rgba(0,0,0,0.2));
}
.hero-content {
  position: relative;
  z-index: 1;
  min-height: min(72vh, 46rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 42rem;
  padding: clamp(1.25rem, 4vw, 3rem);
}
.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  line-height: 1.18;
}
h1 {
  font-family: "Gobold", Impact, sans-serif;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
h2 {
  font-family: "Gobold", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.7rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 28rem;
  margin: 1rem 0 1.4rem;
  color: var(--white);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary {
  background: var(--gold);
  color: var(--black);
}
.button-secondary {
  border: 2px solid var(--white);
  color: var(--white);
}
.button-secondary:hover, .button-secondary:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 3rem);
}
.section-light {
  background: var(--white);
  color: var(--black);
}
.section-dark {
  background: var(--black);
  color: var(--white);
}
.section-shell {
  width: min(74rem, 100%);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.about-copy p:last-child {
  max-width: 35rem;
  margin-bottom: 0;
  line-height: 1.75;
}
.image-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 2px solid var(--black);
  background: var(--black);
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-primary, .card-secondary { aspect-ratio: 4 / 5; }

.statement {
  display: grid;
  place-items: center;
  min-height: 18rem;
  padding: 2rem 1rem;
  background: var(--gold);
  color: var(--black);
  text-align: center;
}
.statement p {
  max-width: 48rem;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  font-family: "Gobold", Impact, sans-serif;
  font-size: clamp(1.9rem, 4.6vw, 3.7rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.statement p span {
  display: block;
  line-height: 1;
}

.menu-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  place-items: center;
}
.menu-copy {
  border: 2px solid var(--white);
  border-radius: 1.2rem;
  padding: clamp(2rem, 6vw, 4rem);
  max-width: 58rem;
  width: min(58rem, 100%);
  text-align: center;
}
.menu-copy p:last-of-type {
  max-width: 38rem;
  margin-inline: auto;
  color: var(--soft);
  line-height: 1.75;
}

.booking-grid {
  display: grid;
  gap: 1.25rem;
}
.booking-card {
  border: 2px solid var(--white);
  border-radius: 1.2rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  min-height: clamp(20rem, 34vw, 26rem);
}
.booking-card p:last-of-type {
  max-width: 29rem;
  color: var(--soft);
  line-height: 1.75;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}
.booking-image {
  margin: 0;
  overflow: hidden;
  height: clamp(20rem, 34vw, 26rem);
  border-radius: 1.2rem;
}
.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ticker-bottom {
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.contact-grid {
  display: grid;
  gap: 1.5rem;
}
.contact-copy address {
  margin: 1rem 0 1.3rem;
  font-style: normal;
  line-height: 1.8;
}
.contact-copy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.contact-copy li {
  display: grid;
  gap: 0.1rem;
}
.contact-copy .hours {
  gap: 0.18rem;
}
.contact-copy span {
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.contact-copy a:hover, .contact-copy a:focus-visible { color: var(--gold); }
.contact-copy em { font-style: normal; }
.map-frame {
  min-height: 22rem;
  overflow: hidden;
  border-radius: 1.2rem;
  border: 2px solid var(--black);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}
footer {
  padding: 1.5rem 1rem 2rem;
  text-align: center;
  color: var(--white);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .about-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
  .image-stack {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-grid {
    grid-template-columns: minmax(20rem, 0.85fr) minmax(24rem, 1.15fr);
    align-items: stretch;
  }
  .contact-grid {
    grid-template-columns: minmax(18rem, 0.65fr) minmax(24rem, 1.35fr);
    align-items: stretch;
    gap: 2rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding-inline: 1rem;
  }
  .brand img {
    width: 3.6rem;
  }
  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
    align-items: center;
  }
  nav a {
    min-height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.62rem, 2.7vw, 0.72rem);
    letter-spacing: 0.05em;
    text-align: center;
  }
  .hero-frame,
  .hero-content {
    min-height: 38rem;
  }
  .statement {
    min-height: 15rem;
  }
  .statement p {
    width: min(20rem, calc(100vw - 2rem));
    font-size: clamp(2rem, 10.5vw, 2.65rem);
    gap: 0.35rem;
  }
  .menu-copy {
    padding: 2rem 1.25rem;
  }
  .booking-card,
  .booking-image {
    min-height: 19rem;
    height: auto;
  }
  .booking-image {
    height: 19rem;
  }
}

@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;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
