:root {
  --paper: #f2eadc;
  --paper-warm: #e7d7bd;
  --ink: #221d1a;
  --muted: #6b6157;
  --wine: #4a1721;
  --wine-bright: #681e2d;
  --tomato: #dc573c;
  --green: #193b32;
  --cream: #fff8eb;
  --line: rgba(34, 29, 26, 0.19);
  --serif: "Prata", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 20px 60px rgba(46, 25, 20, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(220, 87, 60, 0.08), transparent 24rem),
    radial-gradient(circle at 88% 30%, rgba(25, 59, 50, 0.07), transparent 25rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--cream);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1340px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding-block: 124px;
}

.eyebrow {
  margin: 0 0 24px;
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 860px;
  margin-bottom: 30px;
  font-size: clamp(58px, 7.6vw, 126px);
  line-height: 0.94;
}

h2 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(46px, 5.6vw, 84px);
  line-height: 1;
}

h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.large-copy {
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.5;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;
  min-height: 78px;
  padding: 10px 32px;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(242, 234, 220, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  position: relative;
  display: block;
  width: 40px;
  height: 58px;
  flex: 0 0 auto;
}

.brand-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.brand-logo__light {
  opacity: 0;
}

.home-page .site-header:not(.is-scrolled) .brand-logo__dark {
  opacity: 0;
}

.home-page .site-header:not(.is-scrolled) .brand-logo__light,
.brand--footer .brand-logo__light {
  opacity: 1;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 42px);
}

.main-nav a,
.header-contact {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.main-nav a::after,
.header-contact::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.header-contact:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 26px;
  border: 1px solid var(--wine);
  border-radius: 0;
  color: var(--cream);
  background: var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.button:hover {
  color: var(--wine);
  background: transparent;
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 12px 17px;
  font-size: 10px;
}

.button--light {
  color: var(--wine);
  background: var(--cream);
  border-color: var(--cream);
}

.button--light:hover {
  color: var(--cream);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 118px;
  overflow: hidden;
}

.hero::before {
  content: "8/10";
  position: absolute;
  right: -0.05em;
  bottom: 48px;
  z-index: -1;
  color: rgba(74, 23, 33, 0.055);
  font-family: var(--serif);
  font-size: 32vw;
  letter-spacing: -0.11em;
  line-height: 0.7;
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.7fr);
  align-items: center;
  gap: clamp(48px, 7vw, 120px);
  min-height: calc(100svh - 188px);
  padding-bottom: 72px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: clamp(18px, 1.6vw, 23px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 560px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-meta > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 18px;
}

.hero-meta > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.hero-meta strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  white-space: nowrap;
}

.hero-meta span {
  max-width: 110px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 620px;
}

.hero-photo {
  position: absolute;
  inset: 2% 0 9% 8%;
  margin: 0;
  box-shadow: var(--shadow);
}

.hero-photo::before,
.hero-photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-color: var(--cream);
  border-style: solid;
  pointer-events: none;
}

.hero-photo::before {
  top: 18px;
  left: 18px;
  border-width: 1px 0 0 1px;
}

.hero-photo::after {
  right: 18px;
  bottom: 18px;
  border-width: 0 1px 1px 0;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo figcaption,
.kitchen-photo figcaption {
  position: absolute;
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-photo figcaption {
  right: 20px;
  bottom: 20px;
  z-index: 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-ticket {
  position: absolute;
  left: -18px;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-width: 255px;
  padding: 23px 25px;
  color: var(--cream);
  background: var(--wine);
  transform: rotate(-2deg);
  box-shadow: 0 16px 40px rgba(74, 23, 33, 0.28);
}

.hero-ticket::before,
.hero-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--paper);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-ticket::before { left: -9px; }
.hero-ticket::after { right: -9px; }

.hero-ticket span,
.hero-ticket small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-ticket strong {
  margin-block: 6px 4px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.hero-ticket small {
  opacity: 0.63;
}

.hero-seal {
  position: absolute;
  top: 1%;
  right: -29px;
  z-index: 3;
  display: grid;
  place-content: center;
  width: 126px;
  height: 126px;
  color: var(--cream);
  background: var(--green);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  transform: rotate(8deg);
}

.hero-seal::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 248, 235, 0.5);
  border-radius: 50%;
}

.hero-seal span,
.hero-seal i {
  position: relative;
  z-index: 1;
}

.hero-seal i {
  color: var(--tomato);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
}

.hero-ribbon {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  color: var(--cream);
  background: var(--tomato);
  transform: rotate(-0.5deg) scale(1.01);
}

.hero-ribbon div {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  padding: 15px 0;
  font-family: var(--serif);
  font-size: 18px;
  animation: marquee 35s linear infinite;
}

.hero-ribbon i {
  color: var(--wine);
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-intro {
  display: grid;
  max-width: 920px;
}

.section-intro > p:last-child {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
}

.proof {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}

.proof h2 {
  font-size: clamp(42px, 4.5vw, 70px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-grid article {
  min-height: 170px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.proof-grid span {
  display: block;
  max-width: 160px;
  color: var(--muted);
  font-size: 12px;
}

.scenario {
  color: var(--cream);
  background: var(--green);
}

.scenario-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.scenario-photo {
  position: relative;
  height: min(780px, 72vw);
  overflow: hidden;
}

.scenario-photo::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 248, 235, 0.46);
}

.scenario-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.68) rotate(-43deg);
}

.photo-note {
  position: absolute;
  right: 28px;
  bottom: 30px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--cream);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scenario-copy h2 {
  font-size: clamp(48px, 5.6vw, 86px);
}

.scenario-copy .large-copy {
  max-width: 720px;
  color: rgba(255, 248, 235, 0.78);
}

.format-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 46px;
  padding: 0;
  list-style: none;
}

.format-list li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 248, 235, 0.38);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 500px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
}

.space-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.space-card {
  position: relative;
  grid-column: span 5;
  height: 610px;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
}

.space-card--wide {
  grid-column: span 7;
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.space-card:nth-child(3) img {
  object-position: center 35%;
}

.space-card:nth-child(4) img {
  object-position: center 35%;
}

.space-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(20, 12, 12, 0.82) 100%);
}

.space-card:hover img {
  opacity: 0.95;
  transform: scale(1.035);
}

.space-card__body {
  position: absolute;
  inset: auto 34px 30px;
  z-index: 2;
}

.space-card__body span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.space-card__body h3 {
  margin-block: 8px 10px;
}

.space-card__body p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.8);
  font-size: 14px;
}

.buyout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr auto;
  gap: 52px;
  align-items: center;
  margin-top: 30px;
  padding: 48px;
  color: var(--cream);
  background: var(--wine);
}

.buyout .eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 248, 235, 0.62);
}

.buyout h3 {
  margin-bottom: 0;
  font-size: clamp(32px, 3.4vw, 52px);
}

.buyout > p {
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.72);
  font-size: 14px;
}

.terms {
  background: rgba(255, 248, 235, 0.55);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.price-grid article {
  min-height: 158px;
  padding: 28px;
}

.price-grid article + article {
  border-left: 1px solid var(--line);
}

.price-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-grid strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.1;
}

.terms-note {
  margin: 16px 0 64px;
  color: var(--muted);
  font-size: 12px;
}

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

.terms-card {
  min-height: 490px;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.terms-card--accent {
  color: var(--cream);
  background: var(--wine);
  border-color: var(--wine);
}

.terms-card h3 {
  min-height: 92px;
  margin-bottom: 42px;
}

.terms-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-card li {
  position: relative;
  padding: 14px 0 14px 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.terms-card--accent li {
  border-color: rgba(255, 248, 235, 0.18);
}

.terms-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--tomato);
}

.terms-card__note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.document-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 22px;
  padding: 38px;
  color: var(--cream);
  background: var(--green);
}

.document-strip h3 {
  margin-bottom: 0;
  font-size: clamp(27px, 3vw, 40px);
}

.document-links {
  display: grid;
  gap: 0;
}

.document-links a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 248, 235, 0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.document-links small {
  margin-top: 14px;
  color: rgba(255, 248, 235, 0.54);
  font-size: 10px;
  line-height: 1.5;
}

.kitchen {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--wine);
}

.kitchen::before {
  content: "AT";
  position: absolute;
  right: -0.08em;
  bottom: -0.26em;
  color: rgba(255, 248, 235, 0.04);
  font-family: var(--serif);
  font-size: 46vw;
  line-height: 1;
}

.kitchen-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.87fr) minmax(380px, 0.63fr);
  column-gap: clamp(60px, 8vw, 130px);
  row-gap: 100px;
  align-items: center;
}

.kitchen-copy .large-copy {
  max-width: 720px;
  color: rgba(255, 248, 235, 0.76);
}

.taste-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  border: 1px solid rgba(255, 248, 235, 0.2);
}

.taste-notes article {
  min-height: 138px;
  padding: 22px;
}

.taste-notes article:nth-child(even) {
  border-left: 1px solid rgba(255, 248, 235, 0.2);
}

.taste-notes article:nth-child(n + 3) {
  border-top: 1px solid rgba(255, 248, 235, 0.2);
}

.taste-notes strong,
.taste-notes span {
  display: block;
}

.taste-notes strong {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.taste-notes span {
  color: rgba(255, 248, 235, 0.62);
  font-size: 10px;
  line-height: 1.55;
}

.chef-line {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 248, 235, 0.24);
}

.chef-line span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 248, 235, 0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.chef-line p {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 21px;
}

.kitchen-motto {
  width: fit-content;
  margin: 36px 0 0 auto;
  padding: 10px 14px;
  color: var(--wine);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 17px;
  transform: rotate(-2deg);
}

.kitchen-photo {
  position: relative;
  height: 660px;
  margin: 0;
}

.kitchen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kitchen-photo figcaption {
  right: -18px;
  bottom: 55px;
  padding: 9px 12px;
  color: var(--wine);
  background: var(--cream);
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.menu-preview {
  align-self: start;
}

.menu-preview__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 248, 235, 0.3);
}

.menu-preview__head h3 {
  max-width: 480px;
  margin-bottom: 0;
}

.menu-preview__head a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-preview ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-preview li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-block: 18px;
  border-bottom: 1px solid rgba(255, 248, 235, 0.16);
  font-size: 15px;
}

.menu-preview li strong {
  font-weight: 600;
  white-space: nowrap;
}

.menu-note {
  margin-top: 20px;
  color: rgba(255, 248, 235, 0.52);
  font-size: 11px;
}

.dish-stack {
  position: relative;
  height: 620px;
}

.dish-stack img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.dish-stack img:first-child {
  top: 0;
  right: 0;
  width: 80%;
  height: 78%;
  transform: rotate(2deg);
}

.dish-stack img:last-child {
  bottom: 0;
  left: -8%;
  width: 53%;
  height: 52%;
  border: 8px solid var(--cream);
  transform: rotate(-5deg);
}

.founder {
  color: var(--cream);
  background: #171412;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.75fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.founder-photo {
  position: relative;
  margin: 0;
}

.founder-photo::after {
  content: "AT 8/10";
  position: absolute;
  right: -18px;
  bottom: -18px;
  padding: 12px 16px;
  color: var(--wine);
  background: var(--cream);
  font-family: var(--serif);
  font-size: 19px;
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.founder-copy .large-copy {
  color: rgba(255, 248, 235, 0.72);
}

.name-story {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 248, 235, 0.2);
}

.name-story span {
  display: block;
  margin-bottom: 10px;
  color: var(--tomato);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.name-story p {
  max-width: 620px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}

.full-menu {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(34, 29, 26, 0.06) 50%, transparent calc(50% + 1px)),
    var(--paper-warm);
}

.full-menu::before {
  content: "MENU";
  position: absolute;
  top: 30px;
  right: -0.05em;
  color: rgba(74, 23, 33, 0.045);
  font-family: var(--serif);
  font-size: 21vw;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.menu-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.55fr;
  gap: 90px;
  align-items: end;
}

.menu-heading h2 {
  max-width: 880px;
  margin-bottom: 0;
}

.menu-heading__copy {
  padding-bottom: 10px;
}

.menu-heading__copy p {
  color: var(--muted);
  font-size: 15px;
}

.menu-heading__copy a {
  display: block;
  width: fit-content;
  margin-top: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toolbar {
  position: sticky;
  top: 78px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 66px;
  padding-block: 18px;
  border-block: 1px solid rgba(34, 29, 26, 0.24);
  background: rgba(231, 215, 189, 0.93);
  backdrop-filter: blur(16px);
}

.menu-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.menu-filter {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(34, 29, 26, 0.27);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.menu-filter:hover,
.menu-filter[aria-selected="true"] {
  color: var(--cream);
  background: var(--wine);
  border-color: var(--wine);
}

.menu-toolbar > p {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 28px;
  padding-top: 42px;
}

.menu-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  background: var(--cream);
  border: 1px solid rgba(34, 29, 26, 0.13);
  box-shadow: 0 15px 40px rgba(50, 31, 21, 0.06);
  animation: menu-card-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.menu-card__image {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: var(--cream);
  background: var(--wine);
  cursor: zoom-in;
}

.menu-card__image::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: 0;
  background-image: linear-gradient(rgba(23, 20, 18, 0.2), rgba(23, 20, 18, 0.2)), var(--dish-image);
  background-position: center;
  background-size: cover;
  filter: blur(22px) saturate(0.82) brightness(0.76);
  transform: scale(1.12);
}

.menu-card__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.menu-card__image:hover img {
  filter: brightness(1.03);
}

.menu-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 245px;
  padding: 26px 25px 23px;
}

.menu-card__category {
  margin-bottom: 14px;
  color: var(--tomato);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 15px;
  font-size: clamp(23px, 2.3vw, 32px);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.menu-card__description {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.menu-card__bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(34, 29, 26, 0.13);
}

.menu-card__price {
  font-family: var(--serif);
  font-size: 24px;
}

.menu-card__volume,
.menu-card__resolution {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card__resolution {
  display: block;
  margin-top: 9px;
  color: rgba(107, 97, 87, 0.62);
}

.menu-card__details {
  align-self: flex-start;
  margin-top: 13px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--wine);
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-card__details:hover {
  color: var(--tomato);
}

.menu-noscript {
  margin-top: 40px;
  padding: 24px;
  border: 1px solid var(--line);
}

@keyframes menu-card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-lightbox {
  width: min(1220px, calc(100% - 48px));
  max-width: none;
  max-height: calc(100svh - 48px);
  padding: 0;
  border: 0;
  overflow: hidden;
  color: var(--cream);
  background: #171412;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.52);
}

.menu-lightbox::backdrop {
  background: rgba(12, 10, 9, 0.82);
  backdrop-filter: blur(10px);
}

.menu-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 248, 235, 0.4);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(23, 20, 18, 0.5);
  font-family: var(--serif);
  font-size: 29px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.menu-lightbox__image {
  min-width: 0;
  height: 100%;
  background: #0c0a09;
}

.menu-lightbox__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-lightbox__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
  height: min(840px, calc(100svh - 48px));
}

.menu-lightbox__details {
  overflow-y: auto;
  padding: 48px 42px 38px;
  background:
    radial-gradient(circle at 100% 0, rgba(190, 74, 62, 0.18), transparent 38%),
    #211918;
}

.menu-lightbox__eyebrow,
.menu-lightbox__meta,
.menu-nutrition-group__title {
  margin: 0;
  color: rgba(255, 248, 235, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-lightbox__details h2 {
  max-width: 450px;
  margin: 9px 36px 14px 0;
  font-size: clamp(31px, 3.3vw, 49px);
  line-height: 1.04;
}

.menu-lightbox__meta {
  color: var(--cream);
  font-size: 11px;
}

.menu-lightbox__section {
  margin-top: 29px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 248, 235, 0.16);
}

.menu-lightbox__section h3 {
  margin-bottom: 13px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-lightbox__section > p {
  margin: 0;
  color: rgba(255, 248, 235, 0.76);
  font-size: 13px;
  line-height: 1.65;
}

.menu-lightbox__nutrition {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.menu-nutrition-group {
  padding: 15px;
  background: rgba(255, 248, 235, 0.06);
  border: 1px solid rgba(255, 248, 235, 0.11);
}

.menu-nutrition-group__title {
  margin-bottom: 13px;
  color: var(--cream);
}

.menu-nutrition-group__values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 8px;
}

.menu-nutrient {
  min-width: 0;
}

.menu-nutrient__label,
.menu-nutrient__value {
  display: block;
}

.menu-nutrient__label {
  margin-bottom: 2px;
  color: rgba(255, 248, 235, 0.48);
  font-size: 8px;
}

.menu-nutrient__value {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  white-space: nowrap;
}

.menu-lightbox__links {
  display: grid;
  gap: 9px;
  margin-top: 29px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 248, 235, 0.16);
}

.menu-lightbox__links a {
  width: fit-content;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .menu-lightbox__layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(350px, 1.2fr);
  }

  .menu-lightbox__details {
    padding-inline: 30px;
  }
}

.reviews .section-heading {
  align-items: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.review-card {
  min-height: 360px;
  padding: 34px 30px;
  background: var(--paper);
}

.review-score {
  display: block;
  margin-bottom: 76px;
  color: var(--tomato);
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
}

.review-card h3 {
  margin-bottom: 16px;
  font-size: 31px;
}

.review-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.review-card--accent {
  color: var(--cream);
  background: var(--tomato);
}

.review-card--accent .review-score {
  color: var(--cream);
}

.review-card--accent p {
  color: rgba(255, 248, 235, 0.75);
}

.steps {
  color: var(--cream);
  background: var(--ink);
}

.steps .section-intro > p:last-child {
  color: rgba(255, 248, 235, 0.6);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 248, 235, 0.2);
  list-style: none;
}

.step-list li {
  position: relative;
  min-height: 300px;
  padding: 24px 26px 30px;
  border-right: 1px solid rgba(255, 248, 235, 0.2);
}

.step-list li:first-child {
  border-left: 1px solid rgba(255, 248, 235, 0.2);
}

.step-list > li > span {
  color: var(--tomato);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.step-list div {
  position: absolute;
  right: 26px;
  bottom: 30px;
  left: 26px;
}

.step-list h3 {
  margin-bottom: 14px;
  font-size: 27px;
}

.step-list p {
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.58);
  font-size: 12px;
}

.faq {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 126px;
}

.faq-intro h2 {
  font-size: clamp(44px, 4.8vw, 70px);
}

.faq-intro > p:last-child {
  max-width: 430px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding-block: 27px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 17px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.faq-list details[open] summary span {
  color: var(--cream);
  background: var(--wine);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 54px 28px 0;
  color: var(--muted);
}

.request {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--green);
}

.request::before {
  content: "";
  position: absolute;
  top: -260px;
  left: -220px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 248, 235, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(255, 248, 235, 0.025), 0 0 0 170px rgba(255, 248, 235, 0.02);
}

.request-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(460px, 0.72fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.request-copy {
  position: sticky;
  top: 130px;
}

.request-copy h2 {
  font-size: clamp(54px, 6.5vw, 96px);
}

.request-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 248, 235, 0.7);
  font-size: 18px;
}

.request-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-top: 52px;
  font-size: 13px;
}

.request-contacts a {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 27px;
}

.request-contacts span {
  color: rgba(255, 248, 235, 0.56);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
  padding: 42px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(34, 29, 26, 0.33);
  border-radius: 0;
  outline: none;
  color: var(--ink);
  background: transparent;
  transition: border-color 0.2s ease;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--tomato);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8f867b;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--wine);
}

.consent a {
  color: var(--ink);
}

.button--form {
  grid-column: 1 / -1;
  gap: 14px;
  width: 100%;
  margin-top: 8px;
}

.button--form span {
  font-size: 17px;
}

.form-note,
.form-status {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.form-status {
  display: none;
  color: var(--green);
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.legal-header {
  grid-template-columns: 1fr auto;
}

.legal-page {
  max-width: 980px;
  padding-block: 170px 110px;
}

.legal-page h1 {
  max-width: 920px;
  font-size: clamp(48px, 7vw, 96px);
}

.legal-updated {
  margin-bottom: 80px;
  color: var(--muted);
  font-size: 12px;
}

.legal-page section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-page section h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
}

.legal-page section p {
  max-width: 820px;
  margin-bottom: 10px;
  color: var(--muted);
}

.legal-page section ul {
  max-width: 820px;
  margin: 14px 0 18px;
  padding-left: 22px;
  color: var(--muted);
}

.legal-page section li + li {
  margin-top: 7px;
}

.legal-page section a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-footer {
  padding-block: 38px;
}

.legal-footer .footer-meta {
  padding-top: 0;
  border-top: 0;
}

.site-footer {
  padding-block: 64px 78px;
  color: rgba(255, 248, 235, 0.76);
  background: #171412;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
}

.brand--footer {
  color: var(--cream);
}

.brand--footer .brand-logo {
  width: 70px;
  height: 102px;
}

.footer-grid > div:first-child > p {
  max-width: 450px;
  margin: 28px 0 0;
  color: rgba(255, 248, 235, 0.46);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-size: 13px;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 248, 235, 0.14);
  color: rgba(255, 248, 235, 0.35);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-action {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal--delay {
  transition-delay: 0.14s;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-contact {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.76fr;
    gap: 48px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .proof {
    gap: 45px;
  }

  .space-card {
    height: 540px;
  }

  .buyout {
    grid-template-columns: 1fr auto;
  }

  .buyout > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

  .price-grid article:nth-child(3) {
    border-left: 0;
  }

  .price-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-card {
    grid-column: span 6;
  }

  .request-grid {
    grid-template-columns: 0.72fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 36px, 680px);
  }

  .section {
    padding-block: 86px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
    padding-inline: 18px;
    color: var(--ink);
    background: rgba(242, 234, 220, 0.94);
    border-color: var(--line);
    backdrop-filter: blur(18px);
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    justify-self: end;
    width: 38px;
    height: 38px;
    padding: 11px 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 18px 28px;
    color: var(--cream);
    background: var(--green);
    transform: translateY(-140%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    padding-block: 15px;
    border-bottom: 1px solid rgba(255, 248, 235, 0.16);
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 94px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .hero-visual {
    min-height: 650px;
  }

  .hero-photo {
    inset: 0 0 30px 5%;
  }

  .hero-seal {
    right: -12px;
  }

  .hero-ticket {
    left: 0;
  }

  .proof,
  .scenario-grid,
  .section-heading,
  .menu-heading,
  .kitchen-grid,
  .founder-grid,
  .faq,
  .request-grid {
    grid-template-columns: 1fr;
  }

  .proof,
  .scenario-grid,
  .faq,
  .request-grid {
    gap: 58px;
  }

  .scenario-photo {
    height: 650px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 45px;
  }

  .menu-heading {
    gap: 24px;
  }

  .menu-heading__copy {
    max-width: 580px;
  }

  .menu-toolbar {
    top: 68px;
  }

  .space-card,
  .space-card--wide {
    grid-column: span 12;
    height: 570px;
  }

  .buyout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 35px 28px;
  }

  .buyout > p {
    grid-column: auto;
    grid-row: auto;
  }

  .buyout .button {
    justify-self: start;
  }

  .terms-grid {
    grid-template-columns: 1fr;
  }

  .terms-card {
    min-height: auto;
  }

  .terms-card h3 {
    min-height: auto;
  }

  .document-strip {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kitchen-grid {
    row-gap: 65px;
  }

  .kitchen-photo {
    height: 600px;
  }

  .dish-stack {
    max-width: 540px;
    margin-inline: auto;
  }

  .founder-grid {
    gap: 58px;
  }

  .step-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-list li:nth-child(3) {
    border-left: 1px solid rgba(255, 248, 235, 0.2);
  }

  .step-list li {
    border-bottom: 1px solid rgba(255, 248, 235, 0.2);
  }

  .faq-intro,
  .request-copy {
    position: static;
  }

  .request-grid {
    gap: 50px;
  }

  .lead-form {
    max-width: 650px;
  }

  .mobile-action {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr auto;
    color: var(--cream);
    background: var(--wine);
    box-shadow: 0 12px 40px rgba(42, 21, 19, 0.3);
  }

  .mobile-action a {
    padding: 15px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-action a + a {
    border-left: 1px solid rgba(255, 248, 235, 0.24);
  }

  .site-footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .shell {
    width: calc(100% - 28px);
  }

  .section {
    padding-block: 72px;
  }

  .site-header .brand-logo {
    width: 32px;
    height: 46px;
  }

  .hero {
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(48px, 15.2vw, 72px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(42px, 12.4vw, 62px);
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-meta {
    margin-top: 38px;
  }

  .hero-meta > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .hero-meta > div + div {
    padding-left: 18px;
  }

  .hero-visual {
    min-height: 530px;
  }

  .hero-photo {
    inset: 10px 0 28px 0;
  }

  .hero-seal {
    top: -18px;
    right: -5px;
    width: 104px;
    height: 104px;
    font-size: 14px;
  }

  .hero-ticket {
    bottom: -12px;
    left: 10px;
    min-width: 225px;
    padding: 19px 22px;
  }

  .hero-ticket strong {
    font-size: 25px;
  }

  .proof-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    min-height: 130px;
  }

  .scenario-photo {
    height: 540px;
  }

  .scenario-copy h2 {
    font-size: 44px;
  }

  .format-list li {
    font-size: 10px;
  }

  .space-cards {
    gap: 18px;
  }

  .space-card,
  .space-card--wide {
    height: 500px;
  }

  .space-card__body {
    inset: auto 23px 23px;
  }

  .buyout .button {
    width: 100%;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-grid article + article,
  .price-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .terms-note {
    margin-bottom: 46px;
  }

  .terms-card,
  .document-strip {
    padding: 28px 23px;
  }

  .founder-photo::after {
    right: -6px;
    bottom: -12px;
  }

  .kitchen-photo {
    height: 470px;
  }

  .chef-line p {
    font-size: 17px;
  }

  .menu-preview__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-preview li {
    font-size: 13px;
  }

  .menu-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 45px;
    padding-block: 13px;
  }

  .menu-toolbar > p {
    padding-inline: 2px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 10px;
    padding-top: 25px;
  }

  .menu-card {
    grid-column: auto;
  }

  .menu-card__image {
    aspect-ratio: 1;
  }

  .menu-card__body {
    min-height: 190px;
    padding: 14px 12px 12px;
  }

  .menu-card__category {
    margin-bottom: 9px;
    font-size: 6px;
  }

  .menu-card h3 {
    margin-bottom: 10px;
    font-size: clamp(15px, 4.3vw, 18px);
    line-height: 1.18;
    -webkit-line-clamp: 4;
  }

  .menu-card__description {
    display: none;
  }

  .menu-card__bottom {
    gap: 7px;
    padding-top: 10px;
  }

  .menu-card__price {
    font-size: 17px;
  }

  .menu-card__volume {
    font-size: 6px;
  }

  .menu-card__resolution {
    display: none;
  }

  .menu-card__details {
    margin-top: 10px;
    padding-bottom: 2px;
    font-size: 6px;
    letter-spacing: 0.06em;
  }

  .menu-lightbox {
    width: calc(100% - 18px);
    max-height: calc(100svh - 18px);
    overflow-y: auto;
  }

  .menu-lightbox__layout {
    display: block;
    height: auto;
  }

  .menu-lightbox__image {
    height: min(36svh, 320px);
  }

  .menu-lightbox__details {
    overflow: visible;
    padding: 25px 18px 24px;
  }

  .menu-lightbox__details h2 {
    margin-right: 35px;
    font-size: clamp(26px, 8vw, 37px);
  }

  .menu-lightbox__section {
    margin-top: 22px;
    padding-top: 19px;
  }

  .menu-lightbox__section > p {
    font-size: 12px;
  }

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

  .menu-lightbox__close {
    top: 9px;
    right: 9px;
    width: 40px;
    height: 40px;
  }

  .brand--footer .brand-logo {
    width: 64px;
    height: 94px;
  }

  .dish-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
  }

  .dish-stack img,
  .dish-stack img:first-child,
  .dish-stack img:last-child {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    border: 0;
    object-fit: cover;
    transform: none;
  }

  .dish-stack img:first-child {
    object-position: center 68%;
  }

  .dish-stack img:last-child {
    object-position: center;
  }

  .review-card {
    min-height: auto;
  }

  .review-score {
    margin-bottom: 45px;
  }

  .step-list {
    grid-template-columns: 1fr;
  }

  .step-list li,
  .step-list li:nth-child(3) {
    min-height: 230px;
    border-left: 1px solid rgba(255, 248, 235, 0.2);
  }

  .faq-list summary {
    font-size: 19px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .field,
  .field--full,
  .button--form,
  .consent,
  .form-note,
  .form-status {
    grid-column: 1;
  }

  .request-copy h2 {
    font-size: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* Event landing refresh */
#story-title,
#location,
#spaces,
#event-gallery,
#visual-reel,
#space-main,
#space-small,
#space-lounge,
#space-bar,
#floor-plans-title {
  scroll-margin-top: 88px;
}

.home-page .site-header:not(.is-scrolled) {
  color: var(--cream);
  background: linear-gradient(180deg, rgba(19, 9, 9, 0.55), transparent);
}

.home-page .site-header:not(.is-scrolled) .header-cta {
  color: var(--cream);
  background: var(--tomato);
  border-color: var(--tomato);
}

.event-hero {
  position: relative;
  min-height: clamp(720px, 100svh, 980px);
  overflow: hidden;
  color: var(--cream);
  background: #180d0c;
}

.event-hero__media,
.event-hero__shade {
  position: absolute;
  inset: 0;
}

.event-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  transform: scale(1.015);
}

.event-hero__shade {
  background:
    linear-gradient(90deg, rgba(20, 8, 8, 0.88) 0%, rgba(20, 8, 8, 0.53) 49%, rgba(20, 8, 8, 0.1) 78%),
    linear-gradient(180deg, rgba(18, 8, 8, 0.27) 0%, transparent 38%, rgba(18, 8, 8, 0.82) 100%);
}

.event-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  grid-template-rows: 1fr auto;
  gap: 30px 64px;
  min-height: clamp(720px, 100svh, 980px);
  padding-top: 134px;
  padding-bottom: 34px;
}

.event-hero__copy {
  align-self: end;
  max-width: 790px;
  padding-bottom: 34px;
}

.event-hero .eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 248, 235, 0.78);
}

.event-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(68px, 8vw, 122px);
  line-height: 0.9;
  text-wrap: balance;
}

.event-hero__lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 248, 235, 0.86);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
}

.event-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.event-hero__phone {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.event-hero__detail {
  position: relative;
  align-self: end;
  height: 290px;
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 235, 0.56);
  box-shadow: 0 25px 60px rgba(20, 6, 6, 0.32);
}

.event-hero__detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.event-hero__detail figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(255, 248, 235, 0.92);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.event-hero__facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(69, 17, 27, 0.92);
  border: 1px solid rgba(255, 248, 235, 0.2);
  backdrop-filter: blur(10px);
}

.event-hero__facts > div {
  min-height: 86px;
  padding: 18px 22px;
}

.event-hero__facts > div + div {
  border-left: 1px solid rgba(255, 248, 235, 0.2);
}

.event-hero__facts strong,
.event-hero__facts span {
  display: block;
}

.event-hero__facts strong {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  line-height: 1;
}

.event-hero__facts span {
  color: rgba(255, 248, 235, 0.68);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.event-story {
  color: var(--cream);
  background:
    radial-gradient(circle at 87% 10%, rgba(220, 87, 60, 0.2), transparent 34rem),
    #2b0c14;
}

.event-story__heading,
.venue-spaces__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.6fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
  margin-bottom: 64px;
}

.event-story__heading h2,
.venue-spaces__heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 0.98;
  text-wrap: balance;
}

.event-story__intro > p {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 248, 235, 0.76);
  font-size: 17px;
}

.event-story__intro ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-story__intro li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 248, 235, 0.25);
  border-radius: 99px;
  color: rgba(255, 248, 235, 0.78);
  font-size: 10px;
  font-weight: 600;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(270px, 23vw, 340px);
  gap: 14px;
}

.event-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #16090d;
}

.event-gallery__item--program {
  grid-column: span 7;
  grid-row: span 2;
}

.event-gallery__item--stairs {
  grid-column: span 5;
  grid-row: span 2;
}

.event-gallery__item--bar {
  grid-column: span 8;
}

.event-gallery__item--toast {
  grid-column: span 4;
}

.event-gallery__item::after,
.venue-space::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(17, 7, 9, 0.87) 100%);
  pointer-events: none;
}

.event-gallery__item img,
.venue-space img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.event-gallery__item--program img {
  object-position: 53% center;
}

.event-gallery__item--stairs img {
  object-position: center 36%;
}

.event-gallery__item--bar img {
  object-position: center 52%;
}

.event-gallery__item--toast img {
  object-position: center 44%;
}

.event-gallery__item:hover img,
.venue-space:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.event-gallery figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
}

.event-gallery figcaption span,
.event-gallery figcaption strong {
  display: block;
}

.event-gallery figcaption span {
  margin-bottom: 7px;
  color: rgba(255, 248, 235, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-gallery figcaption strong {
  max-width: 480px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.event-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
  border-block: 1px solid rgba(255, 248, 235, 0.2);
}

.event-trust article {
  min-height: 128px;
  padding: 24px 26px;
}

.event-trust article + article {
  border-left: 1px solid rgba(255, 248, 235, 0.2);
}

.event-trust strong,
.event-trust span {
  display: block;
}

.event-trust strong {
  margin-bottom: 9px;
  color: #f08a62;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.event-trust span {
  max-width: 170px;
  color: rgba(255, 248, 235, 0.62);
  font-size: 11px;
}

.location-story {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(220, 87, 60, 0.12), transparent 26rem),
    #eadbc6;
}

.location-story__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px 32px;
  align-items: start;
}

.location-story figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #c9b79f;
}

.location-story figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-story figure figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  width: fit-content;
  padding: 9px 12px;
  color: var(--cream);
  background: rgba(42, 15, 19, 0.86);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.location-story__facade {
  grid-column: 1 / span 4;
  grid-row: 1 / span 3;
  min-height: 920px;
}

.location-story__facade img {
  object-position: center;
}

.location-story__copy {
  grid-column: 5 / -1;
  max-width: 870px;
  padding: 10px 0 18px 36px;
}

.location-story__copy h2 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.02;
  text-wrap: balance;
}

.location-story__copy .large-copy {
  max-width: 790px;
  margin-bottom: 24px;
}

.location-story__quote {
  max-width: 760px;
  margin-bottom: 28px;
  padding-left: 22px;
  border-left: 2px solid var(--tomato);
  color: var(--muted);
  font-size: 15px;
}

.location-story__detail {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.location-story__windows {
  grid-column: 5 / -1;
  height: 390px;
}

.location-story__windows img {
  object-position: center 52%;
}

.location-story__points {
  grid-column: 5 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.location-story__points article {
  min-height: 118px;
  padding: 23px 20px;
}

.location-story__points article + article {
  border-left: 1px solid var(--line);
}

.location-story__points strong,
.location-story__points span {
  display: block;
}

.location-story__points strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.location-story__points span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

@media (min-width: 981px) {
  .location-story__grid {
    width: 100%;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }

  .location-story__facade {
    grid-column: 1;
    width: 100%;
    margin-left: 0;
  }

  .location-story__copy,
  .location-story__windows,
  .location-story__points {
    grid-column: 2;
  }

  .location-story__copy {
    padding-right: 32px;
  }
}

.venue-spaces {
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 86%, rgba(92, 20, 31, 0.25), transparent 31rem),
    #d94f32;
}

.venue-spaces__heading > p {
  max-width: 510px;
  margin-bottom: 4px;
  color: rgba(255, 248, 235, 0.82);
  font-size: 17px;
}

.venue-spaces__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.venue-space {
  position: relative;
  height: clamp(500px, 45vw, 620px);
  overflow: hidden;
  color: var(--cream);
  background: #231012;
}

.venue-space--small img {
  object-position: center 54%;
}

.venue-space--bar img {
  object-position: center 52%;
}

.venue-space--lounge img {
  object-position: center 50%;
}

.venue-space__number {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 248, 235, 0.56);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.venue-space__body {
  position: absolute;
  right: 32px;
  bottom: 29px;
  left: 32px;
  z-index: 2;
}

.venue-space__body > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.venue-space__body h3 {
  margin: 8px 0 10px;
  font-size: clamp(32px, 3.5vw, 50px);
}

.venue-space__body p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.78);
  font-size: 14px;
}

.venue-space__gallery {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  width: min(100%, 310px);
  min-height: 58px;
  margin-top: 20px;
  padding: 9px 12px;
  color: var(--cream);
  text-align: left;
  background: rgba(255, 248, 235, 0.13);
  border: 1px solid rgba(255, 248, 235, 0.46);
  border-radius: 3px;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.venue-space__gallery:hover,
.venue-space__gallery:focus-visible {
  color: #2f1017;
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.venue-space__gallery > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.venue-space__gallery strong,
.venue-space__gallery small {
  display: block;
}

.venue-space__gallery strong {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.venue-space__gallery small {
  color: currentColor;
  font-size: 9px;
  opacity: 0.66;
}

.venue-space__gallery-icon {
  position: relative;
  width: 29px;
  height: 25px;
}

.venue-space__gallery-icon::before,
.venue-space__gallery-icon::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

.venue-space__gallery-icon::before {
  top: 1px;
  left: 6px;
  opacity: 0.46;
}

.venue-space__gallery-icon::after {
  right: 5px;
  bottom: 1px;
  background: linear-gradient(145deg, transparent 48%, currentColor 49% 52%, transparent 53%);
}

.venue-space__gallery-arrow {
  font-size: 17px;
}

.venue-atmosphere {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  margin-top: 16px;
  overflow: hidden;
  color: var(--cream);
  background: #4a1420;
}

.venue-atmosphere__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 540px;
  padding: clamp(38px, 5vw, 72px);
}

.venue-atmosphere__copy .eyebrow {
  color: #ff9f75;
}

.venue-atmosphere__copy h3 {
  max-width: 500px;
  margin: 15px 0 22px;
  font-size: clamp(38px, 4vw, 61px);
  line-height: 0.98;
  text-wrap: balance;
}

.venue-atmosphere__copy > p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 31px;
  color: rgba(255, 248, 235, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.venue-atmosphere__all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: min(100%, 330px);
  min-height: 56px;
  padding: 0 16px 0 20px;
  color: #351018;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #ff9f75;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.venue-atmosphere__all:hover,
.venue-atmosphere__all:focus-visible {
  background: var(--cream);
  transform: translateY(-2px);
}

.venue-atmosphere__all span {
  font-size: 9px;
  font-weight: 600;
  opacity: 0.6;
  white-space: nowrap;
}

.venue-atmosphere__mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 540px;
}

.atmosphere-tile {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--cream);
  text-align: left;
  background: #1c1013;
  border: 0;
  cursor: pointer;
}

.atmosphere-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 43%, rgba(20, 7, 10, 0.83) 100%);
  pointer-events: none;
}

.atmosphere-tile--video {
  grid-row: 1 / 3;
}

.atmosphere-tile > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.atmosphere-tile--video > img {
  object-position: 54% center;
}

.atmosphere-tile:hover > img,
.atmosphere-tile:focus-visible > img {
  filter: saturate(1.12);
  transform: scale(1.04);
}

.atmosphere-tile__label {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  display: grid;
  gap: 3px;
}

.atmosphere-tile__label strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 35px);
  font-weight: 400;
}

.atmosphere-tile__label small {
  color: rgba(255, 248, 235, 0.65);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atmosphere-tile__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 74px;
  height: 74px;
  padding-left: 5px;
  place-items: center;
  color: #351018;
  background: #ff9f75;
  border-radius: 50%;
  box-shadow: 0 14px 44px rgba(30, 8, 12, 0.35);
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.atmosphere-tile--video:hover .atmosphere-tile__play,
.atmosphere-tile--video:focus-visible .atmosphere-tile__play {
  background: var(--cream);
  transform: translate(-50%, -50%) scale(1.08);
}

.venue-atmosphere__zones {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 248, 235, 0.2);
}

.venue-atmosphere__zones button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 0 21px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.venue-atmosphere__zones button + button {
  border-left: 1px solid rgba(255, 248, 235, 0.2);
}

.venue-atmosphere__zones button:hover,
.venue-atmosphere__zones button:focus-visible {
  color: #351018;
  background: #ff9f75;
}

.venue-atmosphere__zones span,
.venue-atmosphere__zones small {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.58;
}

.venue-gallery {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--cream);
  background: #130b0e;
  border: 0;
}

.venue-gallery::backdrop {
  background: rgba(8, 4, 6, 0.92);
  backdrop-filter: blur(12px);
}

.venue-gallery__panel {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  height: 100%;
}

.venue-gallery__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px clamp(22px, 4vw, 64px) 17px;
  border-bottom: 1px solid rgba(255, 248, 235, 0.12);
}

.venue-gallery__header > div:first-child {
  min-width: 0;
}

.venue-gallery__kicker {
  display: block;
  margin-bottom: 5px;
  color: #ff9f75;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.venue-gallery__header h2 {
  display: inline;
  margin: 0;
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1;
}

.venue-gallery__header p {
  display: inline;
  margin: 0 0 0 15px;
  color: rgba(255, 248, 235, 0.54);
  font-size: 11px;
}

.venue-gallery__header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.venue-gallery__counter {
  min-width: 70px;
  color: rgba(255, 248, 235, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
}

.venue-gallery__close {
  display: grid;
  width: 43px;
  height: 43px;
  padding: 0 0 4px;
  place-items: center;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 300;
  background: rgba(255, 248, 235, 0.08);
  border: 1px solid rgba(255, 248, 235, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.venue-gallery__close:hover,
.venue-gallery__close:focus-visible {
  color: #351018;
  background: var(--cream);
}

.venue-gallery__tabs {
  display: flex;
  gap: 7px;
  padding: 11px clamp(22px, 4vw, 64px);
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255, 248, 235, 0.1);
}

.venue-gallery__tabs::-webkit-scrollbar,
.venue-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.venue-gallery__tab {
  flex: 0 0 auto;
  min-height: 35px;
  padding: 0 14px;
  color: rgba(255, 248, 235, 0.63);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255, 248, 235, 0.18);
  border-radius: 30px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.venue-gallery__tab:hover,
.venue-gallery__tab:focus-visible,
.venue-gallery__tab[aria-selected="true"] {
  color: #351018;
  background: #ff9f75;
  border-color: #ff9f75;
}

.venue-gallery__stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(102, 32, 47, 0.31), transparent 37rem),
    #0d080a;
}

.venue-gallery__media {
  width: 100%;
  height: 100%;
  padding: 14px clamp(72px, 8vw, 130px);
}

.venue-gallery__media img,
.venue-gallery__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  border: 0;
}

.venue-gallery__media iframe {
  max-width: min(100%, 1180px);
  background: #000;
}

.venue-gallery__media img {
  animation: gallery-media-in 0.32s ease both;
}

@keyframes gallery-media-in {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}

.venue-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--cream);
  font-size: 20px;
  background: rgba(38, 13, 19, 0.68);
  border: 1px solid rgba(255, 248, 235, 0.26);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.venue-gallery__nav:hover,
.venue-gallery__nav:focus-visible {
  color: #351018;
  background: #ff9f75;
  transform: translateY(-50%) scale(1.06);
}

.venue-gallery__nav--prev {
  left: clamp(15px, 3vw, 48px);
}

.venue-gallery__nav--next {
  right: clamp(15px, 3vw, 48px);
}

.venue-gallery__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 62px;
  padding: 9px clamp(22px, 4vw, 64px);
  border-top: 1px solid rgba(255, 248, 235, 0.1);
}

.venue-gallery__caption {
  margin: 0 0 2px;
  font-family: var(--serif);
  font-size: 18px;
}

.venue-gallery__source {
  color: rgba(255, 248, 235, 0.47);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.venue-gallery__source[href="#"] {
  pointer-events: none;
}

.venue-gallery__full {
  flex: 0 0 auto;
  color: #ff9f75;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.venue-gallery__full[hidden] {
  display: none;
}

.venue-gallery__thumbs {
  display: flex;
  gap: 7px;
  min-height: 84px;
  padding: 8px clamp(22px, 4vw, 64px) 11px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  border-top: 1px solid rgba(255, 248, 235, 0.08);
}

.venue-gallery__thumb {
  position: relative;
  flex: 0 0 96px;
  height: 64px;
  padding: 0;
  overflow: hidden;
  background: #261017;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.52;
  scroll-snap-align: center;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.venue-gallery__thumb:hover,
.venue-gallery__thumb:focus-visible,
.venue-gallery__thumb[aria-current="true"] {
  border-color: #ff9f75;
  opacity: 1;
}

.venue-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-gallery__thumb-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-size: 16px;
  background: rgba(25, 8, 12, 0.35);
}

.space-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
  color: var(--cream);
  background: rgba(74, 20, 32, 0.94);
}

.space-capabilities article {
  min-height: 142px;
  padding: 28px 25px;
}

.space-capabilities article + article {
  border-left: 1px solid rgba(255, 248, 235, 0.2);
}

.space-capabilities strong,
.space-capabilities span {
  display: block;
}

.space-capabilities strong {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.space-capabilities span {
  color: rgba(255, 248, 235, 0.67);
  font-size: 11px;
  line-height: 1.55;
}

.venue-buyout {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr auto;
  gap: 48px;
  align-items: center;
  margin-top: 16px;
  padding: 45px 48px;
  color: var(--cream);
  background: #4a1420;
}

.venue-buyout .eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 248, 235, 0.62);
}

.venue-buyout h3 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(32px, 3.2vw, 48px);
}

.venue-buyout > p {
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.7);
  font-size: 13px;
}

.floor-plans {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
  margin-top: 16px;
  padding: 44px;
  color: var(--ink);
  background: var(--cream);
}

.floor-plans__heading {
  align-self: center;
  padding-right: 12px;
}

.floor-plans__heading .eyebrow {
  margin-bottom: 14px;
  color: var(--tomato);
}

.floor-plans__heading h3 {
  margin-bottom: 20px;
  font-size: clamp(29px, 3vw, 43px);
}

.floor-plans__heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.floor-plans figure {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.floor-plans figure img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  padding: 18px;
  object-fit: contain;
}

.floor-plans figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 19px;
  border-top: 1px solid var(--line);
}

.floor-plans figcaption strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.floor-plans figcaption span {
  color: var(--muted);
  font-size: 9px;
  text-align: right;
}

.visual-reel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.78fr 1.34fr 0.83fr;
  gap: 4px;
  height: clamp(410px, 39vw, 620px);
  padding: 4px;
  overflow: hidden;
  background: #1a0a0e;
}

.visual-reel__item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.visual-reel__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 7, 10, 0.04), rgba(23, 7, 10, 0.2));
  pointer-events: none;
}

.visual-reel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.visual-reel__item--feast img {
  object-position: center 58%;
}

.visual-reel__item--making img {
  object-position: center 56%;
}

.visual-reel__item--toast img {
  object-position: center;
}

.visual-reel__item--cocktails img {
  object-position: center 67%;
}

.visual-reel__item:hover img {
  filter: saturate(1.12);
  transform: scale(1.04);
}

.visual-reel__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 17px;
  width: max-content;
  padding: 14px 22px;
  color: var(--wine);
  background: rgba(255, 248, 235, 0.94);
  box-shadow: 0 18px 45px rgba(28, 8, 11, 0.22);
  font-family: var(--serif);
  font-size: clamp(15px, 1.7vw, 24px);
  transform: translate(-50%, -50%) rotate(-1deg);
  backdrop-filter: blur(8px);
}

.visual-reel__caption i {
  color: var(--tomato);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
}

.reviews {
  color: var(--cream);
  background:
    radial-gradient(circle at 9% 15%, rgba(220, 87, 60, 0.12), transparent 30rem),
    var(--green);
}

.reviews__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.45fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 60px;
}

.reviews__heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 0.98;
  text-wrap: balance;
}

.reviews__heading > p {
  max-width: 440px;
  margin-bottom: 5px;
  color: rgba(255, 248, 235, 0.66);
  font-size: 15px;
}

.reviews__layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: 16px;
  align-items: stretch;
}

.reviews__feature {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: #0f211d;
}

.reviews__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 33, 29, 0.06) 35%, rgba(15, 33, 29, 0.72) 100%);
  pointer-events: none;
}

.reviews__feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.yandex-rating {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 248, 235, 0.94);
  box-shadow: 0 24px 70px rgba(7, 22, 18, 0.32);
  backdrop-filter: blur(12px);
}

.yandex-rating__source {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.yandex-rating__source > span,
.review-quote__source b {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #fff;
  background: #fc3f1d;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.yandex-rating > strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(68px, 6vw, 94px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.yandex-rating__stars {
  margin: 12px 0 8px;
  color: #f2a700;
  font-size: 19px;
  letter-spacing: 0.12em;
}

.yandex-rating > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
}

.yandex-rating__award {
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: var(--wine);
  background: #ffd23f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yandex-rating > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.reviews__quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 382px;
  padding: 30px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(34, 29, 26, 0.08);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(7, 22, 18, 0.12);
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.review-quote:hover {
  color: var(--ink);
  border-color: rgba(242, 167, 0, 0.65);
  box-shadow: 0 22px 54px rgba(7, 22, 18, 0.2);
  transform: translateY(-5px);
}

.review-quote:focus-visible {
  outline: 3px solid #ffd23f;
  outline-offset: 4px;
}

.review-quote__author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.review-quote__author > img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(34, 29, 26, 0.08);
}

.review-quote__identity {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.review-quote__identity strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-quote__identity small {
  overflow: hidden;
  color: #85807a;
  font-size: 11px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-quote__arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-left: auto;
  color: #77716a;
  background: #f2eee7;
  border-radius: 50%;
  font-size: 15px;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.review-quote:hover .review-quote__arrow {
  color: #fff;
  background: #fc3f1d;
  transform: translate(2px, -2px);
}

.review-quote__meta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}

.review-quote__stars {
  color: #f2a700;
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.review-quote__meta time {
  color: #85807a;
  font-size: 11px;
  white-space: nowrap;
}

.review-quote blockquote {
  margin: 0 0 30px;
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.48;
}

.review-quote footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(34, 29, 26, 0.1);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-quote__source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.review-quote__source b {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  font-size: 12px;
}

.review-quote__read {
  color: #77716a;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .event-hero__content {
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 24px 36px;
  }

  .event-hero__detail {
    height: 240px;
  }

  .event-story__heading,
  .venue-spaces__heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .event-story__intro > p,
  .venue-spaces__heading > p {
    max-width: 680px;
  }

  .location-story__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .location-story__copy,
  .location-story__facade,
  .location-story__windows,
  .location-story__points {
    grid-column: 1;
  }

  .location-story__copy {
    padding-left: 0;
  }

  .location-story__facade {
    grid-row: auto;
    width: 100%;
    height: min(76svh, 720px);
    min-height: 620px;
  }

  .location-story__windows {
    height: 500px;
  }

  .location-story__windows img {
    object-position: 64% center;
  }

  .location-story__points {
    width: 100%;
  }

  .venue-buyout {
    grid-template-columns: 1fr auto;
  }

  .venue-atmosphere {
    grid-template-columns: 1fr;
  }

  .venue-atmosphere__copy {
    min-height: 0;
    padding: 54px;
  }

  .venue-atmosphere__copy h3,
  .venue-atmosphere__copy > p:not(.eyebrow) {
    max-width: 680px;
  }

  .venue-atmosphere__mosaic {
    min-height: 600px;
  }

  .venue-buyout > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

  .floor-plans__heading {
    grid-column: 1 / -1;
    max-width: 720px;
  }

  .reviews__heading,
  .reviews__layout {
    grid-template-columns: 1fr;
  }

  .reviews__heading {
    gap: 28px;
  }

  .reviews__heading > p {
    max-width: 620px;
  }

  .reviews__feature {
    min-height: 620px;
  }
}

@media (max-width: 820px) {
  .home-page .site-header:not(.is-scrolled) {
    color: var(--cream);
    background: linear-gradient(180deg, rgba(19, 9, 9, 0.72), transparent);
    border-color: transparent;
    backdrop-filter: none;
  }

  .event-hero,
  .event-hero__content {
    min-height: max(760px, 100svh);
  }

  .event-hero__media img {
    object-position: 58% center;
  }

  .event-hero__shade {
    background:
      linear-gradient(90deg, rgba(20, 8, 8, 0.68), rgba(20, 8, 8, 0.18)),
      linear-gradient(180deg, rgba(18, 8, 8, 0.28) 0%, rgba(18, 8, 8, 0.15) 32%, rgba(18, 8, 8, 0.91) 79%);
  }

  .event-hero__content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding-top: 112px;
    padding-bottom: 18px;
  }

  .event-hero__copy {
    grid-column: 1;
    align-self: end;
    padding-bottom: 14px;
  }

  .event-hero h1 {
    max-width: 600px;
    font-size: clamp(58px, 12.8vw, 84px);
  }

  .event-hero__lead {
    max-width: 590px;
  }

  .event-hero__detail {
    display: none;
  }

  .event-hero__facts {
    grid-column: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-hero__facts > div:nth-child(3) {
    border-left: 0;
  }

  .event-hero__facts > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 248, 235, 0.2);
  }

  .event-hero__facts > div:first-child strong {
    font-size: clamp(19px, 4.8vw, 27px);
  }

  .event-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 390px;
  }

  .event-gallery__item--program,
  .event-gallery__item--stairs,
  .event-gallery__item--bar,
  .event-gallery__item--toast {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .event-trust article:nth-child(3) {
    border-left: 0;
  }

  .event-trust article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 248, 235, 0.2);
  }

  .venue-spaces__grid {
    grid-template-columns: 1fr;
  }

  .venue-space {
    height: 560px;
  }

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

  .venue-atmosphere__zones button:nth-child(3) {
    border-left: 0;
  }

  .venue-atmosphere__zones button:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 248, 235, 0.2);
  }

  .venue-gallery__header p {
    display: block;
    max-width: 520px;
    margin: 5px 0 0;
  }

  .venue-gallery__media {
    padding-inline: 64px;
  }

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

  .space-capabilities article:nth-child(3) {
    border-left: 0;
  }

  .space-capabilities article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 248, 235, 0.2);
  }

  .venue-buyout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 30px;
  }

  .venue-buyout > p {
    grid-column: auto;
    grid-row: auto;
  }

  .venue-buyout .button {
    justify-self: start;
  }

  .floor-plans {
    padding: 34px 28px;
  }

  .floor-plans figure img {
    min-height: 235px;
  }

  .visual-reel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 340px);
    height: auto;
  }

  .visual-reel__caption {
    justify-content: center;
    flex-wrap: wrap;
    width: min(480px, calc(100% - 50px));
  }

  .reviews__feature {
    min-height: 570px;
  }

  .mobile-action {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 16px));
    transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-action.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .event-hero,
  .event-hero__content {
    min-height: max(730px, 100svh);
  }

  .event-hero__content {
    gap: 20px;
    padding-top: 98px;
    padding-bottom: 12px;
  }

  .event-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(49px, 14vw, 61px);
    line-height: 0.92;
  }

  .event-hero__lead {
    max-width: 355px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.45;
  }

  .event-hero__actions {
    flex-wrap: wrap;
    gap: 16px 20px;
  }

  .event-hero__actions .button {
    min-height: 50px;
    padding-inline: 20px;
  }

  .event-hero__phone {
    font-size: 12px;
  }

  .event-hero__facts > div {
    min-height: 72px;
    padding: 13px 14px;
  }

  .event-hero__facts strong {
    font-size: 22px;
  }

  .event-hero__facts span {
    font-size: 9px;
  }

  .event-story__heading,
  .venue-spaces__heading {
    gap: 24px;
    margin-bottom: 38px;
  }

  .event-story__heading h2,
  .venue-spaces__heading h2 {
    font-size: clamp(38px, 11vw, 49px);
    line-height: 1;
  }

  .event-story__intro > p,
  .venue-spaces__heading > p {
    font-size: 15px;
  }

  .location-story__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .location-story__copy,
  .location-story__facade,
  .location-story__windows,
  .location-story__points {
    grid-column: 1;
  }

  .location-story__copy {
    padding: 0 0 18px;
  }

  .location-story__copy h2 {
    font-size: clamp(38px, 11vw, 49px);
  }

  .location-story__copy .large-copy {
    font-size: 17px;
  }

  .location-story__facade,
  .location-story__windows {
    height: 460px;
    min-height: 0;
  }

  .location-story__windows img {
    object-position: 68% center;
  }

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

  .location-story__points article:nth-child(3) {
    border-left: 0;
  }

  .location-story__points article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .event-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }

  .event-gallery__item--program,
  .event-gallery__item--bar {
    height: 390px;
  }

  .event-gallery__item--stairs,
  .event-gallery__item--toast {
    height: 480px;
  }

  .event-gallery figcaption {
    right: 19px;
    bottom: 18px;
    left: 19px;
  }

  .event-gallery figcaption strong {
    font-size: 25px;
  }

  .event-trust {
    margin-top: 34px;
  }

  .event-trust article {
    min-height: 110px;
    padding: 20px 16px;
  }

  .event-trust strong {
    font-size: 31px;
  }

  .venue-space {
    height: 520px;
  }

  .venue-space__body {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .venue-space__body h3 {
    font-size: 35px;
  }

  .venue-space__gallery {
    width: 100%;
    max-width: 310px;
    margin-top: 16px;
  }

  .venue-space__number {
    top: 17px;
    right: 17px;
  }

  .venue-atmosphere__copy {
    padding: 38px 24px 42px;
  }

  .venue-atmosphere__copy h3 {
    font-size: 39px;
  }

  .venue-atmosphere__mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 390px 250px;
    min-height: 0;
  }

  .atmosphere-tile--video {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .atmosphere-tile--event,
  .atmosphere-tile--dinner {
    grid-row: 2;
  }

  .atmosphere-tile__play {
    width: 64px;
    height: 64px;
  }

  .venue-atmosphere__zones {
    grid-template-columns: 1fr;
  }

  .venue-atmosphere__zones button {
    min-height: 64px;
    padding-inline: 18px;
  }

  .venue-atmosphere__zones button + button,
  .venue-atmosphere__zones button:nth-child(3),
  .venue-atmosphere__zones button:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 248, 235, 0.2);
    border-left: 0;
  }

  .venue-gallery__header {
    padding: 12px 14px 10px;
  }

  .venue-gallery__kicker,
  .venue-gallery__header p {
    display: none;
  }

  .venue-gallery__header h2 {
    display: block;
    max-width: calc(100vw - 150px);
    overflow: hidden;
    font-size: 27px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .venue-gallery__header-actions {
    gap: 9px;
  }

  .venue-gallery__counter {
    min-width: 52px;
    font-size: 9px;
  }

  .venue-gallery__close {
    width: 39px;
    height: 39px;
  }

  .venue-gallery__tabs {
    padding: 8px 14px;
  }

  .venue-gallery__tab {
    min-height: 33px;
    padding-inline: 12px;
  }

  .venue-gallery__media {
    padding: 8px 0;
  }

  .venue-gallery__nav {
    top: auto;
    bottom: 12px;
    width: 43px;
    height: 43px;
    background: rgba(38, 13, 19, 0.84);
    transform: none;
  }

  .venue-gallery__nav:hover,
  .venue-gallery__nav:focus-visible {
    transform: scale(1.06);
  }

  .venue-gallery__nav--prev {
    left: 12px;
  }

  .venue-gallery__nav--next {
    right: 12px;
  }

  .venue-gallery__info {
    min-height: 57px;
    padding: 8px 14px;
  }

  .venue-gallery__caption {
    max-width: 72vw;
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .venue-gallery__full {
    width: 38px;
    overflow: hidden;
    font-size: 0;
    white-space: nowrap;
  }

  .venue-gallery__full span {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    font-size: 17px;
    border: 1px solid rgba(255, 159, 117, 0.4);
    border-radius: 50%;
  }

  .venue-gallery__thumbs {
    min-height: 75px;
    padding: 7px 14px 9px;
  }

  .venue-gallery__thumb {
    flex-basis: 83px;
    height: 56px;
  }

  .space-capabilities {
    grid-template-columns: 1fr;
  }

  .space-capabilities article {
    min-height: 0;
  }

  .space-capabilities article + article {
    border-top: 1px solid rgba(255, 248, 235, 0.2);
    border-left: 0;
  }

  .venue-buyout {
    padding: 30px 23px;
  }

  .venue-buyout h3 {
    font-size: 34px;
  }

  .venue-buyout .button {
    width: 100%;
  }

  .floor-plans {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 27px 20px;
  }

  .floor-plans__heading,
  .floor-plans figure {
    grid-column: 1;
  }

  .floor-plans figure img {
    min-height: 220px;
  }

  .taste-notes {
    grid-template-columns: 1fr;
  }

  .taste-notes article {
    min-height: 0;
  }

  .taste-notes article + article,
  .taste-notes article:nth-child(even),
  .taste-notes article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 248, 235, 0.2);
    border-left: 0;
  }

  .visual-reel {
    grid-template-rows: repeat(2, 250px);
  }

  .visual-reel__caption {
    gap: 8px 12px;
    width: min(300px, calc(100% - 30px));
    padding: 11px 14px;
    font-size: 15px;
  }

  .reviews__heading {
    margin-bottom: 38px;
  }

  .reviews__heading h2 {
    font-size: clamp(38px, 11vw, 49px);
  }

  .reviews__feature {
    min-height: 520px;
  }

  .yandex-rating {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 23px;
  }

  .yandex-rating > strong {
    font-size: 70px;
  }

  .reviews__quotes {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .review-quote {
    min-height: 270px;
    padding: 25px 22px;
  }

  .review-quote__author {
    margin-bottom: 20px;
  }

  .review-quote blockquote {
    font-size: 18px;
  }
}

/* Responsive layout hardening after cross-device visual QA. */
@media (min-width: 981px) {
  .site-header {
    padding-inline: max(32px, calc((100vw - 1580px) / 2));
  }

  .location-story__facade {
    align-self: stretch;
    height: auto;
    min-height: 0;
  }

  .location-story__facade img {
    min-height: 100%;
  }

  .venue-atmosphere {
    grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1.14fr);
  }

  .venue-atmosphere__copy {
    min-width: 0;
    padding: clamp(38px, 4.2vw, 64px);
  }

  .venue-atmosphere__copy h3 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(38px, 3.2vw, 56px);
    overflow-wrap: break-word;
  }
}

@media (min-width: 1121px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }
}

.kitchen-photo figcaption {
  right: 14px;
  bottom: 16px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: none;
  transform-origin: center;
}

.menu-filter {
  min-height: 44px;
}

@media (max-width: 820px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 14px 11px;
  }

  .menu-filters {
    padding-right: 24px;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .menu-filters::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 560px) {
  .venue-atmosphere,
  .venue-atmosphere__copy,
  .venue-atmosphere__mosaic,
  .venue-atmosphere__zones {
    min-width: 0;
    max-width: 100%;
  }

  .venue-atmosphere__copy h3 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .atmosphere-tile {
    width: 100%;
  }

  .menu-card__details {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 4px;
    padding-bottom: 0;
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
