@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #0d0d0b;
  --muted: #77746c;
  --cream: #f1eadc;
  --paper: #f8f4ea;
  --red: #d82e25;
  --line: rgba(13, 13, 11, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
}

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

.site-header {
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 82px;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 72px);
  position: relative;
  z-index: 5;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  gap: 5px;
  letter-spacing: -0.05em;
}

.brand-flame {
  filter: grayscale(1) brightness(0);
  font-size: 1.25rem;
}

nav {
  align-items: center;
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: clamp(18px, 3vw, 44px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta {
  border: 1px solid var(--ink);
  padding: 12px 18px;
}

.hero {
  display: grid;
  min-height: calc(100vh - 82px);
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 120px) clamp(28px, 7vw, 112px);
}

.eyebrow,
.kicker {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 26px;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.3rem, 7.8vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

h1 em,
.visit h2 em {
  color: var(--red);
  font-style: italic;
}

.hero-lead {
  color: #393834;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  margin: 34px 0 0;
  max-width: 570px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.09em;
  padding: 17px 24px;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

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

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

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
  padding-bottom: 5px;
}

.text-link span {
  color: var(--red);
  margin-left: 6px;
}

.hero-details {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 64px 0 0;
  padding: 22px 0 0;
}

.hero-details li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-details strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
}

.hero-details span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-media {
  margin: 0;
  min-height: 660px;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.58));
  content: "";
  inset: 0;
  position: absolute;
}

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

.hero-media figcaption {
  align-items: flex-end;
  bottom: 34px;
  color: white;
  display: flex;
  gap: 15px;
  left: 36px;
  position: absolute;
  z-index: 1;
}

.hero-media figcaption span {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-media figcaption p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.marquee {
  background: var(--red);
  color: white;
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
}

.marquee div {
  align-items: center;
  display: flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
  gap: 34px;
  justify-content: space-around;
  letter-spacing: 0.06em;
}

.marquee i {
  color: var(--ink);
  font-style: normal;
}

.section {
  padding: clamp(88px, 11vw, 164px) clamp(24px, 6vw, 96px);
}

.story,
.menu-section {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(120px, 0.2fr) minmax(0, 1fr);
}

.section-label {
  align-items: flex-start;
  display: flex;
  gap: 14px;
}

.section-label span {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.section-label p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0;
}

.story-content {
  max-width: 1050px;
}

.story h2 {
  font-size: clamp(3.3rem, 6.8vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.story h2 span {
  color: var(--red);
}

.story-text {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
  margin: 44px 0 0 auto;
  max-width: 590px;
}

.menu-section {
  background: var(--ink);
  color: var(--cream);
}

.section-label.light p {
  color: var(--cream);
}

.menu-content {
  min-width: 0;
}

.menu-heading h2 {
  font-size: clamp(3.2rem, 6vw, 6.7rem);
  letter-spacing: -0.035em;
}

.menu-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
}

.menu-card {
  border: 1px solid rgba(241, 234, 220, 0.18);
  min-height: 320px;
  padding: 28px;
  position: relative;
  transition: background 180ms ease, color 180ms ease;
}

.menu-card:hover,
.menu-card.featured {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.menu-number {
  color: #98958e;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
}

.menu-card h3 {
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  letter-spacing: -0.02em;
  margin-top: 48px;
}

.menu-card p {
  color: #aaa69d;
  font-size: 0.87rem;
  line-height: 1.65;
  max-width: 260px;
}

.menu-card:hover p,
.menu-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.menu-tag {
  bottom: 26px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  position: absolute;
}

.menu-note {
  color: #77746c;
  font-size: 0.7rem;
  margin-top: 20px;
}

.visit {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 680px;
  justify-content: center;
  text-align: center;
}

.visit h2 {
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.05em;
}

.visit > p:not(.eyebrow) {
  color: var(--muted);
  margin: 30px 0;
}

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

footer {
  align-items: center;
  background: var(--red);
  color: white;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto 1fr;
  padding: 28px clamp(24px, 5vw, 72px);
}

.footer-brand .brand-flame {
  filter: grayscale(1) brightness(0) invert(1);
}

footer p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0;
  text-align: center;
}

footer p:last-child {
  text-align: right;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 75vh;
    order: -1;
  }

  .hero-copy {
    min-height: auto;
  }

  .story,
  .menu-section {
    grid-template-columns: 1fr;
  }

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

  .menu-card {
    min-height: 260px;
  }
}

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

  nav > a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 10px 12px;
  }

  .hero-media {
    min-height: 66vh;
  }

  .hero-media img {
    object-position: center 26%;
  }

  .hero-copy {
    padding: 58px 24px 64px;
  }

  h1 {
    font-size: clamp(3.75rem, 18vw, 5.2rem);
  }

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

  .text-link {
    align-self: flex-start;
  }

  .hero-details {
    gap: 12px;
  }

  .marquee div {
    justify-content: flex-start;
    min-width: max-content;
    padding: 0 20px;
  }

  .story h2,
  .menu-heading h2 {
    font-size: 3.5rem;
  }

  .visit {
    min-height: 560px;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer p:last-child {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
