:root {
  --ink: #201611;
  --muted: #6c5a4e;
  --paper: #fff8ef;
  --surface: #fffdf8;
  --green: #0f8f4c;
  --green-dark: #0a5f38;
  --red: #c43124;
  --gold: #f2b544;
  --line: rgba(32, 22, 17, 0.14);
  --shadow: 0 22px 60px rgba(55, 28, 12, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  background: rgba(32, 22, 17, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 28px;
  height: 28px;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  font-size: 0.94rem;
}

nav a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
}

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

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

.hero picture img {
  object-fit: cover;
  object-position: center 44%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 10, 6, 0.82), rgba(16, 10, 6, 0.38) 54%, rgba(16, 10, 6, 0.1)),
    linear-gradient(0deg, rgba(16, 10, 6, 0.82), rgba(16, 10, 6, 0.02) 48%);
}

.hero-content {
  position: relative;
  width: min(920px, calc(100% - 36px));
  padding: 150px 0 92px;
  margin: 0 auto;
  color: #fff;
}

.rating-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #211609;
  background: var(--gold);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 20px 0 18px;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}

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

.btn.secondary {
  color: #fff;
  background: var(--green);
}

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

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

.proof-band div {
  padding: 26px clamp(18px, 4vw, 42px);
  background: var(--surface);
}

.proof-band strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  color: var(--green-dark);
}

.proof-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section-grid,
.menu-section,
.reviews-section,
.visit-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 80px);
  padding: 86px 0;
  align-items: start;
}

h2 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-copy {
  font-size: 1.08rem;
  color: var(--muted);
}

.menu-section,
.reviews-section {
  padding: 80px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

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

.menu-grid article,
.reviews-grid figure,
.visit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-grid article {
  display: grid;
  grid-template-rows: 330px auto;
}

.menu-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-grid article div {
  padding: 24px;
}

.menu-grid h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.menu-grid p,
.experience-copy p,
.reviews-grid blockquote,
.visit-card p {
  color: var(--muted);
}

.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: #152d1f;
  color: #fff;
}

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

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 7vw, 92px);
}

.experience-copy .eyebrow {
  color: #211609;
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 3px;
  background: var(--gold);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reviews-grid figure {
  margin: 0;
  padding: 28px;
}

.reviews-grid blockquote {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.24;
}

.reviews-grid figcaption {
  color: var(--green-dark);
  font-weight: 900;
}

.gallery-section {
  padding: 38px 0 86px;
  overflow: hidden;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-auto-rows: 260px;
  gap: 12px;
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto;
}

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

.gallery img:nth-child(1) {
  grid-row: span 2;
}

.gallery img:nth-child(3) {
  grid-column: span 1;
}

.gallery img:nth-child(4) {
  grid-row: span 2;
}

.visit-section {
  padding: 0 0 92px;
}

.visit-card {
  padding: clamp(28px, 6vw, 60px);
  background:
    linear-gradient(110deg, rgba(255, 248, 239, 0.96), rgba(255, 253, 248, 0.86)),
    url("/assets/images/storefront-exterior.webp") center/cover;
}

.visit-card address {
  max-width: 580px;
  font-style: normal;
  font-size: 1.22rem;
  margin: 18px 0 10px;
}

.hours {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hours span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  font-weight: 800;
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--surface);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 860px) {
  .site-header {
    gap: 12px;
  }

  nav {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .proof-band,
  .section-grid,
  .menu-grid,
  .experience,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    padding: 22px;
  }

  .section-heading {
    display: block;
  }

  .menu-grid article {
    grid-template-rows: 280px auto;
  }

  .experience {
    min-height: auto;
  }

  .experience-image {
    min-height: 420px;
  }

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

  .gallery img:nth-child(1),
  .gallery img:nth-child(4) {
    grid-row: span 1;
  }

  footer {
    display: block;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .visit-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

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