:root {
  --red: #8f2018;
  --red-dark: #641611;
  --gold: #e1b652;
  --cream: #fbf4e7;
  --paper: #fffdf8;
  --ink: #171310;
  --muted: #685e55;
  --line: rgba(23, 19, 16, 0.14);
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 244, 231, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  display: grid;
  gap: 4px;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
}

.logo-main {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 0.86;
}

.logo-sub {
  color: #f0d28e;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.site-header.is-scrolled .logo-sub,
.site-header.is-open .logo-sub {
  color: var(--red);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
}

.main-nav a {
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-button {
  padding: 12px 16px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

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

.hero-gallery img {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 4000ms ease;
}

.hero-gallery img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at bottom right, rgba(143, 32, 24, 0.34), transparent 34%);
}

.hero-content {
  position: relative;
  display: grid;
  place-items: center;
  width: min(920px, calc(100% - 40px));
  padding-top: 84px;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: #f0d28e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  display: grid;
  gap: 4px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(68px, 13vw, 160px);
  font-weight: 700;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero h1 strong {
  color: var(--gold);
  font-size: 0.48em;
}

.hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.42;
}

.hero-actions,
.button-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.button-red {
  background: var(--red);
  color: white;
}

.button-red:hover {
  background: var(--red-dark);
}

.button-outline {
  border-color: white;
  color: white;
}

.embed-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(90deg, #f4d785 0%, #eac365 100%);
  border-bottom: 1px solid rgba(23, 19, 16, 0.08);
}

.embed-strip a {
  display: grid;
  place-items: center;
  min-height: 76px;
  border-right: 1px solid rgba(23, 19, 16, 0.14);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.embed-strip > :last-child {
  border-right: 0;
}

.craft-strip,
.story-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.craft-strip {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 52px 0 28px;
}

.craft-strip-image {
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(23, 19, 16, 0.12);
}

.craft-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-strip-copy h2,
.story-copy h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
}

.craft-strip-copy p:last-child,
.story-copy p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

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

.story-media {
  min-height: 640px;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.story-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 58px);
  background: linear-gradient(180deg, #f7f0e2 0%, #fffaf1 100%);
}

.story-copy p {
  margin: 0 0 18px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--cream);
}

.split-alt {
  background: linear-gradient(180deg, #f7f2ea 0%, #fffaf5 100%);
}

.split-alt .split-copy {
  order: 2;
}

.split-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(42px, 8vw, 110px);
}

.split-copy h2,
.menu-band-heading h2,
.location-copy h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 700;
  line-height: 0.92;
  text-transform: uppercase;
}

.split-copy p,
.location-copy p {
  max-width: 540px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.split-image {
  min-height: 480px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-band {
  padding: 92px clamp(22px, 5vw, 70px);
  background: var(--red);
  color: white;
}

.menu-band-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.menu-card-grid article {
  display: grid;
  align-content: start;
  min-height: 270px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-card-grid span {
  color: #f4d785;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.menu-card-grid h3 {
  margin: 34px 0 12px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
}

.menu-card-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.5;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 112px;
}

.hours-card {
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(180deg, #1d1815 0%, #0f0d0b 100%);
  color: white;
  box-shadow: 0 18px 54px rgba(23, 19, 16, 0.16);
}

.hours-card h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
}

.hours-card dl,
.hours-card dd {
  margin: 0;
}

.hours-card div {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hours-card dt,
.hours-card dd {
  font-size: 18px;
  line-height: 1.45;
}

.hours-card dt {
  color: #f0d28e;
  font-weight: 600;
  margin-bottom: 4px;
}

.location-actions {
  justify-content: flex-start;
}

.mobile-footer {
  display: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: white;
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-footer a {
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
    background: rgba(251, 244, 231, 0.98);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 44px;
  }

  .embed-strip,
  .craft-strip,
  .story-section,
  .split,
  .menu-card-grid,
  .location-section {
    grid-template-columns: 1fr;
  }

  .embed-strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 19, 16, 0.14);
  }

  .split-alt .split-copy {
    order: 0;
  }

  .story-section {
    gap: 18px;
  }

  .story-media {
    min-height: 420px;
  }

  .mobile-footer {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(90deg, #f4d785 0%, #eac365 100%);
    border-top: 1px solid rgba(23, 19, 16, 0.14);
  }

  .mobile-footer a {
    display: grid;
    place-items: center;
    min-height: 60px;
    border-right: 1px solid rgba(23, 19, 16, 0.14);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-footer a:last-child {
    border-right: 0;
  }

  .site-footer {
    display: grid;
    padding-bottom: 96px;
  }
}

@media (max-width: 560px) {
  .logo-main {
    font-size: 24px;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 112px;
  }

  .hero-kicker {
    font-size: 11px;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
  }

  .hero h1 {
    gap: 2px;
    font-size: clamp(30px, 12vw, 50px);
    line-height: 0.9;
  }

  .hero h1 strong {
    font-size: 0.42em;
  }

  .hero p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .split-copy p,
  .location-copy p,
  .menu-card-grid p {
    font-size: 18px;
  }

  .hero-actions,
  .button-row {
    display: grid;
    width: 100%;
  }

  .craft-strip {
    width: calc(100% - 28px);
    padding: 34px 0 18px;
    gap: 18px;
  }

  .craft-strip-image {
    min-height: 250px;
    border-radius: 18px;
  }

  .craft-strip-copy h2,
  .story-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .craft-strip-copy p:last-child,
  .story-copy p {
    font-size: 18px;
  }

  .story-section {
    width: calc(100% - 28px);
    padding: 22px 0 34px;
  }

  .story-media {
    min-height: 320px;
  }

  .story-copy {
    padding: 26px 22px;
  }

  .button {
    width: 100%;
  }

  .split-copy {
    padding: 50px 22px;
  }

  .menu-band,
  .location-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-card-grid article,
  .hours-card {
    padding: 24px;
  }
}
