:root {
  --espresso: #21150f;
  --deep-brown: #2d1d15;
  --walnut: #4a3022;
  --tan: #b48b57;
  --brass: #9a743d;
  --parchment: #f2e9db;
  --cream: #fffaf2;
  --ink: #211b17;
  --muted: #6f6258;
  --line: rgba(78, 51, 35, 0.2);
  --shadow: 0 18px 50px rgba(33, 21, 15, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  min-height: 92px;
  padding: 18px clamp(22px, 6vw, 84px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--espresso);
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-mark {
  width: 52px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--tan);
  color: var(--tan);
  font: 700 2rem/1 Baskerville, "Palatino Linotype", Georgia, serif;
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong {
  font: 600 clamp(1.65rem, 3vw, 2.15rem)/.9 Baskerville, "Palatino Linotype", Georgia, serif;
  letter-spacing: .09em;
}
.brand-copy small {
  margin-top: 8px;
  font-size: .68rem;
  letter-spacing: .42em;
}

.button {
  min-height: 46px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tan);
  border-radius: 0;
  font-size: .77rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-solid { background: var(--tan); color: var(--espresso); }
.button-solid:hover { background: #c29a65; }
.button-outline { color: var(--cream); background: transparent; }
.button-outline:hover { background: var(--tan); color: var(--espresso); }
.button-outline-dark { color: var(--walnut); border-color: var(--brass); }
.button-outline-dark:hover { background: var(--brass); color: white; }
.button.small { min-height: 40px; padding: 9px 18px; }

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  background: var(--espresso);
  color: var(--cream);
}
.hero-copy {
  padding: clamp(70px, 10vw, 145px) clamp(34px, 7vw, 105px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(33,21,15,.92), rgba(33,21,15,.96)),
    radial-gradient(circle at 10% 10%, rgba(180,139,87,.28), transparent 38%);
}
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: Baskerville, "Palatino Linotype", Georgia, serif;
  font-weight: 600;
  line-height: .98;
}
h1 {
  max-width: 720px;
  font-size: clamp(3.5rem, 7vw, 6.75rem);
  text-wrap: balance;
}
.rule { width: 58px; height: 2px; margin: 28px 0; background: var(--tan); }
.hero-text { max-width: 620px; margin: 0; color: #e7ddd1; font-size: clamp(1rem, 1.3vw, 1.2rem); }
.coming-soon {
  margin: 32px 0 0;
  color: var(--tan);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.hero-actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-photo { margin: 0; min-height: 650px; overflow: hidden; background: #1a120e; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 40% center; }

.details {
  padding: clamp(58px, 8vw, 105px) clamp(24px, 8vw, 120px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: var(--parchment);
}
.details-block { padding: 0 clamp(10px, 5vw, 74px); }
.details-block:first-child { border-right: 1px solid var(--line); padding-left: 0; }
.details-block:last-child { padding-right: 0; }
.details h2, .menu-section h2 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
address { margin-top: 24px; display: grid; font-style: normal; }
.phone { display: inline-block; margin-top: 20px; font-size: 1.15rem; font-weight: 600; text-decoration: none; }
.detail-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.open-status {
  width: fit-content;
  margin: 22px 0 0;
  padding: 7px 12px;
  border: 1px solid rgba(61, 112, 63, .28);
  background: rgba(61, 112, 63, .08);
  color: #365f38;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.open-status.is-closed {
  border-color: rgba(125, 72, 54, .28);
  background: rgba(125, 72, 54, .08);
  color: #7d4836;
}
.hours-list { margin: 18px 0 0; }
.hours-list div {
  padding: 9px 0;
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.hours-list dt { font-weight: 600; }
.hours-list dd { margin: 0; color: var(--muted); }

.menu-section {
  padding: clamp(68px, 9vw, 120px) clamp(18px, 7vw, 100px);
  text-align: center;
  background: #fffaf2;
}
.section-heading p:last-child { margin: 18px auto 0; color: var(--muted); }
.menu-preview {
  width: min(1120px, 100%);
  margin: 42px auto 0;
  padding: 0;
  display: block;
  border: 1px solid rgba(78,51,35,.16);
  background: white;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}
.menu-preview img { width: 100%; }
.menu-preview:focus-visible, .text-button:focus-visible, .dialog-close:focus-visible, .button:focus-visible {
  outline: 3px solid var(--tan);
  outline-offset: 4px;
}
.text-button {
  margin-top: 26px;
  padding: 12px 4px 7px;
  border: 0;
  border-bottom: 1px solid var(--brass);
  background: transparent;
  color: var(--walnut);
  font: 600 .78rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  padding: 44px clamp(24px, 7vw, 100px) 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 18px 40px;
  background: var(--espresso);
  color: #e7ddd1;
}
.footer-brand { grid-row: span 2; }
.site-footer a { text-decoration: none; }
.footer-soon { color: var(--tan); letter-spacing: .15em; text-transform: uppercase; }
.copyright {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #9e9084;
  font-size: .78rem;
}

.menu-dialog {
  width: min(96vw, 1500px);
  height: min(94vh, 1100px);
  padding: 0;
  border: 0;
  background: #17100c;
  color: white;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.menu-dialog::backdrop { background: rgba(12, 8, 6, .86); backdrop-filter: blur(4px); }
.dialog-toolbar {
  min-height: 66px;
  padding: 12px 18px 12px 24px;
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #17100c;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.dialog-toolbar h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.dialog-close {
  padding: 10px 16px;
  border: 1px solid var(--tan);
  background: transparent;
  color: white;
  cursor: pointer;
}
.dialog-content { height: calc(100% - 66px); overflow: auto; padding: 22px; }
.dialog-content img { width: 100%; min-width: 900px; margin: 0 auto; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 80px; padding-bottom: 80px; }
  .hero-photo { min-height: 520px; }
  .details { grid-template-columns: 1fr; gap: 52px; }
  .details-block { padding: 0; }
  .details-block:first-child { padding-bottom: 52px; border-right: 0; border-bottom: 1px solid var(--line); }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { grid-row: auto; justify-content: center; }
  .copyright { grid-column: auto; }
}

@media (max-width: 620px) {
  .site-header { min-height: 78px; padding: 14px 18px; }
  .site-header .brand-mark { width: 42px; }
  .site-header .brand-copy strong { font-size: 1.35rem; }
  .site-header .brand-copy small { font-size: .55rem; }
  .header-menu { min-height: 40px; padding: 9px 13px; }
  .hero-copy { padding: 64px 24px; }
  h1 { font-size: clamp(3.2rem, 16vw, 4.7rem); }
  .hero-photo { min-height: 470px; }
  .hero-actions .button { width: 100%; }
  .details { padding: 56px 24px; }
  .hours-list div { grid-template-columns: 1fr; gap: 2px; }
  .hours-list dd { font-size: .94rem; }
  .menu-section { padding-left: 14px; padding-right: 14px; }
  .dialog-content { padding: 10px; }
  .dialog-content img { min-width: 760px; }
}

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