:root {
  color-scheme: light;
  --ink: #221b1c;
  --muted: #665c58;
  --paper: #fffaf3;
  --linen: #f4eadc;
  --cranberry: #9f243d;
  --cranberry-dark: #6f172a;
  --sage: #416f58;
  --gold: #d99a2b;
  --line: rgba(34, 27, 28, 0.16);
  --shadow: 0 20px 60px rgba(34, 27, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fffaf3;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 243, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 45% 45%;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%) rotate(-16deg);
}

.brand-mark::before {
  top: 9px;
}

.brand-mark::after {
  top: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.17);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: rgba(159, 36, 61, 0.1);
}

.site-nav .nav-action {
  background: var(--cranberry);
  color: #fffaf3;
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
  background: var(--cranberry-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  place-items: center;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: clamp(600px, 84vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffaf3;
}

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

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

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(25, 17, 16, 0.83) 0%, rgba(25, 17, 16, 0.58) 38%, rgba(25, 17, 16, 0.15) 76%),
    linear-gradient(0deg, rgba(25, 17, 16, 0.62) 0%, rgba(25, 17, 16, 0) 38%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 72px;
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.detail-block h2,
.feature-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  margin-top: 14px;
  max-width: 740px;
  font-size: clamp(3.5rem, 9vw, 7.8rem);
}

.hero-text {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 250, 243, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--cranberry);
  color: #fffaf3;
  box-shadow: 0 12px 30px rgba(28, 12, 12, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--cranberry-dark);
}

.button-secondary {
  border-color: rgba(255, 250, 243, 0.65);
  color: #fffaf3;
  background: rgba(255, 250, 243, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 250, 243, 0.16);
}

.hero-panel {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 5vw, 54px);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  border: 1px solid rgba(255, 250, 243, 0.36);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 250, 243, 0.12);
  backdrop-filter: blur(12px);
}

.hero-panel p {
  margin: 0;
}

.hero-panel span:not(.status-dot) {
  display: block;
  color: rgba(255, 250, 243, 0.78);
  font-size: 0.9rem;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #7fd18b;
  box-shadow: 0 0 0 6px rgba(127, 209, 139, 0.18);
  flex: 0 0 auto;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.4fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.intro-copy h2,
.section-heading h2,
.feature-band h2,
.detail-block h2 {
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
}

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

.mini-card,
.menu-card,
.detail-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 28px rgba(34, 27, 28, 0.06);
}

.mini-card {
  padding: 22px;
}

.mini-stat {
  display: block;
  margin-bottom: 14px;
  color: var(--cranberry);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
}

.mini-card p,
.menu-card p,
.detail-block p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

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

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

.menu-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 210px;
  padding: 24px;
}

.menu-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: 0;
}

.menu-card span {
  color: var(--sage);
  font-size: 1.4rem;
  font-weight: 900;
  white-space: nowrap;
}

.tag {
  color: var(--sage);
}

.feature-band {
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(52px, 7vw, 76px) max(18px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: #fffaf3;
}

.feature-band h2 {
  max-width: 820px;
  color: #fffaf3;
}

.feature-band .button-primary {
  flex: 0 0 auto;
  background: var(--gold);
  color: var(--ink);
}

.feature-band .button-primary:hover,
.feature-band .button-primary:focus-visible {
  background: #f0b94a;
}

.details-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.detail-block {
  padding: clamp(24px, 4vw, 36px);
}

.detail-block h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

.detail-block p {
  margin-top: 18px;
  max-width: 560px;
}

.hours-list {
  margin: 24px 0 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dt {
  font-weight: 900;
}

.hours-list dd {
  color: var(--muted);
  text-align: right;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-row a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--cranberry);
  font-weight: 900;
  text-decoration: none;
}

.contact-row a:hover,
.contact-row a:focus-visible {
  border-color: rgba(159, 36, 61, 0.38);
  background: rgba(159, 36, 61, 0.08);
  outline: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 24px clamp(18px, 4vw, 56px);
  background: #fff;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: grid;
  }

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

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

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

  .hero {
    min-height: 760px;
    align-items: end;
    padding-bottom: 138px;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(25, 17, 16, 0.88) 0%, rgba(25, 17, 16, 0.58) 58%, rgba(25, 17, 16, 0.2) 100%),
      linear-gradient(90deg, rgba(25, 17, 16, 0.44), rgba(25, 17, 16, 0.04));
  }

  .hero-copy {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    bottom: 28px;
    max-width: none;
  }

  .intro-section,
  .details-section {
    grid-template-columns: 1fr;
  }

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

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

  .feature-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 1rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .menu-card {
    display: grid;
  }

  .hours-list div {
    display: grid;
    gap: 4px;
  }

  .hours-list dd {
    text-align: left;
  }
}
