:root {
  --bg: #f5efe4;
  --bg-soft: #fff9f0;
  --surface: rgba(255, 250, 243, 0.82);
  --surface-strong: #fff6ea;
  --ink: #24150d;
  --muted: #6a4a37;
  --line: rgba(72, 38, 19, 0.12);
  --accent: #d6551f;
  --accent-dark: #8f2e14;
  --accent-soft: #ffd6b8;
  --shadow: 0 22px 55px rgba(62, 28, 9, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 85, 31, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(143, 46, 20, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f2e8 0%, #f2eadc 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.site-header,
.hero,
.highlights,
.about,
.menu,
.gallery,
.contact {
  animation: rise 0.7s ease both;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(60, 31, 14, 0.08);
}

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

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}

.brand span,
.eyebrow,
h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 1.5rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.contact a:hover {
  color: var(--accent-dark);
}

.site-nav a[aria-current="page"] {
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #ef7e2f 100%);
  color: #fffaf5;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(214, 85, 31, 0.24);
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: none;
}

.hero,
.menu-layout,
.section-grid,
.contact-grid {
  display: grid;
  gap: 28px;
}

.hero {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 72px 0 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 1.05rem;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.95;
}

h3 {
  font-size: 1.7rem;
}

.lead,
.about p,
.menu-card p,
.contact p,
.highlights p,
.menu-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-copy {
  display: grid;
  gap: 20px;
}

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

.hero-points {
  padding: 0;
  margin: 6px 0 0;
  list-style: none;
  color: var(--muted);
}

.hero-points li {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.75);
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-card img,
.gallery-item img,
.menu-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 0 60px 80px 0;
}

.hero-card-accent {
  width: 48%;
  right: 0;
  bottom: 0;
  aspect-ratio: 0.88;
}

.highlights,
.menu,
.gallery,
.contact,
.about {
  margin-top: 34px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(66, 32, 13, 0.06);
}

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

.highlights article,
.contact article,
.menu-card {
  padding: 22px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid rgba(92, 49, 25, 0.08);
}

.highlights strong,
.price {
  display: inline-block;
  margin-bottom: 8px;
}

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

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.menu-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.menu-grid-submenus {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.menu-card {
  min-height: 220px;
}

.menu-card-simple {
  min-height: 108px;
  display: flex;
  align-items: center;
}

.menu-card-simple h3 {
  margin: 0;
  line-height: 1.02;
}

.menu-card-banner {
  grid-column: span 2;
  grid-row: span 3;
  min-height: 460px;
  padding: 0;
  overflow: hidden;
}

.menu-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.price {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.menu-layout {
  align-items: center;
  margin-top: 28px;
}

.menu-copy {
  display: grid;
  gap: 16px;
}

.menu-poster {
  overflow: hidden;
  min-height: 340px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.gallery-item {
  overflow: hidden;
  min-height: 280px;
  border-radius: var(--radius);
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item-wide {
  grid-row: span 2;
  min-height: 100%;
}

.gallery-item-logo {
  background: radial-gradient(circle at top, #fff1e1, #f6d3b6);
  padding: 28px;
}

.gallery-item-logo img {
  object-fit: contain;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(22, 11, 6, 0.82);
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92vw, 1100px);
  height: min(88vh, 860px);
  margin: 6vh auto;
  padding: 18px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.lightbox-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.96);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.inline-photo {
  margin-top: 18px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 320px;
}

.inline-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.compact-photos {
  margin-top: 24px;
}

.about-media-column {
  display: grid;
  align-content: start;
}

.about-copy {
  display: grid;
  gap: 10px;
  align-content: start;
}

.about-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--ink);
}

.about-highlight {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.section-heading-submenu {
  margin-top: 42px;
  margin-bottom: 22px;
}

.section-heading-submenu .eyebrow {
  margin: 0;
  font-size: 2rem;
  color: var(--ink);
}

.contact-grid article h3 {
  margin-bottom: 12px;
}

.contact .section-heading h2 {
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  white-space: nowrap;
}

.contact-grid article {
  min-height: 100%;
}

.contact-grid article a {
  color: var(--accent-dark);
  font-weight: 700;
}

.page-hero,
.page-panel,
.gallery-grid-photos {
  display: grid;
  gap: 28px;
}

.page-hero {
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  padding: 64px 0 24px;
}

.page-hero-media.single-media {
  overflow: hidden;
  min-height: 460px;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.page-hero-media.single-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-panel {
  margin-top: 34px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(66, 32, 13, 0.06);
}

.copy-stack p,
.footer-note {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.copy-stack {
  gap: 12px;
}

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

.footer-note {
  margin-top: 18px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header,
  .site-nav,
  .hero,
  .page-hero,
  .section-grid,
  .menu-layout,
  .contact-grid,
  .highlights,
  .menu-grid,
  .menu-grid-submenus,
  .gallery-grid,
  .gallery-grid-photos {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
    padding: 18px;
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-media {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-card {
    position: static;
    aspect-ratio: 1.1;
  }

  .hero-card-accent {
    width: 100%;
  }

  .gallery-item-wide {
    grid-row: auto;
  }

  .contact .section-heading h2 {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .highlights,
  .menu,
  .gallery,
  .contact,
  .about {
    padding: 24px 18px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .brand span {
    font-size: 1.2rem;
    white-space: normal;
  }

  .hero-points li,
  .button,
  .button-small {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
