:root {
  --bg: #fff7ea;
  --bg-soft: #fff1dc;
  --card: #fffdf8;
  --text: #241915;
  --muted: #75665d;
  --muted-light: #a18f82;
  --primary: #7b2418;
  --primary-dark: #4d130d;
  --tomato: #b93424;
  --cream: #fff4df;
  --gold: #d89b3d;
  --olive: #586b3a;
  --line: rgba(123, 36, 24, 0.16);
  --white-line: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 70px rgba(36, 25, 21, 0.12);
  --shadow-soft: 0 14px 40px rgba(36, 25, 21, 0.08);
  --radius: 28px;
  --radius-large: 42px;
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  font-size: 1rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--primary);
  color: #ffffff;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(36, 25, 21, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 247, 234, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 32px rgba(36, 25, 21, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.logo span {
  color: #ffd88c;
}

.site-header.scrolled .logo {
  color: var(--text);
}

.site-header.scrolled .logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.site-header.scrolled .nav-links {
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-button {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}

.site-header.scrolled .mobile-menu-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid rgba(123, 36, 24, 0.18);
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.98rem;
  box-shadow: 0 16px 34px rgba(123, 36, 24, 0.22);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: 0 22px 48px rgba(123, 36, 24, 0.28);
}

.button.light {
  background: #ffffff;
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.button.light:hover {
  background: #ffe8b7;
  color: var(--primary-dark);
}

.button.ghost-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow: none;
}

.button.ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button.secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--line);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--primary);
  color: #ffffff;
}

.button.full {
  width: 100%;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 150px 0 34px;
  color: #ffffff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1800&q=80")
    center/cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 14, 10, 0.86), rgba(28, 14, 10, 0.44), rgba(28, 14, 10, 0.20)),
    linear-gradient(0deg, rgba(28, 14, 10, 0.82), rgba(28, 14, 10, 0.08) 55%);
}

.hero-content {
  max-width: 980px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow {
  color: #ffd88c;
  margin-bottom: 22px;
}

.hero h1 {
  max-width: 1000px;
  margin: 0 auto 26px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(3.6rem, 8.8vw, 8.2rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
}

.quick-panel div {
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.quick-panel div:last-child {
  border-right: 0;
}

.quick-panel span {
  display: block;
  color: #ffd88c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quick-panel strong {
  display: block;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.02rem;
}

/* GLOBAL SECTIONS */

section {
  padding: 96px 0;
  scroll-margin-top: 96px;
}

.section-kicker {
  color: var(--primary);
  margin-bottom: 14px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-head.centered {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-head.centered p {
  margin-left: auto;
  margin-right: auto;
}

.section-head h2,
.intro-section h2,
.signature-content h2,
.experience-copy h2,
.booking-copy h2,
.takeaway-card h2,
.location-copy h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.section-head p,
.intro-copy p,
.signature-content p,
.experience-copy p,
.booking-copy p,
.takeaway-card p,
.location-copy p {
  color: var(--muted);
  max-width: 540px;
  font-size: 1.08rem;
}

/* REVEAL */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* INTRO */

.intro-section {
  background: var(--bg);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 22px;
  padding-top: 16px;
}

/* SIGNATURE */

.signature-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signature-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.signature-image {
  min-height: 620px;
  border-radius: var(--radius-large);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.signature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-content {
  align-self: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow-soft);
}

.signature-content h2 {
  margin-bottom: 22px;
}

.signature-content p {
  margin-bottom: 28px;
}

.signature-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.signature-meta div {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff7eb;
}

.signature-meta span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.signature-meta strong {
  font-size: 1.15rem;
}

/* MENU */

.menu-section {
  background: var(--bg);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.menu-tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  color: var(--primary);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.menu-tab:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.menu-tab.active {
  background: var(--primary);
  color: #ffffff;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(36, 25, 21, 0.045);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(123, 36, 24, 0.26);
}

.menu-item.featured {
  background: linear-gradient(135deg, #fff1dc, #fffdf8);
  border-color: rgba(216, 155, 61, 0.45);
}

.menu-item span {
  display: block;
  color: var(--tomato);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 900;
  margin-bottom: 7px;
}

.menu-item h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.menu-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

.menu-item > strong {
  color: var(--primary);
  white-space: nowrap;
  font-size: 1.12rem;
}

/* EXPERIENCE */

.experience-section {
  background: var(--primary-dark);
  color: #ffffff;
}

.experience-section .section-kicker {
  color: #ffd88c;
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin: 24px 0;
}

.text-link {
  display: inline-flex;
  font-weight: 900;
  color: #ffd88c;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 1rem;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.experience-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.experience-card h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.experience-card p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.98rem;
}

/* BOOKING */

.booking-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.booking-copy h2 {
  margin-bottom: 22px;
}

.hours-box {
  margin-top: 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.hours-box h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 16px;
}

.hours-box div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.hours-box span {
  color: var(--muted);
}

.hours-box strong {
  color: var(--text);
  text-align: right;
}

.reservation-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  background: #fffdf8;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 1rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(123, 36, 24, 0.46);
  box-shadow: 0 0 0 5px rgba(123, 36, 24, 0.08);
  background: #ffffff;
}

.form-note {
  color: var(--muted-light);
  font-size: 0.94rem;
}

/* TAKEAWAY */

.takeaway-section {
  background: var(--primary);
  color: #ffffff;
}

.takeaway-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-large);
  padding: clamp(28px, 5vw, 54px);
}

.takeaway-section .section-kicker {
  color: #ffd88c;
}

.takeaway-card p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 18px;
}

/* GALLERY */

.gallery-section {
  background: var(--bg);
}

.premium-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 275px;
  gap: 16px;
}

.gallery-photo {
  position: relative;
  border: 0;
  border-radius: 30px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  color: #ffffff;
}

.gallery-photo.large {
  grid-row: span 2;
}

.gallery-photo.wide {
  grid-column: span 2;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease, filter 0.35s ease;
}

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.02) 55%);
}

.gallery-photo span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  font-weight: 900;
  color: #ffffff;
  font-size: 1rem;
}

.gallery-photo:hover img {
  transform: scale(1.055);
  filter: saturate(1.06);
}

/* LOCATION */

.location-section {
  background: var(--bg-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 26px;
  align-items: stretch;
}

.location-copy {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow-soft);
}

.location-copy h2 {
  margin-bottom: 20px;
}

.distance-list {
  display: grid;
  margin: 28px 0;
  border-top: 1px solid var(--line);
}

.distance-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.distance-list strong {
  color: var(--text);
  font-size: 1rem;
}

.distance-list span {
  color: var(--muted);
  font-size: 0.98rem;
  text-align: right;
}

.map-box {
  min-height: 560px;
  border-radius: var(--radius-large);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(0.9) contrast(0.96);
}

/* FAQ */

.faq-section {
  background: var(--bg);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(36, 25, 21, 0.045);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--text);
  list-style: none;
  font-size: 1.06rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-weight: 900;
}

details[open] summary::after {
  content: "−";
}

details p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 700px;
  font-size: 0.98rem;
}

/* FOOTER */

.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-inner strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 1.55rem;
  line-height: 1;
}

.footer-inner span {
  display: block;
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 8, 0.90);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.40);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

/* RESPONSIVE */

@media (max-width: 1040px) {
  .nav-links {
    gap: 11px;
    font-size: 0.9rem;
  }

  .experience-cards {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    grid-template-columns: 1fr;
  }

  .quick-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .quick-panel div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 880px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    color: var(--text);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 8px;
    color: var(--text);
  }

  .hero {
    min-height: auto;
    padding: 128px 0 48px;
  }

  .hero-content {
    text-align: left;
  }

  .hero h1,
  .hero-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 5.8rem);
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .quick-panel {
    margin-top: 38px;
  }

  section {
    padding: 72px 0;
  }

  .section-head {
    display: block;
  }

  .section-head.centered {
    text-align: left;
  }

  .section-head.centered p {
    margin-left: 0;
    margin-right: 0;
  }

  .section-head h2,
  .intro-section h2,
  .signature-content h2,
  .experience-copy h2,
  .booking-copy h2,
  .takeaway-card h2,
  .location-copy h2 {
    margin-bottom: 18px;
  }

  .intro-grid,
  .signature-card,
  .experience-grid,
  .booking-layout,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .signature-image {
    min-height: 420px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .takeaway-card {
    display: grid;
  }

  .premium-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-photo.large,
  .gallery-photo.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .map-box,
  .map-box iframe {
    min-height: 360px;
  }

  .distance-list div {
    display: block;
  }

  .distance-list span {
    display: block;
    text-align: left;
    margin-top: 3px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .logo {
    font-size: 1.4rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero h1 {
    letter-spacing: -0.06em;
  }

  .quick-panel,
  .signature-content,
  .reservation-card,
  .takeaway-card,
  .location-copy {
    border-radius: 30px;
  }

  .signature-image {
    min-height: 320px;
    border-radius: 30px;
  }

  .menu-item {
    display: grid;
  }

  .footer-inner {
    display: grid;
    gap: 12px;
  }
}