:root {
  --charcoal: #100e0b;
  --charcoal-2: #18130e;
  --paper: #f1eadc;
  --paper-2: #d8c8aa;
  --smoke: #928a7b;
  --red: #ba3d27;
  --red-deep: #6f2019;
  --mustard: #d9a63a;
  --olive: #535846;
  --line: rgba(241, 234, 220, 0.18);
  --shadow: rgba(0, 0, 0, 0.42);
  --display: "Bebas Neue", Impact, sans-serif;
  --body: "Archivo", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--paper);
  background:
    radial-gradient(circle at 72% 10%, rgba(186, 61, 39, 0.24), transparent 28rem),
    linear-gradient(180deg, #0d0b09 0%, #17120e 48%, #100e0b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  z-index: 3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mix-blend-mode: overlay;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--charcoal);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 24px;
  right: 24px;
  z-index: 20;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(241, 234, 220, 0.18);
  background: rgba(16, 14, 11, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font: 400 25px/1 var(--display);
}

.brand strong,
.brand em {
  display: block;
  line-height: 1;
}

.brand strong {
  font: 400 28px/0.9 var(--display);
  letter-spacing: 0.04em;
}

.brand em {
  margin-top: 4px;
  color: var(--paper-2);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 4px;
  border: 1px solid rgba(241, 234, 220, 0.14);
  padding: 4px;
}

.desktop-nav a {
  padding: 10px 16px;
  color: var(--paper-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav a:hover {
  background: rgba(241, 234, 220, 0.1);
  color: var(--paper);
}

.header-call {
  justify-self: end;
  padding: 13px 18px;
  background: var(--paper);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: 120px 24px 56px;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-photo img {
  filter: saturate(0.92) contrast(1.08) brightness(0.76);
  transform: scale(1.04);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 14, 11, 0.94), rgba(16, 14, 11, 0.5) 46%, rgba(16, 14, 11, 0.16)),
    linear-gradient(0deg, rgba(16, 14, 11, 0.96), transparent 42%);
}

.hero-content {
  width: min(850px, 100%);
  margin-left: clamp(0px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mustard);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.88;
}

h1 {
  max-width: 760px;
  font-size: clamp(72px, 12vw, 166px);
}

h2 {
  font-size: clamp(48px, 7vw, 96px);
}

.hero-copy {
  width: min(520px, 100%);
  margin: 26px 0 0;
  color: var(--paper-2);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(241, 234, 220, 0.22);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff8eb;
}

.btn-primary:hover {
  background: #cf4a31;
}

.btn-secondary {
  background: rgba(16, 14, 11, 0.36);
  color: var(--paper);
}

.btn-secondary:hover {
  border-color: var(--mustard);
  background: rgba(217, 166, 58, 0.1);
}

.hero-ticket {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 64px;
  width: 210px;
  padding: 18px;
  background: rgba(241, 234, 220, 0.94);
  color: var(--charcoal);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.hero-ticket span,
.hero-ticket small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-ticket strong {
  display: block;
  margin: 10px 0;
  color: var(--red-deep);
  font: 400 48px/0.86 var(--display);
}

.hero-ticket small {
  color: #5a4e41;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
}

.ticker span {
  min-height: 70px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--paper-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker span:last-child {
  border-right: 0;
}

section:not(.hero):not(.ticker) {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}

.intro-copy h2 {
  max-width: 620px;
}

.intro-grid {
  display: grid;
  gap: 10px;
}

.story-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  width: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(241, 234, 220, 0.035);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.story-card:hover,
.story-card.active {
  border-color: rgba(217, 166, 58, 0.54);
  background: rgba(217, 166, 58, 0.1);
  transform: translateX(5px);
}

.story-card span {
  color: var(--mustard);
  font-weight: 900;
}

.story-card strong,
.story-card small {
  grid-column: 2;
}

.story-card strong {
  margin-top: -27px;
  font-size: 18px;
}

.story-card small {
  color: var(--paper-2);
  line-height: 1.55;
}

.plate-stage {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.plate-copy {
  position: sticky;
  top: 110px;
}

.plate-copy p:not(.eyebrow),
.section-head p,
.catering-panel p,
.service-text p {
  color: var(--paper-2);
  font-size: 16px;
  line-height: 1.65;
}

.plate-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 290px;
  gap: 14px;
}

.photo-tile {
  position: relative;
  min-height: 240px;
  padding: 0;
  border: 1px solid rgba(241, 234, 220, 0.18);
  background: var(--charcoal-2);
  overflow: hidden;
  cursor: zoom-in;
}

.photo-tile.wide {
  grid-row: span 2;
}

.photo-tile img {
  filter: saturate(0.9) contrast(1.12) brightness(0.84);
  transition: transform 700ms ease, filter 700ms ease;
}

.photo-tile:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.06) brightness(0.96);
}

.photo-tile span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  background: rgba(16, 14, 11, 0.78);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.section-head p:last-child {
  max-width: 520px;
  justify-self: end;
}

.menu-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(186, 61, 39, 0.16), transparent 30%),
    rgba(241, 234, 220, 0.035);
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.menu-tab {
  min-height: 64px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--paper-2);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-tab:last-child {
  border-right: 0;
}

.menu-tab.active {
  background: var(--red);
  color: #fff8eb;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.menu-item {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #17120e;
}

.menu-item strong {
  display: block;
  color: var(--paper);
  font-size: 22px;
}

.menu-item p {
  margin: 12px 0 24px;
  color: var(--paper-2);
  line-height: 1.55;
}

.menu-price {
  width: max-content;
  padding: 7px 10px;
  background: var(--mustard);
  color: var(--charcoal);
  font-weight: 900;
}

.catering-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 0;
  align-items: stretch;
}

.catering-photo {
  min-height: 650px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.catering-photo img {
  filter: saturate(0.88) contrast(1.1) brightness(0.86);
}

.catering-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  border-left: 0;
  background: var(--paper);
  color: var(--charcoal);
}

.catering-panel .eyebrow {
  color: var(--red);
}

.catering-panel p {
  color: #574d40;
}

.catering-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0;
}

.catering-checks label {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(16, 14, 11, 0.14);
  font-weight: 800;
}

.catering-checks input {
  accent-color: var(--red);
  width: 18px;
  height: 18px;
}

.service-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list button {
  min-height: 116px;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(241, 234, 220, 0.04);
  cursor: pointer;
  text-align: left;
}

.service-list button:hover {
  border-color: rgba(217, 166, 58, 0.6);
  background: rgba(217, 166, 58, 0.09);
}

.service-list span {
  color: var(--mustard);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-list strong {
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.05;
}

.visit-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding-bottom: 170px !important;
}

.visit-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--line);
  background: rgba(83, 88, 70, 0.24);
}

.visit-card p:not(.eyebrow) {
  color: var(--paper-2);
  font-size: 20px;
}

.visit-photo {
  min-height: 520px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.visit-photo img {
  filter: saturate(0.88) contrast(1.06) brightness(0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 24px 108px;
  border-top: 1px solid var(--line);
  color: var(--smoke);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-dock {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 22;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(241, 234, 220, 0.2);
  background: rgba(241, 234, 220, 0.16);
  backdrop-filter: blur(18px);
}

.mobile-dock a,
.mobile-dock button {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(16, 14, 11, 0.88);
  color: var(--paper);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-dock a:nth-child(3),
.mobile-dock button {
  background: var(--red);
}

.site-dialog {
  width: min(760px, calc(100% - 28px));
  padding: 0;
  border: 1px solid rgba(241, 234, 220, 0.22);
  background: var(--charcoal);
  color: var(--paper);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
}

.site-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(241, 234, 220, 0.22);
  background: rgba(16, 14, 11, 0.82);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-content img {
  max-height: 64vh;
  object-fit: cover;
}

.dialog-copy {
  padding: 26px;
}

.dialog-copy h3 {
  margin: 0 0 10px;
  font: 400 52px/0.9 var(--display);
}

.dialog-copy p {
  color: var(--paper-2);
  line-height: 1.6;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 960px) {
  .site-header {
    left: 12px;
    right: 12px;
    top: 12px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-call {
    padding: 12px 13px;
  }

  .hero {
    padding: 104px 18px 116px;
  }

  .hero-content {
    margin-left: 0;
  }

  h1 {
    font-size: clamp(66px, 21vw, 104px);
    max-width: 94vw;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 16px;
  }

  .hero-ticket {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 330px);
    margin-top: 24px;
  }

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

  section:not(.hero):not(.ticker) {
    width: min(100% - 28px, 720px);
    padding: 72px 0;
  }

  .intro-section,
  .plate-stage,
  .section-head,
  .catering-section,
  .service-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .section-head p:last-child {
    justify-self: start;
  }

  .plate-copy {
    position: static;
  }

  .plate-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .photo-tile.wide {
    grid-row: span 1;
  }

  .menu-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .menu-board {
    grid-template-columns: 1fr;
  }

  .catering-photo,
  .visit-photo,
  .visit-card {
    min-height: 420px;
  }

  .catering-panel {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .service-list button {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mobile-dock {
    display: grid;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 104px;
  }
}

@media (max-width: 520px) {
  .site-header {
    height: 58px;
  }

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

  .brand strong {
    font-size: 24px;
  }

  .brand em {
    display: none;
  }

  .header-call {
    min-height: 40px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: 100dvh;
  }

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

  .btn {
    width: 100%;
  }

  .catering-checks {
    grid-template-columns: 1fr;
  }
}
