:root {
  --ink: #1d1712;
  --coal: #120f0c;
  --tamarind: #2a150d;
  --tamarind-2: #3a1c10;
  --jasmine: #f8f3ea;
  --paper: #fffaf2;
  --muted: #7f7468;
  --basil: #5f7d3b;
  --basil-dark: #324a24;
  --chili: #c9482a;
  --chili-dark: #a93620;
  --line: rgba(29, 23, 18, 0.14);
  --shadow: 0 22px 70px rgba(29, 23, 18, 0.24);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 58px);
  color: #fff;
  background: linear-gradient(180deg, rgba(18, 15, 12, 0.92), rgba(18, 15, 12, 0.68));
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  transition: background 180ms ease, padding 180ms ease;
}

.site-header[data-scrolled] {
  padding-block: 12px;
  background: rgba(18, 15, 12, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.1vw, 1.9rem);
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 38px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 62px);
  font-weight: 750;
}

.site-nav a,
.header-call,
.site-footer a {
  text-decoration: none;
}

.header-call {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  color: #fff;
  background: var(--chili);
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.header-call svg,
.button svg,
.quick-strip svg,
.panel-title svg,
.menu-card svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--coal);
}

.hero picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 48%, rgba(201, 72, 42, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(18, 15, 12, 0.92) 0%, rgba(18, 15, 12, 0.72) 38%, rgba(18, 15, 12, 0.24) 72%),
    linear-gradient(180deg, rgba(18, 15, 12, 0.2), rgba(18, 15, 12, 0.65));
}

.hero-content {
  position: relative;
  width: min(780px, calc(100% - 40px));
  padding: 18vh clamp(20px, 5vw, 78px) 10vh;
  color: #fff;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 7vw, 6.6rem);
  line-height: 0.93;
}

.hero-content p {
  max-width: 660px;
  margin-bottom: 34px;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.5;
  color: rgba(255, 250, 242, 0.9);
}

.hero-actions,
.location-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--chili-dark);
  border-color: var(--chili-dark);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-outline {
  color: var(--tamarind);
  background: transparent;
  border-color: rgba(42, 21, 13, 0.28);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(42, 21, 13, 0.12);
  border-bottom: 1px solid rgba(42, 21, 13, 0.08);
}

.quick-strip div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 26px clamp(20px, 4vw, 58px);
  background: var(--jasmine);
}

.quick-strip svg {
  width: 38px;
  height: 38px;
  color: var(--basil-dark);
}

.quick-strip p {
  margin: 0;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.quick-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 58px);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.hours-copy h2,
.final-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1;
}

.section-heading p,
.hours-copy p,
.final-cta p,
.menu-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

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

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

.menu-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.menu-card div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 12px;
  padding: 22px 4px 0;
}

.menu-card svg {
  grid-row: span 3;
  width: 30px;
  height: 30px;
  color: var(--basil);
}

.menu-card h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.08;
}

.menu-card p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.menu-card a {
  width: fit-content;
  color: var(--chili-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.hours-location {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 0.95fr;
  gap: 34px;
  padding: clamp(58px, 8vw, 98px) clamp(20px, 5vw, 78px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(42, 21, 13, 0.96), rgba(42, 21, 13, 0.9)),
    radial-gradient(circle at 85% 25%, rgba(95, 125, 59, 0.32), transparent 32%),
    var(--tamarind);
  overflow: hidden;
}

.hours-location::after {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: -8vw;
  width: min(480px, 46vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 242, 0.08);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(255, 250, 242, 0.06) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

.hours-location > * {
  position: relative;
  z-index: 1;
}

.hours-copy p {
  color: rgba(255, 250, 242, 0.74);
}

.hours-panel,
.location-panel {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 250, 242, 0.22);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.panel-title svg {
  color: #fff;
}

.panel-title h3 {
  margin: 0;
  font-size: 1.15rem;
}

.hours-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-panel li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  color: rgba(255, 250, 242, 0.74);
}

.hours-panel strong {
  color: #fff;
  font-weight: 750;
}

.location-panel p {
  margin-bottom: 30px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 1.15rem;
  line-height: 1.6;
}

.gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1.05fr 0.8fr;
  background: var(--coal);
}

.gallery img {
  width: 100%;
  height: clamp(240px, 28vw, 420px);
  object-fit: cover;
  border-right: 1px solid rgba(255, 250, 242, 0.08);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 78px);
  background: var(--jasmine);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 38px;
  padding: 36px clamp(20px, 5vw, 78px);
  color: rgba(255, 250, 242, 0.78);
  background: linear-gradient(180deg, #191411, #0e0c0a);
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.site-footer p {
  margin-bottom: 8px;
  color: rgba(255, 250, 242, 0.7);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.source-note {
  justify-self: end;
  max-width: 460px;
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(190px, 1fr) auto auto;
  }

  .site-nav {
    gap: 26px;
  }

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

  .hours-location {
    grid-template-columns: 1fr;
  }

  .hours-panel,
  .location-panel {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 14px 18px;
  }

  .brand img {
    width: 44px;
    height: 30px;
  }

  .brand span {
    max-width: 62vw;
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle span {
    width: 19px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .nav-toggle span + span {
    margin-top: -15px;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .nav-open .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    color: #fff;
    background: rgba(18, 15, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav a {
    padding: 14px;
    border-radius: 6px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    width: min(100%, calc(100% - 32px));
    padding: 20vh 18px 10vh;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-strip,
  .menu-grid,
  .gallery,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    min-height: auto;
    padding: 22px 20px;
  }

  .section {
    padding: 58px 18px;
  }

  .menu-card img {
    aspect-ratio: 4 / 3;
  }

  .hours-location {
    padding: 56px 18px;
  }

  .hours-panel li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 52px 18px;
  }

  .source-note {
    justify-self: start;
  }
}

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