@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
  --black: #050505;
  --black-soft: #101010;
  --ivory: #f6f1e8;
  --white: #ffffff;
  --gold: #bf9652;
  --gold-light: #d7b878;
  --bordeaux: #4F0000;
  --bordeaux-dark: #2A0000;
  --blue: #0B1B38;
  --blue-soft: #10284E;
  --text: #171717;
  --muted: #6d665d;
  --border: rgba(191, 150, 82, .28);
  --shadow: 0 24px 70px rgba(0, 0, 0, .25);
  --radius: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 84px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; border-radius: 8px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; overflow: hidden; }
.section.compact { padding: 78px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-ivory { background: var(--ivory); color: var(--text); }
.section-white { background: var(--white); color: var(--text); }
.section-bordeaux { background: var(--bordeaux); color: var(--white); }
.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: none;
  pointer-events: none;
}
.texture > * { position: relative; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  z-index: 200;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(5, 5, 5, .66);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .2s ease, box-shadow .2s ease, height .2s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 5, 5, .94);
  box-shadow: 0 14px 42px rgba(0,0,0,.32);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 198px; max-height: 64px; object-fit: contain; }
.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  letter-spacing: .02em;
}
.primary-nav a { padding: 10px 0; position: relative; }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav a:hover::after, .primary-nav a.is-active::after { transform: scaleX(1); }
.header-cta { flex: 0 0 auto; }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 18px 34px rgba(191,150,82,.18);
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 18px 42px rgba(191,150,82,.28); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.04); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(191,150,82,.12); }
.btn-outline { color: var(--white); border-color: rgba(191,150,82,.64); background: rgba(191,150,82,.08); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--blue); }
.btn-large { min-height: 56px; padding: 16px 26px; font-size: 15px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: -.04em; font-family: inherit; font-weight: 900; }
h1 {
  font-size: clamp(44px, 7.4vw, 92px);
  max-width: 900px;
}
h2 { font-size: clamp(34px, 4.8vw, 68px); }
h3 { font-size: clamp(24px, 2.4vw, 38px); }
p { margin: 0; }
.lead { font-size: clamp(19px, 2.2vw, 26px); color: rgba(255,255,255,.82); max-width: 780px; }
.section-heading { max-width: 900px; margin-bottom: 54px; }
.section-heading.narrow { max-width: 780px; }
.section-heading p:not(.eyebrow) { margin-top: 22px; color: inherit; opacity: .75; font-size: 20px; }
.section-dark .section-heading p:not(.eyebrow), .section-bordeaux .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.76); opacity: 1; }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 80px) 0 82px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.86) 42%, rgba(0,0,0,.52) 100%),
    linear-gradient(0deg, rgba(0,0,0,.9) 0, transparent 42%);
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .54; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  align-items: end;
}
.hero-logo { width: min(560px, 84vw); margin: 0 0 28px; }
.hero-copy h1 { margin-bottom: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-actions.center { justify-content: center; }
.hero-note {
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid rgba(191,150,82,.32);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.8);
  max-width: 660px;
}
.quick-panel {
  border: 1px solid rgba(191,150,82,.32);
  border-radius: var(--radius-lg);
  background: rgba(8, 8, 8, .72);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  padding: 26px;
}
.quick-panel h2 { font-size: 32px; margin-bottom: 18px; }
.quick-action {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.quick-action span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .08em;
}
.quick-action strong { color: var(--white); font-size: 17px; }
.quick-action em { color: rgba(255,255,255,.62); font-style: normal; font-size: 14px; }
.quick-action:hover strong { color: var(--gold-light); }

.ticket-strip { background: var(--gold); color: var(--black); padding: 22px 0; }
.strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.strip-inner p { font-size: 18px; }
.ticket-strip .btn-primary { background: var(--black); color: var(--white); box-shadow: none; }



.weekly-program { padding: 58px 0 54px; }
.program-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}
.program-head h2 { max-width: 820px; }
.program-intro-link { display: block; }
.program-intro-link:hover h2 { color: var(--gold-light); }
.program-head p:not(.eyebrow) {
  margin-top: 12px;
  max-width: 760px;
  color: rgba(255,255,255,.74);
  font-size: 17px;
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.day-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191,150,82,.26);
  background: rgba(255,255,255,.052);
  box-shadow: 0 16px 42px rgba(0,0,0,.18);
  overflow: hidden;
}
.day-card.today { background: rgba(191,150,82,.12); border-color: rgba(191,150,82,.56); }
.day-card:hover {
  border-color: rgba(191,150,82,.6);
  background: rgba(255,255,255,.07);
  transform: translateY(-2px);
}
.day-card:hover .day-title strong { color: var(--gold-light); }
.day-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.16);
}
.day-title span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.day-title strong {
  color: var(--white);
  font-size: 17px;
  line-height: 1.1;
  text-align: right;
}
.film-list { display: grid; padding: 4px 12px 10px; }
.film-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 9px 4px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.film-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  text-align: right;
}
.film-version {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 4px 7px;
  border-radius: 999px;
  border: 1px solid rgba(191,150,82,.34);
  color: var(--gold-light);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.film-times { white-space: nowrap; }
.film-row:first-child { border-top: 0; }
.film-row strong {
  color: var(--white);
  font-size: 14px;
  line-height: 1.18;
}
.film-row em {
  color: rgba(255,255,255,.64);
  font-size: 12px;
  line-height: 1.35;
  font-style: normal;
  font-weight: 700;
}
.day-card:hover .film-row em { color: rgba(255,255,255,.78); }
.schedule-empty { grid-column: 1 / -1; padding: 24px; border: 1px solid rgba(191,150,82,.24); border-radius: var(--radius); background: rgba(255,255,255,.05); color: rgba(255,255,255,.76); font-weight: 700; }

.feature-grid { display: grid; gap: 18px; }
.feature-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card {
  background: var(--white);
  border: 1px solid rgba(5,5,5,.08);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 300px;
  box-shadow: 0 14px 38px rgba(0,0,0,.06);
}
.feature-card img { width: 42px; height: 42px; margin-bottom: 34px; }
.feature-card h3 { font-size: 28px; margin-bottom: 14px; }
.feature-card p { color: var(--muted); }

.split-block {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: 36px;
  align-items: center;
  margin-top: 72px;
}
.split-block.reverse { grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); }
.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--black);
  box-shadow: var(--shadow);
}
.media-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.media-card.raised { transform: translateY(-8px); }
.media-card.palazzo-card { background: #eee9df; }
.media-card.palazzo-card img { aspect-ratio: 73 / 30; object-fit: contain; }
.media-card.wide img { aspect-ratio: 16 / 8.6; }
.copy-card {
  padding: 46px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(0,0,0,.08);
}
.copy-card.border-left { border-left: 6px solid var(--gold); }
.copy-card h3, .copy-card h2 { margin-bottom: 18px; }
.copy-card p { color: var(--muted); font-size: 18px; }
.copy-card .btn { margin-top: 28px; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 28px; color: var(--text); }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); }

.room-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.room-card {
  border: 1px solid rgba(191,150,82,.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}
.room-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.room-content { padding: 34px; }
.room-kicker {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
.room-content h3 { margin: 12px 0 16px; }
.room-content p { color: rgba(255,255,255,.72); }
.spec-list { margin: 28px 0; display: grid; gap: 10px; }
.spec-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.spec-list dt { color: var(--gold); font-weight: 800; }
.spec-list dd { margin: 0; color: rgba(255,255,255,.86); }
.tech-band {
  margin-top: 28px;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191,150,82,.34);
  background: rgba(255,255,255,.055);
  display: grid;
  grid-template-columns: .9fr 1.5fr auto;
  gap: 26px;
  align-items: center;
}
.tech-band h3 { font-size: 36px; }
.tech-band p { color: rgba(255,255,255,.74); }
.band-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.band-actions .btn { white-space: nowrap; }

.mini-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.mini-grid div { padding: 18px; border-radius: 18px; background: var(--ivory); }
.mini-grid strong { display: block; margin-bottom: 7px; }
.mini-grid span { color: var(--muted); font-size: 14px; }

.bar-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: center; }
.bar-cards { display: grid; gap: 14px; }
.bar-cards article {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.bar-cards h3 { font-size: 28px; margin-bottom: 12px; }
.bar-cards p { color: rgba(255,255,255,.73); }

.menu-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: stretch; }
.menu-card {
  background: var(--white);
  border: 1px solid rgba(5,5,5,.08);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 34px rgba(0,0,0,.06);
}
.menu-card.featured { grid-row: span 3; padding: 0; overflow: hidden; }
.menu-card.featured img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.menu-card.featured > div { padding: 30px; }
.menu-card h3 { font-size: 32px; margin-bottom: 12px; }
.menu-card p { color: var(--muted); margin-bottom: 14px; }
.menu-card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.menu-card li + li { margin-top: 7px; }
.cta-card {
  margin-top: 24px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-card h3 { font-size: 36px; }


.menu-story {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
}
.signature-heading {
  margin: 10px 0 14px;
}
.signature-heading h3 {
  font-size: clamp(28px, 3vw, 42px);
}
.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}
.signature-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(191,150,82,.38);
  box-shadow: 0 14px 38px rgba(0,0,0,.12);
}
.signature-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
}
.signature-card h3 { font-size: 27px; margin-bottom: 12px; }
.signature-card p { color: rgba(255,255,255,.72); }
.menu-section {
  margin-top: 22px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(5,5,5,.08);
  box-shadow: 0 14px 38px rgba(0,0,0,.06);
}
.menu-section.wine-section { background: #fbfaf7; }
.menu-section-heading {
  display: grid;
  grid-template-columns: .62fr 1fr 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}
.menu-section-heading h3 { font-size: 36px; }
.menu-section-heading p:not(.eyebrow) { color: var(--muted); }
.menu-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.wine-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 16px;
}
.menu-list-card {
  padding: 18px;
  border-radius: 20px;
  background: var(--ivory);
  border: 1px solid rgba(5,5,5,.08);
}
.menu-list-card h4 {
  margin: 0 0 12px;
  color: var(--bordeaux);
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.menu-list-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
  color: var(--text);
}
.menu-list-card li {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(5,5,5,.07);
  color: #433d36;
}
.menu-list-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-list-card.compact-columns ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
}
.menu-list-card.compact-columns li:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }
.food-note {
  margin-top: 28px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: var(--white);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: center;
}
.food-note h3 { font-size: 34px; }
.food-note p:last-child { color: rgba(255,255,255,.75); font-size: 18px; }
.request-section { background: var(--white); }
.request-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.request-grid p { color: var(--muted); font-size: 19px; margin-top: 20px; }
.request-note {
  margin-top: 28px;
  padding: 20px;
  border-radius: 22px;
  background: var(--ivory);
  border: 1px solid rgba(5,5,5,.08);
  color: var(--muted);
}
.request-note strong { color: var(--text); }
.event-form {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(191,150,82,.32);
  display: grid;
  gap: 14px;
}
.event-form label {
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.event-form input,
.event-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  padding: 15px 16px;
  outline: none;
}
.event-form textarea { resize: vertical; min-height: 160px; }
.event-form input::placeholder,
.event-form textarea::placeholder { color: rgba(255,255,255,.42); }
.event-form input:focus,
.event-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(191,150,82,.18); }
.event-form .btn { margin-top: 10px; }
.form-message {
  margin: 14px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(191,150,82,.38);
  background: rgba(191,150,82,.12);
  color: #fff;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.45;
}
.form-message.is-error {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
.event-form button[disabled] { opacity: .72; cursor: wait; transform: none; }

.form-small { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }

.event-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  border: 1px solid rgba(191,150,82,.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.event-hero img { width: 100%; height: 100%; object-fit: cover; min-height: 430px; }
.event-copy { padding: 44px; align-self: center; }
.event-copy h3 { margin-bottom: 18px; }
.event-copy p { color: rgba(255,255,255,.74); font-size: 18px; }
.event-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.offer-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.offer-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
}
.offer-card span { display: block; margin-bottom: 26px; color: var(--gold); font-weight: 900; letter-spacing: .12em; }
.offer-card h3 { font-size: 28px; margin-bottom: 12px; }
.offer-card p { color: rgba(255,255,255,.72); }
.process {
  margin-top: 24px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  color: var(--text);
}
.process h3 { margin-bottom: 22px; }
.process ol { margin: 0; padding-left: 24px; display: grid; gap: 12px; color: var(--muted); }
.process strong { color: var(--text); }

.program-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 40px; align-items: center; }
.program-grid p { color: var(--muted); font-size: 19px; margin-top: 20px; }
.program-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.program-card { padding: 34px; border-radius: var(--radius-lg); background: var(--ivory); border: 1px solid rgba(5,5,5,.08); }
.program-card h3 { font-size: 34px; margin-bottom: 20px; }
.info-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.info-list li { padding-bottom: 14px; border-bottom: 1px solid rgba(5,5,5,.08); color: var(--muted); }
.info-list strong { color: var(--text); }

.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.location-grid p { color: var(--muted); font-size: 19px; margin-top: 20px; }
.location-card { margin-top: 30px; padding: 30px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid rgba(5,5,5,.08); box-shadow: 0 14px 34px rgba(0,0,0,.06); }
.location-card h3 { font-size: 30px; }
.location-card a { color: var(--bordeaux); font-weight: 800; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.muted { color: var(--muted); }

.hours-grid { display: grid; grid-template-columns: .8fr 1fr auto; gap: 34px; align-items: center; }
.hours-grid p { color: rgba(255,255,255,.7); margin-top: 18px; }
.hours-card { display: grid; gap: 8px; }
.hours-card div { display: flex; justify-content: space-between; gap: 24px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hours-card strong { color: var(--gold); }
.hours-card span { color: rgba(255,255,255,.82); }

.final-cta { text-align: center; }
.final-cta img { width: min(460px, 74vw); margin: 0 auto 28px; }
.final-cta p { max-width: 620px; margin: 22px auto 0; color: rgba(255,255,255,.76); font-size: 20px; }

.site-footer { background: #020202; color: rgba(255,255,255,.72); padding: 58px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; }
.footer-logo { width: 220px; margin-bottom: 18px; }
.site-footer h3 { font-family: inherit; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.site-footer a { display: block; margin-top: 8px; color: rgba(255,255,255,.9); }
.site-footer a:hover { color: var(--gold-light); }
.legal-links a { display: inline; }

.mobile-sticky-cta { display: none; }

.reveal, .reveal-group > * { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible, .reveal-group > *.is-visible { opacity: 1; transform: none; }
.reveal-group > *:nth-child(2) { transition-delay: .06s; }
.reveal-group > *:nth-child(3) { transition-delay: .12s; }
.reveal-group > *:nth-child(4) { transition-delay: .18s; }
.reveal-group > *:nth-child(5) { transition-delay: .24s; }
.reveal-group > *:nth-child(6) { transition-delay: .30s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal, .reveal-group > * { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  :root { --header-height: 76px; }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    min-height: calc(100svh - var(--header-height));
    padding: 32px 20px 110px;
    background: rgba(5,5,5,.98);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { font-size: 28px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.24);
    background: transparent;
    color: var(--white);
  }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 2px; background: currentColor; display: block; }
  .header-cta { display: none; }
  .brand img { width: 170px; }
  .hero-grid, .split-block, .split-block.reverse, .bar-layout, .event-hero, .program-head, .program-grid, .location-grid, .hours-grid, .request-grid { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--header-height) + 54px); }
  .quick-panel { max-width: 580px; }
  .feature-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-band { grid-template-columns: 1fr; }
  .band-actions { justify-content: flex-start; }
  .schedule-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .day-card.wide { grid-column: span 2; }
  .offer-grid, .signature-grid, .menu-list-grid, .wine-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .hero-actions, .event-actions, .program-actions, .location-actions, .band-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .strip-inner, .cta-card { flex-direction: column; align-items: stretch; }
  .feature-grid.four, .room-grid, .menu-grid, .schedule-grid, .offer-grid, .footer-grid, .signature-grid, .menu-list-grid, .wine-grid { grid-template-columns: 1fr; }
  .day-card.wide { grid-column: auto; }
  .showtime-list.two-columns { grid-template-columns: 1fr; }
  .menu-card.featured { grid-row: auto; }
  .copy-card, .room-content, .event-copy, .process, .program-card, .location-card, .event-form, .food-note { padding: 24px; }
  .menu-section { padding: 20px; }
  .weekly-program { padding: 58px 0 54px; }
  .program-head { gap: 16px; margin-bottom: 16px; }
  .program-head p:not(.eyebrow) { font-size: 15px; margin-top: 10px; }
  .day-title { padding: 14px 16px 10px; flex-direction: column; align-items: flex-start; gap: 5px; }
  .day-title strong { text-align: left; font-size: 18px; }
  .film-list { padding: 2px 12px 10px; }
  .film-row { grid-template-columns: 1fr; gap: 6px; padding: 8px 3px; }
  .film-row strong { font-size: 14px; }
  .film-meta { justify-content: flex-start; text-align: left; }
  .film-row em { font-size: 12px; }
  .showtime { grid-template-columns: 58px 1fr; padding: 13px 12px; }
  .menu-list-card.compact-columns ul { grid-template-columns: 1fr; }
  .menu-list-card.compact-columns li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(5,5,5,.07); padding-bottom: 5px; }
  .menu-list-card.compact-columns li:last-child { border-bottom: 0; padding-bottom: 0; }
  .mini-grid { grid-template-columns: 1fr; }
  .spec-list div { grid-template-columns: 1fr; gap: 4px; }
  .hours-grid { gap: 22px; }
  .hours-card div { align-items: baseline; }
  .site-footer { padding-bottom: 96px; }
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    z-index: 150;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .mobile-sticky-cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--black);
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(0,0,0,.38);
  }
}

/* Pagina grazie Netlify Forms */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.thanks-card {
  max-width: 820px;
  padding: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(191,150,82,.36);
  box-shadow: var(--shadow);
  text-align: center;
}
.thanks-logo {
  width: min(340px, 82vw);
  margin: 0 auto 34px;
}
.thanks-card h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 78px);
  line-height: .98;
  letter-spacing: -.06em;
}
.thanks-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px auto 0;
  color: rgba(255,255,255,.76);
  font-size: 19px;
}
.thanks-actions {
  justify-content: center;
  margin-top: 34px;
}
@media (max-width: 720px) {
  .thanks-card { padding: 38px 24px; }
}

/* Mobile layout fixes v18: prevent horizontal overflow in Food & Drink sections */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 900px) {
  .menu-story,
  .menu-section-heading,
  .food-note {
    grid-template-columns: 1fr;
  }

  .menu-story {
    gap: 18px;
    align-items: stretch;
  }

  .menu-section-heading {
    gap: 10px;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .section,
  .section.compact {
    overflow-x: clip;
  }

  .menu-story {
    margin-bottom: 22px;
  }

  .menu-story .media-card,
  .menu-story .copy-card {
    width: 100%;
    min-width: 0;
  }

  .menu-story .copy-card {
    padding: 24px;
  }

  .menu-story .media-card.wide img {
    aspect-ratio: 16 / 10;
  }

  .menu-section-heading h3,
  .food-note h3 {
    font-size: clamp(30px, 9vw, 42px);
    max-width: 100%;
    overflow-wrap: normal;
  }

  .menu-section-heading p:not(.eyebrow),
  .food-note p:last-child {
    font-size: 16px;
    line-height: 1.55;
    max-width: 100%;
  }

  .menu-section,
  .menu-list-card,
  .food-note,
  .copy-card {
    min-width: 0;
  }

  .menu-list-card li,
  .menu-list-card h4,
  .copy-card p,
  .food-note p {
    overflow-wrap: anywhere;
  }

  .food-note {
    gap: 16px;
    align-items: start;
  }
}
