@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-500.ttf?v=20260714-3") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-600.ttf?v=20260714-3") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/cormorant-700.ttf?v=20260714-3") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/manrope-400.ttf?v=20260714-3") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope-500.ttf?v=20260714-3") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/manrope-600.ttf?v=20260714-3") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope-700.ttf?v=20260714-3") format("truetype");
}

:root {
  --pearl: #fffdf8;
  --ivory: #f5efe5;
  --paper: #fffaf1;
  --chocolate: #2a1712;
  --chocolate-2: #3c2118;
  --chocolate-3: #5a3325;
  --gold: #b98836;
  --gold-bright: #ddb967;
  --gold-pale: #ead8ad;
  --cafe-au-lait: #d3bda9;
  --cafe-au-lait-soft: #e2d0bf;
  --ink: #231c19;
  --muted: #71635c;
  --line: rgba(91, 57, 38, 0.18);
  --shadow: 0 24px 70px rgba(42, 23, 18, 0.17);
  --content: 1180px;
  --header-height: 90px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--pearl);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-compact {
  padding: 64px 0;
}

.section-ivory {
  background: var(--ivory);
}

.section-chocolate {
  color: var(--pearl);
  background: var(--chocolate);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 6.4rem;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: 4.4rem;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.section-chocolate h1,
.section-chocolate h2,
.section-chocolate h3,
.hero h1,
.page-hero h1 {
  color: var(--gold-bright);
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-chocolate .lead,
.hero .lead,
.page-hero .lead {
  color: var(--cafe-au-lait);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-heading > div:first-child {
  max-width: 760px;
}

.section-heading p:last-child {
  max-width: 420px;
  margin-bottom: 8px;
  color: var(--muted);
}

.section-chocolate .section-heading p:last-child {
  color: var(--cafe-au-lait);
}

[data-site-header] {
  position: sticky;
  z-index: 50;
  top: 0;
}

.site-header {
  position: relative;
  height: var(--header-height);
  color: var(--pearl);
  background: rgba(42, 23, 18, 0.97);
  border-bottom: 1px solid rgba(221, 185, 103, 0.3);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 40px), 1280px);
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 168px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(221, 185, 103, 0.65);
  transform: rotate(45deg);
}

.brand-mark::before {
  width: 8px;
  height: 8px;
  content: "";
  border: 1px solid currentColor;
}

.brand-name {
  line-height: 1;
}

.brand-name small {
  display: block;
  margin-top: 5px;
  color: var(--cafe-au-lait);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  padding: 25px 0 22px;
  color: var(--cafe-au-lait-soft);
  font-size: 0.88rem;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold-bright);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--pearl);
  background: transparent;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  color: var(--chocolate);
  font-weight: 700;
  background: var(--gold-bright);
  border: 1px solid var(--gold-bright);
  border-radius: 8px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--pearl);
  background: var(--chocolate-3);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--pearl);
  background: transparent;
  border-color: rgba(221, 185, 103, 0.72);
}

.button-outline:hover {
  color: var(--chocolate);
  background: var(--gold-bright);
}

.button-arrow::after {
  content: "\2192";
  font-size: 1.15em;
}

.hero {
  position: relative;
  min-height: min(820px, 84svh);
  overflow: hidden;
  color: var(--pearl);
  background-color: var(--chocolate);
  background-image: url("../images/hero-hall.png");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(42, 23, 18, 0.48);
}

.hero::after {
  position: absolute;
  inset: 0 54% 0 0;
  content: "";
  background: rgba(42, 23, 18, 0.66);
  border-right: 1px solid rgba(221, 185, 103, 0.34);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(820px, 84svh);
  align-items: center;
  padding: 72px 0;
}

.hero-copy {
  width: min(600px, 48%);
}

.hero h1 {
  color: var(--pearl);
  text-shadow: 0 8px 28px rgba(42, 23, 18, 0.45);
}

.hero-subtitle {
  margin-bottom: 30px;
  color: var(--gold-pale);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-foot {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  color: var(--pearl);
  background: rgba(42, 23, 18, 0.92);
  border-top: 1px solid rgba(221, 185, 103, 0.34);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-fact {
  min-height: 84px;
  padding: 18px 24px;
  border-right: 1px solid rgba(221, 185, 103, 0.25);
}

.hero-fact:last-child {
  border-right: 0;
}

.hero-fact strong {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 500;
}

.hero-fact span {
  color: var(--cafe-au-lait);
  font-size: 0.82rem;
}

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

.event-card {
  position: relative;
  display: flex;
  min-height: 320px;
  overflow: hidden;
  align-items: flex-end;
  color: var(--pearl);
  background-color: var(--chocolate-2);
  background-image: url("../images/hero-hall.png");
  background-size: cover;
  border: 1px solid rgba(221, 185, 103, 0.38);
  border-radius: 6px;
  isolation: isolate;
}

.event-card:nth-child(2n) {
  background-position: 22% center;
}

.event-card:nth-child(3n) {
  background-position: 78% center;
}

.event-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(42, 23, 18, 0.42);
  transition: background 220ms ease;
}

.event-card::after {
  position: absolute;
  z-index: -1;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  content: "";
  border-right: 1px solid var(--gold-bright);
  border-bottom: 1px solid var(--gold-bright);
  opacity: 0.7;
  transition: width 220ms ease, height 220ms ease;
}

.event-card:hover::before {
  background: rgba(42, 23, 18, 0.28);
}

.event-card:hover::after {
  width: 76px;
  height: 76px;
}

.event-card-content {
  width: 100%;
  padding: 28px;
}

.event-card .eyebrow {
  color: var(--gold-bright);
}

.event-card h3 {
  max-width: 280px;
  margin-bottom: 8px;
  font-size: 2rem;
  text-shadow: 0 4px 18px rgba(42, 23, 18, 0.7);
}

.event-card p {
  max-width: 290px;
  margin-bottom: 0;
  color: var(--cafe-au-lait);
  font-size: 0.9rem;
  text-shadow: 0 3px 14px rgba(42, 23, 18, 0.8);
}

.event-card-wide {
  grid-column: span 2;
}

.story-band {
  position: relative;
  min-height: 560px;
  color: var(--pearl);
  background-color: var(--chocolate);
  background-image: url("../images/hero-hall.png");
  background-position: center;
  background-size: cover;
}

.story-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(42, 23, 18, 0.72);
}

.story-inner {
  position: relative;
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 72px;
  padding: 78px 0;
}

.story-emblem {
  position: relative;
  display: grid;
  width: min(500px, 100%);
  min-height: 460px;
  place-items: center;
  margin: auto;
  overflow: hidden;
  isolation: isolate;
}

.story-emblem::before {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(221, 185, 103, 0.42);
  box-shadow: 0 0 36px rgba(221, 185, 103, 0.08), inset 0 0 36px rgba(221, 185, 103, 0.06);
  transform: rotate(45deg);
  animation: storyDiamondTurn 26s linear infinite;
}

.story-emblem::after {
  position: absolute;
  width: 76%;
  height: 1px;
  content: "";
  background: rgba(221, 185, 103, 0.5);
  box-shadow: 0 -150px 0 rgba(221, 185, 103, 0.14), 0 150px 0 rgba(221, 185, 103, 0.14);
  animation: storyLightBreathe 5.5s ease-in-out infinite;
}

.story-logo {
  position: relative;
  z-index: 2;
  width: min(440px, 92%);
  margin: auto;
  filter: drop-shadow(0 18px 24px rgba(20, 10, 8, 0.42)) drop-shadow(0 0 18px rgba(221, 185, 103, 0.14));
  animation: storyLogoFloat 7.5s ease-in-out infinite;
}

.story-flake {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 16px;
  pointer-events: none;
  background: var(--gold-bright);
  clip-path: polygon(48% 0, 100% 32%, 68% 100%, 12% 72%);
  opacity: 0.66;
  animation: storyFlakeDrift 6.5s ease-in-out infinite;
}

.story-flake-one {
  top: 18%;
  left: 13%;
  animation-delay: -1.2s;
}

.story-flake-two {
  top: 29%;
  right: 11%;
  width: 7px;
  height: 12px;
  animation-delay: -4.1s;
}

.story-flake-three {
  right: 18%;
  bottom: 18%;
  width: 11px;
  height: 18px;
  animation-delay: -2.7s;
}

.story-flake-four {
  bottom: 24%;
  left: 10%;
  width: 6px;
  height: 11px;
  animation-delay: -5.3s;
}

@keyframes storyLogoFloat {
  0%,
  100% {
    filter: drop-shadow(0 18px 24px rgba(20, 10, 8, 0.42)) drop-shadow(0 0 14px rgba(221, 185, 103, 0.12));
    transform: translateY(0) scale(1);
  }

  50% {
    filter: drop-shadow(0 24px 30px rgba(20, 10, 8, 0.36)) drop-shadow(0 0 25px rgba(221, 185, 103, 0.25));
    transform: translateY(-9px) scale(1.012);
  }
}

@keyframes storyDiamondTurn {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}

@keyframes storyLightBreathe {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.82);
  }

  50% {
    opacity: 0.72;
    transform: scaleX(1);
  }
}

@keyframes storyFlakeDrift {
  0%,
  100% {
    opacity: 0.34;
    transform: translate3d(0, 8px, 0) rotate(0deg);
  }

  50% {
    opacity: 0.82;
    transform: translate3d(8px, -12px, 0) rotate(145deg);
  }
}

.story-copy {
  padding-left: 42px;
  border-left: 1px solid rgba(221, 185, 103, 0.55);
}

.story-copy p {
  color: var(--cafe-au-lait-soft);
}

.menu-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  border: 1px solid var(--line);
}

.menu-preview-intro {
  padding: 42px;
  color: var(--pearl);
  background: var(--chocolate-2);
}

.menu-preview-intro p {
  color: var(--cafe-au-lait);
}

.menu-preview-list {
  background: var(--paper);
}

.menu-preview-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 21px 28px;
  border-bottom: 1px solid var(--line);
}

.menu-preview-row:last-child {
  border-bottom: 0;
}

.menu-preview-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.menu-preview-row span {
  color: var(--gold);
  font-weight: 700;
}

.booking-strip {
  position: relative;
  overflow: hidden;
  color: var(--pearl);
  background: var(--chocolate-2);
  border-top: 1px solid rgba(221, 185, 103, 0.32);
  border-bottom: 1px solid rgba(221, 185, 103, 0.32);
}

.booking-strip::after {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(221, 185, 103, 0.25);
  transform: translateY(-50%) rotate(45deg);
}

.booking-strip-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.booking-strip h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 2.8rem;
}

.page-hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--pearl);
  background-color: var(--chocolate);
  background-image: url("../images/hero-hall.png");
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(42, 23, 18, 0.66);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 500px;
  align-items: flex-end;
  padding: 72px 0 62px;
}

.page-hero-copy {
  width: min(760px, 100%);
  min-width: 0;
  max-width: 760px;
  padding-left: 30px;
  border-left: 1px solid var(--gold-bright);
}

.hero-copy > .lead,
.page-hero-copy > .lead {
  max-width: 100%;
  color: var(--cafe-au-lait-soft);
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.38;
  text-shadow: 0 5px 22px rgba(29, 16, 13, 0.48);
  animation: caption-breathe 9s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  overflow-wrap: anywhere;
}

@keyframes caption-breathe {
  0%, 7% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(12px);
  }

  18%, 72% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  88%, 100% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(-7px);
  }
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(3.1rem, 6rem, 6rem);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-item {
  min-height: 178px;
  padding: 28px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--chocolate-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.detail-item span {
  color: var(--muted);
}

.content-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 64px;
}

.feature-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  position: relative;
  padding: 17px 16px 17px 36px;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before {
  position: absolute;
  top: 23px;
  left: 6px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
  transform: rotate(45deg);
}

.booking-panel {
  padding: 34px;
  color: var(--pearl);
  background: var(--chocolate-2);
  border: 1px solid rgba(221, 185, 103, 0.42);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.booking-panel h2,
.booking-panel h3 {
  color: var(--pearl);
}

.booking-panel > p {
  color: var(--cafe-au-lait);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label,
.field > span {
  color: var(--cafe-au-lait-soft);
  font-size: 0.8rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--pearl);
  border: 1px solid rgba(221, 185, 103, 0.52);
  border-radius: 3px;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 17px 0;
  color: var(--cafe-au-lait);
  font-size: 0.78rem;
}

.form-consent input {
  margin-top: 4px;
  accent-color: var(--gold-bright);
}

.form-consent a {
  color: var(--gold-bright);
  text-decoration: underline;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}

.menu-page-toolbar {
  position: sticky;
  z-index: 12;
  top: var(--header-height);
  padding: 16px 0;
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--line);
}

.menu-toolbar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-search {
  flex: 1;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.menu-categories {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 10px 0 4px;
  scrollbar-width: none;
}

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

.menu-category-button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--chocolate-2);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.menu-category-button.is-active,
.menu-category-button:hover {
  color: var(--pearl);
  background: var(--chocolate-2);
  border-color: var(--chocolate-2);
}

.menu-section {
  margin-bottom: 54px;
}

.menu-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  color: var(--chocolate-2);
  font-size: 2.15rem;
}

.menu-section-title::after {
  height: 1px;
  flex: 1;
  content: "";
  background: var(--line);
}

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

.dish-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px 90px;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.dish-name {
  margin-bottom: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.dish-description,
.dish-weight {
  color: var(--muted);
  font-size: 0.86rem;
}

.dish-price {
  color: var(--gold);
  font-weight: 700;
  text-align: right;
}

.menu-empty {
  padding: 44px 0;
  color: var(--muted);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
}

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

.contact-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row span:first-child {
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-row a {
  color: var(--chocolate-2);
  font-weight: 700;
}

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

.contact-row .contact-social-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: var(--chocolate-2);
  background: rgba(221, 185, 103, 0.12);
  border: 1px solid rgba(185, 136, 54, 0.5);
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-row .contact-social-links a:hover {
  color: var(--pearl);
  background: var(--chocolate-2);
  border-color: var(--chocolate-2);
}

.map-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--pearl);
  background-color: var(--chocolate-2);
  background-image: url("../images/hero-hall.png");
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
}

.map-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(42, 23, 18, 0.74);
}

.map-panel-content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 36px;
}

.site-footer {
  color: var(--pearl);
  background: #1d100d;
  border-top: 1px solid rgba(221, 185, 103, 0.3);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  gap: 52px;
  padding: 58px 0 42px;
}

.footer-title {
  margin-bottom: 14px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.footer-main p,
.footer-main a {
  color: var(--cafe-au-lait);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 24px;
  color: var(--cafe-au-lait);
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  font-size: 0.76rem;
}

.studio-credit {
  position: fixed;
  z-index: 35;
  right: 12px;
  bottom: 12px;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 7px;
  width: 224px;
  min-height: 54px;
  padding: 7px 7px 7px 11px;
  color: var(--gold-pale);
  background: rgba(29, 16, 13, 0.95);
  border: 1px solid rgba(221, 185, 103, 0.64);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(42, 23, 18, 0.26);
  isolation: isolate;
}

.studio-credit::after {
  position: absolute;
  z-index: -1;
  inset: 4px;
  content: "";
  border: 1px solid rgba(221, 185, 103, 0.16);
  border-radius: 5px;
  pointer-events: none;
}

.studio-credit-logo {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("../images/elena-studio-logo.png?v=20260715-1") 22% center / 104px auto no-repeat;
  filter: grayscale(1) sepia(1) saturate(2.2) brightness(1.15);
  opacity: 0.18;
}

.studio-credit-copy {
  min-width: 0;
  line-height: 1.15;
}

.studio-credit-copy span {
  display: block;
  margin-bottom: 2px;
  color: rgba(234, 216, 173, 0.72);
  font-size: 0.58rem;
  font-weight: 600;
}

.studio-credit-copy strong {
  display: block;
  color: var(--gold-bright);
  font-size: 0.61rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.studio-credit-qr-wrap {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 2px;
  overflow: hidden;
  background: var(--cafe-au-lait);
  border: 1px solid rgba(221, 185, 103, 0.7);
  border-radius: 3px;
  isolation: isolate;
}

.studio-credit-qr {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.floating-actions {
  position: fixed;
  z-index: 70;
  right: 14px;
  bottom: 82px;
  display: grid;
  width: 184px;
  gap: 8px;
}

.floating-action {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(29, 16, 13, 0.22);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.floating-action:hover {
  transform: translateY(-2px);
}

.floating-action-booking {
  color: var(--chocolate);
  background: var(--gold-bright);
  border: 1px solid var(--gold-pale);
}

.floating-action-booking:hover {
  color: var(--pearl);
  background: var(--chocolate-3);
  border-color: var(--gold-bright);
}

.floating-action-contacts {
  color: var(--gold-pale);
  background: rgba(42, 23, 18, 0.96);
  border: 1px solid rgba(221, 185, 103, 0.65);
}

.floating-action-contacts:hover,
.floating-actions.is-open .floating-action-contacts {
  color: var(--chocolate);
  background: var(--pearl);
  border-color: var(--gold-bright);
}

.floating-action-gem {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.floating-contact-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  width: min(292px, calc(100vw - 28px));
  overflow: hidden;
  color: var(--pearl);
  background: rgba(29, 16, 13, 0.98);
  border: 1px solid rgba(221, 185, 103, 0.58);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(29, 16, 13, 0.34);
}

.floating-contact-panel[hidden] {
  display: none;
}

.floating-contact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(221, 185, 103, 0.2);
}

.floating-contact-head div {
  display: grid;
  gap: 2px;
}

.floating-contact-head span,
.floating-contact-panel > a span {
  color: var(--cafe-au-lait);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.floating-contact-head strong {
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.floating-contact-close {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  color: var(--gold-pale);
  background: transparent;
  border: 1px solid rgba(221, 185, 103, 0.34);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.floating-contact-panel > a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.08);
  transition: color 180ms ease, background 180ms ease;
}

.floating-contact-panel > a:last-child {
  border-bottom: 0;
}

.floating-contact-panel > a:hover {
  color: var(--gold-pale);
  background: rgba(221, 185, 103, 0.09);
}

.floating-contact-panel > a strong {
  font-size: 0.78rem;
  text-align: right;
}

.diamond-cursor {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  pointer-events: none;
  border: 1px solid var(--gold-bright);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: opacity 150ms ease;
}

.gold-speck {
  position: fixed;
  z-index: 99;
  width: 4px;
  height: 4px;
  pointer-events: none;
  background: var(--gold-bright);
  opacity: 0.8;
  transform: rotate(45deg);
  animation: speck 700ms ease-out forwards;
}

@keyframes speck {
  to {
    opacity: 0;
    transform: translateY(18px) rotate(140deg) scale(0.3);
  }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    padding: 28px 24px;
    background: var(--chocolate);
    flex-direction: column;
    gap: 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255, 253, 248, 0.12);
    font-size: 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero::after {
    right: 38%;
  }

  .hero-copy {
    width: 64%;
  }

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

  .story-inner,
  .content-columns,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-emblem {
    width: 390px;
    min-height: 390px;
  }

  .story-logo {
    width: 350px;
  }

  .story-copy {
    padding-left: 0;
    border-left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--content));
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    display: block;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero::before {
    background: rgba(42, 23, 18, 0.6);
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 94px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .hero-fact {
    min-height: 110px;
    padding: 13px 14px;
    border-right: 1px solid rgba(221, 185, 103, 0.18);
    border-bottom: 0;
  }

  .hero-fact:last-child {
    border-bottom: 0;
  }

  .event-grid,
  .detail-grid,
  .menu-preview,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .event-card,
  .event-card-wide {
    min-height: 270px;
    grid-column: auto;
  }

  .story-inner {
    gap: 36px;
  }

  .story-emblem {
    width: min(300px, 100%);
    min-height: 310px;
  }

  .story-logo {
    width: 280px;
  }

  .menu-preview-intro,
  .booking-panel {
    padding: 28px 22px;
  }

  .booking-strip-inner {
    display: block;
  }

  .booking-strip h2 {
    margin-bottom: 24px;
    font-size: 2.2rem;
  }

  .page-hero,
  .page-hero-inner {
    min-height: 430px;
  }

  .page-hero-copy {
    padding-left: 18px;
  }

  .page-hero h1 {
    font-size: 3.2rem;
    overflow-wrap: anywhere;
  }

  .field-wide {
    grid-column: auto;
  }

  .menu-toolbar-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .dish-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 14px;
  }

  .dish-weight {
    grid-column: 1;
  }

  .dish-price {
    grid-row: 1;
    grid-column: 2;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .studio-credit {
    position: static;
    max-width: 188px;
    margin: 12px auto;
  }

  body {
    padding-bottom: 74px;
  }

  .floating-actions {
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    width: auto;
    padding: 5px;
    grid-template-columns: 1fr 1fr;
    background: rgba(29, 16, 13, 0.9);
    border: 1px solid rgba(221, 185, 103, 0.48);
    border-radius: 999px;
    box-shadow: 0 12px 38px rgba(29, 16, 13, 0.28);
    backdrop-filter: blur(12px);
  }

  .floating-action {
    min-height: 46px;
    padding: 9px 12px;
    box-shadow: none;
    font-size: 0.66rem;
  }

  .floating-contact-panel {
    right: 0;
    bottom: calc(100% + 10px);
    width: 100%;
  }

  .diamond-cursor,
  .gold-speck {
    display: none;
  }
}

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

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

/* Editorial restaurant navigation and booking */
.site-header {
  height: var(--header-height);
  background: rgba(29, 16, 13, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  grid-template-columns: auto 1fr;
  width: min(calc(100% - 32px), 1320px);
}

.brand {
  position: relative;
  z-index: 2;
  width: 104px;
  height: 102px;
  min-width: 104px;
  align-self: start;
  justify-content: center;
}

.brand-logo {
  width: 100px;
  height: 98px;
  object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(221, 185, 103, 0.2));
  transform-origin: 50% 4%;
  animation: logo-sway 5.8s ease-in-out infinite;
}

@keyframes logo-sway {
  0%,
  100% {
    transform: rotate(-1.6deg);
  }
  50% {
    transform: rotate(1.6deg);
  }
}

.header-actions {
  gap: 10px;
}

.nav-toggle {
  display: inline-flex;
  width: auto;
  min-width: 104px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 16px;
  color: var(--gold-pale);
  border-color: rgba(221, 185, 103, 0.48);
  border-radius: 8px;
  text-transform: uppercase;
}

.nav-toggle::before,
.nav-toggle::after {
  display: none;
  content: none;
}

.nav-toggle span {
  display: inline-flex;
  width: auto;
  height: auto;
  margin: 0;
  background: none;
}

.nav-toggle-icon {
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-icon i {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.nav-toggle-label {
  font-size: 0.68rem;
  font-weight: 700;
}

.header-booking {
  min-width: 184px;
  text-transform: uppercase;
}

.header-booking-short {
  display: none;
}

.nav-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  visibility: hidden;
  background: rgba(17, 8, 6, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.nav-backdrop.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.main-nav {
  position: fixed;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: min(460px, 92vw);
  overflow-y: auto;
  align-items: stretch;
  justify-content: flex-start;
  padding: 26px 34px 30px;
  color: var(--pearl);
  background: #21110d;
  border-right: 1px solid rgba(221, 185, 103, 0.42);
  box-shadow: 24px 0 70px rgba(17, 8, 6, 0.36);
  flex-direction: column;
  gap: 24px;
  transform: translateX(-104%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav.is-open {
  display: flex;
  transform: translateX(0);
}

.main-nav a::after {
  display: none;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}

.nav-close {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--gold-pale);
  background: transparent;
  border: 1px solid rgba(221, 185, 103, 0.38);
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.7rem;
  line-height: 1;
}

.drawer-primary {
  display: grid;
  border-top: 1px solid rgba(221, 185, 103, 0.2);
}

.drawer-primary a {
  display: block;
  padding: 13px 0;
  color: var(--gold-pale);
  border-bottom: 1px solid rgba(221, 185, 103, 0.16);
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, padding-left 180ms ease;
}

.drawer-primary a:hover,
.drawer-primary a[aria-current="page"] {
  padding-left: 8px;
  color: var(--gold-bright);
}

.drawer-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
}

.drawer-events p {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--cafe-au-lait);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.drawer-events a {
  padding: 2px 0;
  color: var(--cafe-au-lait-soft);
  font-size: 0.8rem;
}

.drawer-events a:hover {
  color: var(--gold-bright);
}

.drawer-footer {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--cafe-au-lait);
  border-top: 1px solid rgba(221, 185, 103, 0.18);
  font-size: 0.72rem;
}

.drawer-footer a {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.hero h1,
.page-hero h1,
.section-heading h2 {
  text-shadow: 0 8px 30px rgba(42, 23, 18, 0.24);
}

.hero h1,
.page-hero h1 {
  color: var(--gold-bright);
}

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

.event-window {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  align-items: flex-end;
  color: var(--pearl);
  background-color: var(--chocolate-2);
  background-image: url("../images/hero-hall.png");
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(221, 185, 103, 0.45);
  border-radius: 8px;
  isolation: isolate;
}

.event-window-featured {
  min-height: 520px;
  grid-column: 1 / -1;
}

.event-window:nth-child(2n) {
  background-position: 18% center;
}

.event-window:nth-child(3n) {
  background-position: 78% center;
}

.event-window::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(42, 23, 18, 0.12) 15%, rgba(42, 23, 18, 0.84) 100%);
  transition: background 260ms ease;
}

.event-window::after {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(234, 216, 173, 0.42);
  border-radius: 5px;
  pointer-events: none;
  transition: inset 240ms ease, border-color 240ms ease;
}

.event-window:hover::before {
  background: linear-gradient(180deg, rgba(42, 23, 18, 0.03) 8%, rgba(42, 23, 18, 0.72) 100%);
}

.event-window:hover::after {
  inset: 9px;
  border-color: rgba(234, 216, 173, 0.78);
}

.event-window-content {
  display: grid;
  width: 100%;
  padding: 44px;
  gap: 8px;
}

.event-window strong {
  max-width: 900px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 0.9;
  text-shadow: 0 8px 28px rgba(29, 16, 13, 0.72);
  text-transform: uppercase;
}

.event-window-action {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  color: var(--cafe-au-lait-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.event-window-action b {
  color: var(--gold-bright);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.event-window:hover .event-window-action b {
  transform: translateX(6px);
}

.content-columns {
  grid-template-columns: minmax(0, 0.62fr) minmax(620px, 1.38fr);
  gap: 54px;
}

.about-character {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
  align-items: start;
  gap: 78px;
}

.about-character-copy {
  min-width: 0;
}

.about-character-copy h2 {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--chocolate-2);
  font-size: 4.1rem;
  font-weight: 600;
  line-height: 0.88;
}

.about-character-copy h2 span {
  display: block;
}

.about-character-copy h2 .about-character-accent {
  color: var(--gold);
  font-style: italic;
}

.about-character-lead {
  max-width: 640px;
  margin-bottom: 22px;
  color: var(--chocolate-3);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.42;
}

.about-character-note {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
}

.about-character-features {
  min-width: 0;
  margin-top: 42px;
  padding-left: 36px;
  border-left: 1px solid rgba(185, 136, 54, 0.52);
}

.about-character-features::before {
  display: block;
  width: 72px;
  height: 2px;
  margin-bottom: 12px;
  content: "";
  background: var(--gold);
}

.about-character-features .feature-list {
  margin-top: 0;
  border-top-color: rgba(185, 136, 54, 0.28);
}

.about-character-features .feature-list li {
  min-width: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--chocolate-2);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
  border-bottom-color: rgba(185, 136, 54, 0.28);
}

.about-character-features .feature-list li::before {
  top: 27px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 136, 54, 0.1);
}

.booking-panel {
  padding: 38px;
}

[data-booking-form] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.booking-panel h3 {
  max-width: 660px;
  color: var(--gold-bright);
  font-size: 3.4rem;
  text-transform: uppercase;
}

.booking-event-lock {
  display: grid;
  margin: 28px 0;
  padding: 22px 24px;
  background: rgba(29, 16, 13, 0.55);
  border: 1px solid rgba(221, 185, 103, 0.52);
  border-radius: 8px;
  gap: 2px;
}

.booking-event-lock span {
  color: var(--cafe-au-lait);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-event-lock strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.event-choice {
  min-width: 0;
  margin: 28px 0;
  padding: 0;
  border: 0;
}

.event-choice legend {
  margin-bottom: 14px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

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

.event-choice-button {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.event-choice-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.event-choice-button span {
  display: grid;
  min-height: 58px;
  padding: 9px 12px;
  place-items: center;
  color: var(--gold-pale);
  background: rgba(255, 253, 248, 0.035);
  border: 1px solid rgba(221, 185, 103, 0.42);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.event-choice-button input:checked + span,
.event-choice-button:hover span {
  color: var(--chocolate);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.event-choice-button input:focus-visible + span {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.booking-experience {
  display: grid;
  grid-template-columns: minmax(290px, 0.95fr) minmax(290px, 1.05fr);
  align-items: start;
  gap: 24px;
}

.calendar-picker {
  padding: 18px;
  background: rgba(29, 16, 13, 0.52);
  border: 1px solid rgba(221, 185, 103, 0.4);
  border-radius: 8px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.calendar-picker.has-error {
  border-color: #efc2a9;
  box-shadow: 0 0 0 3px rgba(239, 194, 169, 0.12);
}

.calendar-head {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.calendar-head strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
}

.calendar-head button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: var(--gold-pale);
  background: transparent;
  border: 1px solid rgba(221, 185, 103, 0.34);
  border-radius: 8px;
  cursor: pointer;
}

.calendar-head button:disabled {
  cursor: default;
  opacity: 0.25;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.calendar-weekdays {
  margin-bottom: 5px;
}

.calendar-weekdays span {
  color: var(--cafe-au-lait);
  font-size: 0.58rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid button,
.calendar-empty {
  aspect-ratio: 1;
}

.calendar-grid button {
  min-width: 0;
  padding: 0;
  color: var(--pearl);
  background: rgba(255, 253, 248, 0.045);
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.78rem;
  transition: color 140ms ease, background 140ms ease, border-color 140ms ease;
}

.calendar-grid button:hover:not(:disabled) {
  border-color: var(--gold-bright);
}

.calendar-grid button.is-selected {
  color: var(--chocolate);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  font-weight: 800;
}

.calendar-grid button:disabled {
  cursor: default;
  opacity: 0.2;
}

.calendar-selection {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--gold-pale);
  font-size: 0.72rem;
  text-align: center;
}

.calendar-picker.has-error .calendar-selection {
  color: #efc2a9;
}

.booking-fields {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-fields .field-wide {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea,
.menu-search {
  border-radius: 8px;
}

.booking-page-layout {
  display: grid;
  gap: 46px;
}

.booking-process h2 {
  max-width: 920px;
}

.booking-steps {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.booking-step {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 176px;
  overflow: hidden;
  align-items: flex-start;
  flex-direction: column;
  padding: 24px 22px;
  background: var(--paper);
  border: 1px solid rgba(183, 137, 58, 0.38);
  border-radius: 8px;
  box-shadow: 0 15px 34px rgba(42, 23, 18, 0.08);
}

.booking-step::after {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 72px;
  height: 72px;
  content: "";
  border: 1px solid rgba(183, 137, 58, 0.22);
  transform: rotate(45deg);
}

.booking-step-number {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
}

.booking-step strong {
  display: block;
  max-width: 100%;
  margin-bottom: 8px;
  color: var(--chocolate-2);
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 1;
  overflow-wrap: anywhere;
}

.booking-step p {
  max-width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

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

  .content-columns > div:first-child {
    max-width: 780px;
  }

  .about-character {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-character-copy,
  .about-character-features {
    max-width: 780px;
  }

  .about-character-features {
    margin-top: 0;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  .main-nav {
    top: 0;
    right: auto;
    display: flex;
    padding: 24px 28px 28px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0;
    border-bottom-color: rgba(221, 185, 103, 0.16);
  }

  .header-actions .button {
    display: inline-flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .event-window strong {
    font-size: 4rem;
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 76px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 1.7rem;
  }

  .about-character {
    gap: 32px;
  }

  .about-character-copy h2 {
    margin-bottom: 24px;
    font-size: 3rem;
  }

  .about-character-lead {
    font-size: 1.3rem;
  }

  .about-character-features {
    padding-left: 22px;
  }

  .about-character-features .feature-list li {
    padding-right: 4px;
    font-size: 1.22rem;
  }

  .header-inner {
    width: min(calc(100% - 20px), 1320px);
  }

  .header-actions {
    min-width: 0;
    gap: 6px;
  }

  .brand {
    width: 72px;
    height: 74px;
    min-width: 72px;
  }

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

  .nav-toggle {
    min-width: 46px;
    width: 46px;
    padding: 0;
  }

  .nav-toggle-label {
    display: none;
  }

  .header-booking {
    min-width: 64px;
    padding: 9px 12px;
    font-size: 0.68rem;
  }

  .header-booking-long {
    display: none;
  }

  .header-booking-short {
    display: inline;
  }

  .hero-actions {
    width: min(260px, 100%);
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .drawer-primary a {
    font-size: 1.85rem;
  }

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

  .event-window,
  .event-window-featured {
    min-height: 300px;
    grid-column: auto;
  }

  .event-window-content {
    padding: 30px 28px;
  }

  .event-window strong {
    font-size: 3.25rem;
  }

  .booking-panel {
    padding: 28px 20px;
  }

  .booking-panel h3 {
    font-size: 2.65rem;
  }

  .booking-event-lock strong {
    font-size: 2.35rem;
  }

  .event-choice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-experience,
  .booking-fields {
    grid-template-columns: 1fr;
  }

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .booking-step {
    min-height: 150px;
  }

  .booking-fields .field-wide {
    grid-column: 1;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .header-booking {
    max-width: 132px;
    text-align: center;
  }

  .drawer-events {
    grid-template-columns: 1fr;
  }

  .event-choice-grid {
    grid-template-columns: 1fr;
  }

  .event-window strong {
    font-size: 2.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo {
    animation: none;
  }

  .story-logo,
  .story-emblem::before,
  .story-emblem::after,
  .story-flake {
    animation: none;
  }

  .hero-copy > .lead,
  .page-hero-copy > .lead {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

@media print {
  .site-header,
  .menu-page-toolbar,
  .site-footer,
  .studio-credit,
  .floating-actions,
  .diamond-cursor,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 20px 0;
  }

  .dish-row {
    break-inside: avoid;
  }
}
