:root {
  --bg: #f4ede4;
  --bg-soft: #efe5d8;
  --paper: #fffaf4;
  --ink: #241713;
  --ink-soft: #6b564b;
  --line: rgba(36, 23, 19, 0.1);
  --dark: #18100d;
  --dark-soft: #231712;
  --accent: #b14d1b;
  --accent-deep: #7d3410;
  --container: min(1180px, calc(100vw - 40px));
  --copy: min(740px, 100%);
  --radius: 22px;
  --shadow: 0 18px 48px rgba(27, 17, 12, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, #f8f2eb 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.full-width { width: 100%; }
.shell { width: var(--container); margin: 0 auto; }
.boxed-copy { max-width: var(--copy); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(24, 16, 13, 0.94);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-shell { min-height: 92px; }

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img { width: 88px; height: auto; }
.brand-copy { display: flex; flex-direction: column; }
.kicker {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a78673;
}
.brand-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.95rem;
  letter-spacing: 0.04em;
  color: #fff6ec;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #dfcfc2;
}

.main-nav a {
  position: relative;
  font-size: 0.96rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  cursor: pointer;
}
.button:hover,
.button:focus-visible { transform: translateY(-1px); }
.button-solid {
  background: var(--accent);
  color: #fff7f1;
}
.button-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.28);
  color: #fff7f1;
}
.dark-outline {
  border-color: rgba(36, 23, 19, 0.2);
  color: var(--ink);
}

.hero {
  position: relative;
  background: var(--dark);
  min-height: 92vh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24,16,13,0.82) 0%, rgba(24,16,13,0.62) 36%, rgba(24,16,13,0.3) 65%, rgba(24,16,13,0.58) 100%),
    linear-gradient(180deg, rgba(24,16,13,0.35) 0%, rgba(24,16,13,0.72) 100%);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 110px 0 60px;
}

.hero-panel {
  color: #fff7ef;
}

.hero-panel h1,
.section-heading h2,
.reservation-shell h2 {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
}

.hero-panel h1 {
  font-size: clamp(3.7rem, 8vw, 7rem);
  max-width: 10ch;
}

.lead,
.section-heading p,
.story-copy p,
.special-row p,
.menu-note,
.visit-grid p,
.footer-shell p {
  color: var(--ink-soft);
}

.hero .lead {
  color: rgba(255, 245, 236, 0.88);
  max-width: 620px;
  font-size: 1.08rem;
  margin: 22px 0 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.intro-band {
  background: #1f1511;
  color: #f3e6d9;
}

.intro-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  padding: 22px 0;
}

.stat {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #fff5eb;
  margin-bottom: 4px;
}

.intro-shell p {
  margin: 0;
  color: #cfb9a8;
}

.section { padding: 74px 0; }
.section-heading { margin-bottom: 30px; }
.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 14ch;
}
.section-heading p { max-width: 650px; }

.story-grid,
.specials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.story-image-card,
.specials-image-card,
.gallery-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-image-card img,
.specials-image-card img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy p {
  font-size: 1.02rem;
  margin: 0 0 18px;
}

.specials-copy,
.menu-block,
.visit-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.specials-copy { padding: 12px 24px; }
.special-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(36,23,19,0.08);
}
.special-row:last-child { border-bottom: 0; }
.special-row h3,
.menu-block h3,
.visit-grid h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
}
.special-row strong {
  font-size: 1.1rem;
  color: var(--accent-deep);
  white-space: nowrap;
}

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

.menu-block { padding: 22px; }
.menu-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-block li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(36,23,19,0.08);
}
.menu-block li:last-child { border-bottom: 0; }
.menu-block strong { color: var(--accent-deep); }
.menu-note { margin-top: 14px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
  grid-auto-rows: 260px;
}
.gallery-large { grid-row: span 2; }

.reservation-band {
  background: linear-gradient(180deg, #241813 0%, #180f0c 100%);
  color: #fff3ea;
}
.reservation-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 0;
}
.reservation-shell h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  max-width: 12ch;
}
.reservation-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.site-footer {
  background: #120c09;
  color: #d7c1af;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-shell {
  align-items: start;
  padding: 26px 0 34px;
}
.site-footer strong { color: #fff5eb; display: block; margin-bottom: 8px; }

@media (max-width: 1080px) {
  .intro-shell,
  .story-grid,
  .specials-layout,
  .menu-layout,
  .visit-grid,
  .footer-shell,
  .reservation-shell {
    grid-template-columns: 1fr 1fr;
  }
  .intro-shell,
  .story-grid,
  .specials-layout,
  .menu-layout,
  .visit-grid { display: grid; }
  .footer-shell,
  .reservation-shell { display: grid; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-large { grid-row: span 1; }
}

@media (max-width: 820px) {
  .header-shell {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }
  .main-nav {
    width: 100%;
    order: 3;
    justify-content: center;
    flex-wrap: wrap;
  }
  .intro-shell,
  .story-grid,
  .specials-layout,
  .menu-layout,
  .gallery-grid,
  .visit-grid,
  .footer-shell,
  .reservation-shell {
    grid-template-columns: 1fr;
  }
  .hero-shell { min-height: auto; padding: 130px 0 48px; }
  .hero-panel h1 { max-width: 100%; }
  .gallery-grid { grid-auto-rows: 240px; }
}

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