:root {
  --bg: #fefae0;
  --bg-strong: #faedcd;
  --surface: rgba(255, 251, 240, 0.84);
  --surface-strong: rgba(255, 248, 235, 0.96);
  --ink: #283618;
  --muted: #6f5b45;
  --brand: #d4a373;
  --brand-strong: #bc6c25;
  --brand-deep: #582f0e;
  --line: rgba(88, 47, 14, 0.14);
  --radius: 12px;
  --shadow: 0 4px 20px rgba(88, 47, 14, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(212, 163, 115, 0.18), transparent 30%),
    radial-gradient(circle at right 12% top 10%, rgba(250, 237, 205, 0.9), transparent 25%),
    linear-gradient(180deg, #fffdf5 0%, var(--bg) 42%, #fff6ea 100%);
}

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

a {
  color: inherit;
}

.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.6;
}

.page-glow-a {
  top: -8rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(212, 163, 115, 0.45);
}

.page-glow-b {
  right: -5rem;
  top: 24rem;
  width: 22rem;
  height: 22rem;
  background: rgba(250, 237, 205, 0.75);
}

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0.85rem 0;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 251, 241, 0.8);
  box-shadow: 0 10px 30px rgba(88, 47, 14, 0.08);
  backdrop-filter: blur(16px);
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  justify-self: start;
  font-weight: 600;
  text-decoration: none;
  color: var(--brand-deep);
}

.brandmark {
  justify-self: center;
  display: inline-flex;
}

.brandmark img {
  width: min(216px, 42vw);
  height: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: #fffaf4;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--brand-strong);
  transform: translateY(-2px);
}

.button-nav {
  justify-self: end;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--brand-deep);
  border-color: rgba(88, 47, 14, 0.16);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.86);
}

.hero {
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-tag,
.menu-kicker,
.showcase-label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  color: var(--brand-deep);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.45rem;
}

.lead,
.section-heading p,
.menu-card p,
.details-card p,
.showcase-copy p,
.site-footer p {
  color: var(--muted);
}

.lead {
  margin: 1.1rem 0 0;
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.75rem 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--brand-deep);
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--brand);
}

.hero-showcase {
  display: flex;
  justify-content: flex-end;
}

.showcase-card,
.gallery-card,
.menu-card,
.details-card,
.contact-panel,
.hours-panel {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.showcase-card {
  width: min(100%, 470px);
  overflow: hidden;
}

.showcase-image {
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 247, 236, 0.92)),
    linear-gradient(135deg, rgba(212, 163, 115, 0.18), rgba(250, 237, 205, 0.08));
}

.showcase-image img {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
  border-radius: var(--radius);
  filter: sepia(0.18) saturate(1.08) hue-rotate(-8deg);
}

.showcase-copy {
  padding: 1.3rem 1.35rem 1.45rem;
}

.showcase-copy h2 {
  font-size: 1.85rem;
}

.showcase-copy p:last-child {
  margin-bottom: 0;
}

.gallery-section,
.menu-section,
.details-section {
  padding: 2.5rem 0;
}

.section-heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.section-heading p:last-child {
  max-width: 62ch;
  margin: 0;
}

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

.gallery-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.gallery-card:hover,
.gallery-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(88, 47, 14, 0.12);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  filter: sepia(0.18) saturate(1.08) hue-rotate(-8deg);
}

.gallery-card figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1rem 1.1rem;
}

.gallery-card strong {
  color: var(--brand-deep);
  font-size: 1rem;
}

.gallery-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-card-note {
  display: grid;
  align-content: end;
  gap: 0.8rem;
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 244, 230, 0.88)),
    var(--surface-strong);
}

.gallery-card-note h3 {
  font-size: 1.5rem;
}

.gallery-card-note p {
  margin: 0;
  color: var(--muted);
}

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

.menu-card {
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 244, 230, 0.9)),
    var(--surface-strong);
}

.menu-card h3 {
  margin-bottom: 0.8rem;
}

.menu-card p:last-child {
  margin-bottom: 0;
}

.details-card {
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(212, 163, 115, 0.18), rgba(250, 237, 205, 0.58)),
    var(--surface-strong);
}

.details-card h2 {
  margin-bottom: 0.85rem;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.6rem 0 1.2rem;
  background: rgba(255, 248, 237, 0.72);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 1fr 0.8fr;
  align-items: start;
}

.contact-panel,
.hours-panel {
  padding: 1.25rem;
}

.contact-panel {
  display: grid;
  gap: 0.7rem;
}

.contact-panel a {
  font-weight: 600;
  color: var(--brand-deep);
  text-decoration: none;
}

.hours-panel p {
  margin: 0.2rem 0;
}

.footer-note {
  padding-top: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .hero,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    justify-content: stretch;
  }

  .showcase-card {
    width: 100%;
  }

  .gallery-grid,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.6rem 0;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-link,
  .button-nav {
    justify-self: center;
  }

  .hero {
    padding-top: 1.4rem;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
