:root {
  --ink: #191512;
  --muted: #6f6259;
  --paper: #fffaf2;
  --paper-strong: #fff3df;
  --charcoal: #171311;
  --red: #a8322a;
  --red-dark: #76241f;
  --jade: #17685a;
  --gold: #d39a3f;
  --line: rgba(25, 21, 18, 0.14);
  --shadow: 0 24px 70px rgba(40, 26, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.site-header.scrolled,
.site-header.open {
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Noto Serif SC", serif;
  font-size: 21px;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.74;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.scrolled .site-nav a:hover,
.site-header.open .site-nav a:hover {
  background: rgba(168, 50, 42, 0.09);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.25fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding: 120px clamp(18px, 5vw, 72px) 72px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 24%, rgba(211, 154, 63, 0.18), transparent 34%),
    linear-gradient(135deg, #15110f 0%, #271812 52%, #110e0d 100%);
}

.hero-shade {
  position: absolute;
}

.hero-photo {
  position: relative;
  z-index: 1;
  grid-column: 2 / 3;
  grid-row: 1;
  width: 100%;
  aspect-ratio: 650 / 488;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 19, 17, 0.08), rgba(23, 19, 17, 0));
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #1b1512;
}

.hero-shade {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(23, 19, 17, 0.82) 0%, rgba(23, 19, 17, 0.38) 55%, rgba(23, 19, 17, 0.08) 100%),
    linear-gradient(0deg, rgba(23, 19, 17, 0.5) 0%, rgba(23, 19, 17, 0.04) 56%);
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1 / 2;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(62px, 10vw, 132px);
  line-height: 0.94;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
}

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

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

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

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

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

.hero-panel {
  position: relative;
  z-index: 2;
  width: min(320px, calc(100vw - 36px));
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(23, 19, 17, 0.58);
  backdrop-filter: blur(18px);
}

.hero-panel span,
.hero-panel small,
.hero-panel strong {
  display: block;
}

.hero-panel span,
.hero-panel small {
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel strong {
  margin: 4px 0 8px;
  font-size: 22px;
}

.section {
  padding: clamp(64px, 10vw, 116px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 0.82fr);
  gap: clamp(18px, 5vw, 64px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
  margin-left: 0;
}

.section-heading h2,
.feature-copy h2,
.visit-card h2 {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.intro-grid article {
  min-height: 260px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--paper);
}

.intro-grid span {
  color: var(--red);
  font-weight: 800;
}

.intro-grid h3,
.menu-item h3 {
  margin: 18px 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.intro-grid p,
.feature-copy p,
.menu-item p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(64px, 10vw, 118px) clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: #fff;
}

.feature-copy {
  max-width: 620px;
}

.feature-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.feature-copy dl {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.feature-copy dl div {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
}

.feature-copy dt {
  color: var(--gold);
  font-weight: 800;
}

.feature-copy dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.image-mosaic {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 14px;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.image-mosaic img:first-child {
  grid-row: span 2;
}

.photo-note {
  grid-column: 2;
  margin: -48px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
}

.menu {
  background: var(--paper-strong);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.menu-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fffaf2;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.tab.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

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

.menu-item {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(40, 26, 17, 0.06);
}

.menu-item h3 {
  margin-top: 0;
}

.menu-item strong {
  margin-top: 22px;
  color: var(--red);
  font-size: 20px;
}

.menu-item.hidden {
  display: none;
}

.menu-more {
  display: none;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 1px solid var(--red);
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.reviews {
  background: #fffaf2;
}

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

.review-grid figure {
  margin: 0;
  border-left: 4px solid var(--jade);
  padding: 8px 0 8px 22px;
}

.review-grid blockquote {
  margin: 0;
  color: #342b26;
  font-size: 18px;
}

.review-grid figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  min-height: 720px;
  background: var(--charcoal);
  color: #fff;
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  border: 0;
  filter: saturate(0.9) contrast(1.04);
}

.visit-card {
  align-self: center;
  margin: clamp(18px, 5vw, 56px);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 42px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.phone {
  display: inline-block;
  margin: 20px 0;
  color: var(--red);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.hours {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  background: #fffaf2;
}

.hours span {
  color: var(--muted);
  font-weight: 800;
}

.wide {
  width: 100%;
  margin-top: 22px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #0f0d0c;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 250, 242, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    padding-top: 102px;
  }

  .hero-photo {
    position: relative;
    inset: auto;
    right: auto;
    top: auto;
    grid-column: 1 / 2;
    width: 100%;
    grid-row: 1;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(23, 19, 17, 0.86) 0%, rgba(23, 19, 17, 0.24) 54%, rgba(23, 19, 17, 0.08) 100%);
  }

  .hero-content {
    grid-row: 2;
  }

  .hero-panel {
    margin-top: 30px;
  }

  .section-heading,
  .feature-strip,
  .visit {
    grid-template-columns: 1fr;
  }

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

  .intro-grid article {
    min-height: auto;
  }

  .image-mosaic {
    grid-template-rows: 220px 220px;
  }

  .photo-note {
    grid-column: auto;
    margin: -6px 0 0;
  }

  .visit {
    min-height: auto;
  }

  .visit-map {
    min-height: 360px;
  }

  .visit-map iframe {
    min-height: 360px;
  }

  .footer {
    display: block;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-bottom: 34px;
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 68px);
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .menu {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .menu-tabs {
    display: none;
  }

  .menu-item {
    min-height: auto;
    padding: 18px;
  }

  .menu-item.mobile-collapsed {
    display: none;
  }

  .menu-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .image-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .image-mosaic img:first-child {
    grid-row: auto;
  }

  .hours div {
    display: block;
  }

  .hours strong {
    display: block;
  }
}
