:root {
  --ink: #1c1714;
  --paper: #fff8ec;
  --cream: #f7ead7;
  --tomato: #b6342b;
  --basil: #2f6f4e;
  --charcoal: #242424;
  --gold: #d7a84d;
  --line: rgba(28, 23, 20, 0.14);
  --shadow: 0 24px 80px rgba(28, 23, 20, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(28, 23, 20, 0.36);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.site-header nav {
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header nav a {
  padding: 8px 0;
}

.hero {
  position: relative;
  min-height: min(760px, 86vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 12, 10, 0.82), rgba(17, 12, 10, 0.38) 52%, rgba(17, 12, 10, 0.2)),
    linear-gradient(0deg, rgba(17, 12, 10, 0.72), rgba(17, 12, 10, 0.02) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 clamp(48px, 9vh, 86px);
}

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(4rem, 13vw, 10.5rem);
}

h2 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 6vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-copy {
  width: min(610px, 100%);
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
}

.hero-actions,
.visit-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--tomato);
  color: #fff;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.intro-band > div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--paper);
}

.stat {
  color: var(--tomato);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.label {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-section,
.menu-section,
.visit-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 106px) 0;
}

.reel-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.section-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(28, 23, 20, 0.72);
  font-size: 1.05rem;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(28, 23, 20, 0.18);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.menu-section {
  border-top: 1px solid var(--line);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-grid article {
  min-height: 176px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fffdf8;
}

.menu-grid p {
  margin-bottom: 0;
  color: rgba(28, 23, 20, 0.7);
}

.visit-section {
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.visit-section h2 {
  margin-bottom: 0;
}

.visit-section .button {
  min-width: 178px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: rgba(28, 23, 20, 0.64);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 16px;
  }

  .site-header nav {
    padding-top: 9px;
    font-size: 0.84rem;
  }

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

  .hero {
    min-height: 82vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 12, 10, 0.86), rgba(17, 12, 10, 0.42)),
      linear-gradient(0deg, rgba(17, 12, 10, 0.76), rgba(17, 12, 10, 0.04) 52%);
  }

  .hero-content {
    padding-top: 122px;
  }

  .intro-band,
  .reel-section,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .intro-band > div {
    min-height: 92px;
  }

  .reel-section,
  .menu-section,
  .visit-section {
    width: min(100% - 28px, 1160px);
  }

  .visit-section {
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .site-header {
    flex-direction: column;
  }

  .hero {
    min-height: 790px;
  }

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

  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.3rem, 21vw, 5.5rem);
  }
}
