/*
Theme Name: Antica Cappella
Theme URI: https://www.anticacappella.it/
Author: OpenCode
Description: Tema custom leggero per Ristorante Antica Cappella.
Version: 0.1.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: antica-cappella
*/

:root {
  --ac-cream: #f8f6f2;
  --ac-beige: #e7ded1;
  --ac-terracotta: #a85f3d;
  --ac-ink: #3c352f;
  --ac-bronze: #9b6a45;
  --ac-brown: #24150f;
  --ac-white: #fffaf3;
  --ac-serif: "Cormorant Garamond", Georgia, serif;
  --ac-sans: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ac-cream);
  color: var(--ac-ink);
  font-family: var(--ac-sans);
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; }

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

.site-header {
  z-index: 10;
  width: 100%;
  padding: 28px clamp(20px, 5vw, 70px);
}

.site-header--home {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--ac-white);
}

.site-header--page {
  position: relative;
  background: var(--ac-cream);
  color: var(--ac-ink);
  border-bottom: 1px solid rgba(60, 53, 47, .12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.brand img { width: 96px; }
.site-header--home .brand img { filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(0, 0, 0, .35)); }
.site-header--page .brand img { filter: none; }
.brand-text { display: grid; gap: 2px; }
.brand-text strong {
  font-family: var(--ac-serif);
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
}
.brand-text small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }

.main-nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 48px;
  min-height: 48px;
  padding: 0;
  border-color: rgba(255, 250, 243, .42);
  color: currentColor;
  background: rgba(255, 250, 243, .12);
}
.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.site-header--page .nav-toggle {
  border-color: rgba(156, 119, 81, .28);
  background: rgba(255, 250, 243, .72);
  color: var(--ac-bronze);
}
.site-header.is-nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.is-nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.language-switcher {
  position: relative;
  z-index: 20;
}
.language-switcher-current {
  min-height: 38px;
  padding: 8px 13px;
  border-color: rgba(156, 119, 81, .28);
  background: rgba(255, 250, 243, .72);
  color: var(--ac-bronze);
}
.language-switcher-current::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.site-header--home .language-switcher-current {
  border-color: rgba(255, 250, 243, .42);
  background: rgba(255, 250, 243, .12);
  color: var(--ac-white);
}
.language-switcher-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 92px;
  padding: 8px;
  background: var(--ac-white);
  border: 1px solid rgba(156, 119, 81, .18);
  box-shadow: 0 18px 44px rgba(60, 53, 47, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
.language-switcher:hover .language-switcher-menu,
.language-switcher:focus-within .language-switcher-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.language-switcher-menu a {
  display: block;
  padding: 8px 10px;
  color: var(--ac-ink);
  text-align: center;
}
.language-switcher-menu a:hover,
.language-switcher-menu .is-current {
  background: var(--ac-terracotta);
  color: var(--ac-white);
}

.button, button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 25px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-family: var(--ac-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary, input[type="submit"] { border-color: var(--ac-terracotta); background: var(--ac-terracotta); color: var(--ac-white); }
.booking input[type="submit"] { color: var(--ac-white); }
.button.light { color: var(--ac-white); }
.site-header--page .button.light {
  border-color: var(--ac-terracotta);
  background: var(--ac-terracotta);
  color: var(--ac-white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 180px 22px 110px;
  color: var(--ac-white);
  text-align: center;
  background: linear-gradient(rgba(20, 13, 8, .45), rgba(20, 13, 8, .54)), var(--hero-image) center/cover;
}

.hero-content { max-width: 980px; }
.hero .eyebrow { color: #f2dcc1; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--ac-bronze);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--ac-serif);
  font-weight: 500;
  line-height: 1.05;
}

h1 { font-size: clamp(44px, 6.4vw, 80px); }
h2 { font-size: clamp(34px, 5vw, 58px); }
h3 { font-size: clamp(25px, 3vw, 34px); }

.hero p { max-width: 660px; margin: 28px auto 0; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

.section { padding: clamp(64px, 8vw, 116px) clamp(20px, 6vw, 86px); }
.section.narrow { max-width: 1180px; margin: 0 auto; }
.content-wide { max-width: 1320px; margin: 0 auto; }
.section-title { max-width: 980px; margin: 0 auto 44px; text-align: center; }
.content-wide > .section-title { max-width: 1220px; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ac-white);
  border-bottom: 1px solid rgba(60, 53, 47, .12);
}

.feature { padding: clamp(38px, 6vw, 72px); text-align: center; }
.feature + .feature { border-left: 1px solid rgba(156, 119, 81, .22); }
.feature-icon { color: var(--ac-bronze); font-family: var(--ac-serif); font-size: 45px; line-height: 1; }

.quote-band {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 54px 20px;
  color: var(--ac-white);
  text-align: center;
  background: linear-gradient(rgba(30, 23, 16, .44), rgba(30, 23, 16, .5)), var(--band-image) center/cover;
}

.quote-band h2 { max-width: 820px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(32px, 7vw, 78px);
  align-items: center;
}

.split-wide {
  max-width: 1320px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
}

.split.reverse { grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); }
.split-wide.reverse { grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr); }
.split.reverse .split-media { order: 2; }
.split-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(156, 119, 81, .16);
  box-shadow: 0 22px 54px rgba(60, 53, 47, .13);
}
.split-copy p { margin: 20px 0 26px; }

.temporary-event {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .72fr);
  gap: clamp(28px, 6vw, 68px);
  align-items: center;
  background: var(--ac-brown);
  color: var(--ac-white);
}

.temporary-event-content { max-width: 680px; }
.temporary-event-poster {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: clamp(18px, 3vw, 34px);
  background: rgba(255, 250, 243, .08);
  border: 1px solid rgba(255, 250, 243, .18);
}
.temporary-event-poster img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}
.temporary-event-poster a,
.event-detail-poster a {
  display: block;
  cursor: zoom-in;
}
.temporary-event-poster .temporary-event-fallback {
  height: 360px;
  object-fit: cover;
}
.temporary-event .eyebrow { color: #d5b58d; }
.event-date {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 250, 243, .35);
  color: #f2dcc1;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.event-detail {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
  padding: clamp(26px, 4vw, 48px);
  background: var(--ac-white);
  border: 1px solid rgba(156, 119, 81, .18);
  box-shadow: 0 26px 70px rgba(60, 53, 47, .07);
}
.event-detail--no-poster { grid-template-columns: minmax(0, 1fr); }
.event-detail-poster {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 30px);
  background: var(--ac-cream);
  border: 1px solid rgba(156, 119, 81, .16);
}
.event-detail-poster img {
  width: 100%;
  max-height: 820px;
  object-fit: contain;
  box-shadow: 0 18px 44px rgba(60, 53, 47, .12);
}

.has-lightbox-open { overflow: hidden; }
.site-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(20, 13, 8, .88);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.site-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.site-lightbox img {
  max-width: min(100%, 1180px);
  max-height: 92vh;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .45);
}
.site-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-color: rgba(255, 250, 243, .55);
  border-radius: 999px;
  color: var(--ac-white);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  cursor: zoom-out;
}
.event-detail-content { min-width: 0; }
.event-detail-content h1 { font-size: clamp(38px, 4.4vw, 58px); }
.event-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(60, 53, 47, .78);
  font-size: clamp(18px, 2vw, 22px);
}
.event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}
.event-detail-content > .event-facts { margin-top: 0; }
.event-facts div {
  padding: 24px;
  background: var(--ac-cream);
  border: 1px solid rgba(156, 119, 81, .18);
}
.event-facts dt {
  margin-bottom: 6px;
  color: var(--ac-bronze);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.event-facts dd { margin: 0; font-family: var(--ac-serif); font-size: 30px; line-height: 1.15; }
.event-section { margin: 48px 0; }
.event-intro { margin: 28px 0 30px; }
.event-intro p {
  margin: 0 0 14px;
  color: rgba(60, 53, 47, .82);
}
.event-intro p:first-child {
  margin-bottom: 24px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}
.event-intro strong {
  font-weight: 800;
}
.event-section h2 { margin-bottom: 20px; }
.event-menu-box {
  padding: clamp(28px, 5vw, 52px);
  background: var(--ac-cream);
  border: 1px solid rgba(156, 119, 81, .18);
}
.event-menu-box p {
  margin: 0;
  line-height: 1.45;
}
.event-menu-box .event-menu-heading {
  margin: 30px 0 10px;
  color: var(--ac-bronze);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.event-menu-box h2 + .event-menu-heading { margin-top: 0; }

.archive-events-title { margin-bottom: clamp(44px, 6vw, 76px); }
.event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.event-card {
  display: grid;
  grid-template-columns: minmax(170px, .55fr) minmax(0, 1fr);
  gap: 24px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--ac-white);
  border: 1px solid rgba(156, 119, 81, .18);
  box-shadow: 0 18px 44px rgba(60, 53, 47, .06);
}
.event-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(135deg, var(--ac-white), #fbf4e8);
}
.event-card-image {
  display: grid;
  place-items: center;
  min-height: 210px;
  background: transparent;
}
.event-card-image img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(60, 53, 47, .18));
}
.event-card--featured .event-card-image { min-height: 420px; }
.event-card--featured .event-card-image img { max-height: 520px; }
.event-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.event-card h2 {
  margin-bottom: 24px;
  font-size: clamp(26px, 3vw, 34px);
}
.event-card--featured h2 { font-size: clamp(40px, 5vw, 62px); }
.event-card h2 a { text-decoration: none; }
.event-card-date,
.event-card-price {
  color: var(--ac-bronze);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.event-card .button { margin-top: auto; }
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 54px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(156, 119, 81, .22);
  color: var(--ac-bronze);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.pagination .current,
.pagination a:hover {
  background: var(--ac-terracotta);
  border-color: var(--ac-terracotta);
  color: var(--ac-white);
}

.events-service-page { padding-top: clamp(54px, 7vw, 96px); }
.service-hero {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(54px, 8vw, 104px);
  text-align: center;
}
.service-hero h1 { font-size: clamp(46px, 6vw, 78px); }
.service-hero p { max-width: 820px; margin: 24px auto 0; }
.service-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
  margin-bottom: clamp(54px, 8vw, 104px);
  padding: clamp(26px, 4vw, 44px);
  background: var(--ac-white);
  border: 1px solid rgba(156, 119, 81, .18);
}
.service-feature img,
.service-row img {
  width: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
}
.service-list { display: grid; gap: 26px; }
.service-row {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  background: var(--ac-white);
  border: 1px solid rgba(156, 119, 81, .18);
  scroll-margin-top: 40px;
}
.service-row h2 { margin-bottom: 16px; }
.service-notes {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  margin-top: clamp(54px, 8vw, 104px);
  padding: clamp(34px, 5vw, 62px);
  background: var(--ac-beige);
}
.service-notes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-notes li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(60, 53, 47, .18);
}
.service-cta {
  margin-top: clamp(54px, 8vw, 104px);
  padding: clamp(44px, 6vw, 72px);
  background: linear-gradient(135deg, var(--ac-brown), #3a2a1e);
  color: var(--ac-white);
  text-align: center;
}
.service-cta .eyebrow { color: #d5b58d; }
.service-cta p { max-width: 680px; margin-left: auto; margin-right: auto; }

.occasions-section { background: var(--ac-beige); }
.occasion-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.occasion-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 190px;
  background: var(--ac-white);
  border: 1px solid rgba(156, 119, 81, .18);
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.occasion-card:hover { transform: translateY(-3px); box-shadow: 0 22px 54px rgba(60, 53, 47, .12); }
.occasion-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 10 / 7;
  object-fit: cover;
}
.occasion-card span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 34px);
}
.occasion-card strong { font-family: var(--ac-serif); font-size: clamp(29px, 3vw, 38px); font-weight: 500; line-height: 1.05; }
.occasion-card small { margin-top: 12px; color: rgba(60, 53, 47, .76); font-size: 15px; line-height: 1.55; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: end;
  padding: 24px;
  overflow: hidden;
  color: var(--ac-white);
  text-decoration: none;
  background: var(--ac-brown);
}
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; transition: transform .5s ease, opacity .5s ease; }
.card strong { position: relative; z-index: 1; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; }
.card:hover img { transform: scale(1.05); opacity: .72; }

.cuisine-page { max-width: 1380px; margin: 0 auto; }
.cuisine-hero { margin-bottom: clamp(42px, 6vw, 72px); }
.cuisine-statement {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin: 0 auto clamp(34px, 6vw, 64px);
  padding: clamp(34px, 5vw, 62px);
  background: var(--ac-white);
  border: 1px solid rgba(156, 119, 81, .18);
  box-shadow: 0 26px 70px rgba(60, 53, 47, .07);
}
.cuisine-statement p:last-child {
  margin: 0;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
}
.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.cuisine-card {
  padding: clamp(28px, 4vw, 46px);
  background: var(--ac-white);
  border: 1px solid rgba(156, 119, 81, .18);
}
.cuisine-card h2 { font-size: clamp(30px, 3.5vw, 44px); }
.cuisine-card p:last-child { margin-bottom: 0; color: rgba(60, 53, 47, .78); }
.cuisine-note {
  margin-top: clamp(34px, 6vw, 64px);
  padding: clamp(38px, 6vw, 70px);
  background: linear-gradient(135deg, var(--ac-brown), #3a2a1e);
  color: var(--ac-white);
  text-align: center;
}
.cuisine-note .eyebrow { color: #d5b58d; }
.cuisine-note p { max-width: 760px; margin-left: auto; margin-right: auto; color: rgba(255, 250, 243, .82); }
.cuisine-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.cuisine-actions .button { color: var(--ac-white); }

.menu-page { max-width: 1380px; margin: 0 auto; }
.menu-page-title { margin-bottom: 28px; }
.menu-category-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 66px;
}
.menu-category-nav a {
  padding: 10px 17px;
  border: 1px solid rgba(156, 119, 81, .22);
  color: var(--ac-bronze);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}
.menu-category-nav a:hover { background: var(--ac-bronze); color: var(--ac-white); }
.menu-page-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px);
  background: var(--ac-white);
  border: 1px solid rgba(156, 119, 81, .16);
  box-shadow: 0 26px 70px rgba(60, 53, 47, .07);
}
.menu-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(34px, 6vw, 74px); row-gap: 0; }
.menu-category { scroll-margin-top: 36px; }
.menu-category + .menu-category { margin-top: 62px; padding-top: 54px; border-top: 1px solid rgba(156, 119, 81, .18); }
.menu-category h2 { margin-bottom: 28px; text-align: center; }
.menu-item { padding: 0 0 22px; margin-bottom: 22px; border-bottom: 1px solid rgba(60, 53, 47, .12); }
.menu-item header { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: baseline; }
.menu-item h3 { font-size: clamp(24px, 2.5vw, 30px); }
.menu-item p { margin: 9px 0 0; color: rgba(60, 53, 47, .78); }
.menu-price { color: var(--ac-bronze); font-weight: 800; white-space: nowrap; }

.booking {
  background: linear-gradient(135deg, var(--ac-brown), #3a2a1e);
  color: var(--ac-white);
}
.booking .eyebrow { color: #d5b58d; }
.booking .button { color: var(--ac-white); }
.booking input,
.booking textarea,
.booking select { color: var(--ac-ink); }
.booking .form-message { color: var(--ac-ink); }
.booking-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 6vw, 70px); align-items: start; }
.phone-cta {
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid rgba(255, 250, 243, .22);
  background: rgba(255, 250, 243, .08);
}
.phone-cta-label {
  margin: 0 0 12px;
  color: #d5b58d;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.phone-cta-number {
  display: inline-block;
  color: var(--ac-white);
  font-family: var(--ac-serif);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  text-decoration: none;
}
.phone-cta p:not(.phone-cta-label) { color: rgba(255, 250, 243, .82); }
.phone-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.booking-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.booking-form .full { grid-column: 1 / -1; }
.ac-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
label { display: grid; gap: 6px; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
input, textarea, select { width: 100%; padding: 14px 15px; border: 1px solid rgba(60, 53, 47, .22); background: var(--ac-white); color: var(--ac-ink); font: inherit; }
textarea { min-height: 130px; resize: vertical; }
.form-message { grid-column: 1 / -1; padding: 13px 16px; background: var(--ac-white); }

.booking-page-hero {
  max-width: 1220px;
  margin: 0 auto clamp(42px, 6vw, 72px);
  text-align: center;
}
.booking-page-hero h1 { font-size: clamp(38px, 4.4vw, 58px); }
.booking-page-hero p { max-width: 760px; margin: 20px auto 0; }
.booking-phone-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto 28px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--ac-brown);
  color: var(--ac-white);
}
.booking-phone-panel .eyebrow { color: #d5b58d; }
.booking-phone-panel h2 { font-size: clamp(42px, 5vw, 64px); }
.booking-phone-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.booking-phone-actions .button { color: var(--ac-white); }
.booking-page-form {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: var(--ac-white);
  border: 1px solid rgba(156, 119, 81, .18);
  box-shadow: 0 26px 70px rgba(60, 53, 47, .07);
}
.compact-title { margin-bottom: 34px; }
.compact-title h2 { font-size: clamp(30px, 4vw, 48px); }

.reviews-section { background: var(--ac-cream); }
.reviews-slider {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
}
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track .review-card { scroll-snap-align: start; }
.reviews-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.reviews-controls button {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-color: rgba(156, 119, 81, .32);
  border-radius: 999px;
  background: transparent;
  color: var(--ac-bronze);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.reviews-controls button:hover {
  border-color: var(--ac-terracotta);
  background: var(--ac-terracotta);
  color: var(--ac-white);
}
.review-card {
  padding: clamp(26px, 4vw, 38px);
  background: var(--ac-white);
  border: 1px solid rgba(156, 119, 81, .18);
  box-shadow: 0 18px 44px rgba(60, 53, 47, .06);
}
.review-source {
  margin: 0 0 8px;
  color: var(--ac-bronze);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.review-stars { margin: 0 0 20px; color: var(--ac-terracotta); letter-spacing: .08em; }
.review-card blockquote {
  margin: 0;
  color: rgba(60, 53, 47, .86);
  font-family: var(--ac-serif);
  font-size: clamp(23px, 2.5vw, 30px);
  line-height: 1.22;
}
.review-card cite {
  display: block;
  margin-top: 22px;
  color: rgba(60, 53, 47, .7);
  font-style: normal;
  font-weight: 800;
}
.reviews-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.location-section { background: var(--ac-cream); }
.location-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: stretch;
}
.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.map-frame {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(156, 119, 81, .2);
  background: var(--ac-white);
  box-shadow: 0 24px 60px rgba(60, 53, 47, .08);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }

.site-footer { padding: 54px clamp(20px, 6vw, 86px); background: var(--ac-brown); color: var(--ac-white); }
.site-footer a { color: inherit; text-decoration-color: rgba(255, 250, 243, .35); text-underline-offset: 4px; }
.site-footer p { max-width: 310px; color: rgba(255, 250, 243, .72); }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, auto)); gap: clamp(28px, 5vw, 60px); align-items: start; }
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo { width: 78px; filter: brightness(0) invert(1); }
.footer-brand-link span { display: grid; gap: 2px; }
.footer-brand-link strong {
  font-family: var(--ac-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}
.footer-brand-link small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.social-links {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 7px 11px 7px 7px;
  border: 1px solid rgba(255, 250, 243, .18);
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 250, 243, .84);
}
.social-links a:hover { background: rgba(255, 250, 243, .08); color: var(--ac-white); }
.social-links span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--ac-terracotta);
  color: var(--ac-white);
}
.social-links svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

@media (max-width: 920px) {
  .site-header { position: absolute; padding: 18px 20px; }
  .header-inner { position: relative; align-items: flex-start; }
  .nav-toggle { display: inline-block; flex: 0 0 auto; }
  .main-nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    display: grid;
    width: min(330px, calc(100vw - 40px));
    padding: 20px;
    background: var(--ac-white);
    border: 1px solid rgba(156, 119, 81, .18);
    box-shadow: 0 24px 58px rgba(36, 21, 15, .2);
    color: var(--ac-ink);
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
  }
  .site-header.is-nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 8px 0;
  }
  .main-nav .button.light {
    margin-top: 8px;
    border-color: var(--ac-terracotta);
    background: var(--ac-terracotta);
    color: var(--ac-white);
  }
  .language-switcher { margin-top: 8px; }
  .site-header .language-switcher-current {
    width: 100%;
    justify-content: center;
    border-color: rgba(156, 119, 81, .28);
    background: rgba(156, 119, 81, .08);
    color: var(--ac-bronze);
  }
  .language-switcher-menu {
    left: 0;
    right: auto;
    width: 100%;
  }
  .hero { min-height: 680px; }
  .features, .split, .split.reverse, .temporary-event, .occasion-cards, .occasion-card, .cards, .cuisine-statement, .cuisine-grid, .menu-list, .event-list, .event-card, .service-hero, .service-feature, .service-row, .service-notes, .service-notes ul, .booking-grid, .booking-phone-panel, .location-grid, .footer-grid { grid-template-columns: 1fr; }
  .reviews-track { grid-auto-columns: minmax(270px, 86vw); }
  .event-card--featured { grid-template-columns: 1fr; }
  .occasion-card img { height: auto; }
  .event-detail { grid-template-columns: 1fr; }
  .event-detail-content { order: 1; }
  .event-detail-poster { order: 2; }
  .event-facts { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .feature + .feature { border-left: 0; border-top: 1px solid rgba(156, 119, 81, .22); }
  .booking-form { grid-template-columns: 1fr; }
  .booking-phone-actions { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .brand img { width: 74px; }
  .brand-text strong { font-size: 23px; }
  .brand-text small { display: none; }
  .hero { min-height: 620px; padding-top: 140px; }
  .hero-actions .button { width: 100%; }
}
