@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Cormorant+Garamond:wght@400;500;600;700&display=swap");

:root {
  --wood-950: #160d09;
  --wood-900: #21130d;
  --wood-800: #321c13;
  --wood-700: #4a2b1d;
  --cream-50: #fffaf1;
  --cream-100: #f7ead5;
  --cream-200: #ead4b5;
  --rose-500: #d94776;
  --rose-600: #bd2e61;
  --rose-700: #8f1f49;
  --copper-400: #c78b55;
  --copper-500: #a76c3a;
  --ink: #251711;
  --muted: #6f5b4a;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(12, 7, 5, 0.28);
  --shadow-soft: 0 16px 42px rgba(12, 7, 5, 0.2);
  --surface-dark: rgba(22, 13, 9, 0.68);
  --surface-border: rgba(247, 234, 213, 0.16);
  --surface-cream: linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(247, 234, 213, 0.94));
  --radius: 8px;
  --container: 1160px;
  --header-height: 76px;
  --font-display: "Cinzel Decorative", Georgia, "Times New Roman", serif;
  --font-body: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream-50);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.6;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    repeating-linear-gradient(
      90deg,
      var(--wood-950) 0,
      var(--wood-950) 34px,
      var(--wood-900) 34px,
      var(--wood-900) 72px,
      var(--wood-800) 72px,
      var(--wood-800) 110px
    );
  background-size: 42px 42px, auto;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: 3.35rem;
}

h2 {
  color: inherit;
  font-size: 2.25rem;
}

h3 {
  font-size: 1.35rem;
}

address {
  margin: 1.25rem 0 0;
  color: var(--cream-100);
  font-style: normal;
  font-weight: 700;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset: 1rem auto auto 1rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--cream-50);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0.7rem 1rem;
  color: var(--cream-50);
  background:
    linear-gradient(135deg, rgba(22, 13, 9, 0.93), rgba(50, 28, 19, 0.86)),
    rgba(22, 13, 9, 0.9);
  border-bottom: 1px solid var(--surface-border);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand__mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 900;
  background: linear-gradient(145deg, var(--rose-600), var(--copper-400));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.brand__copy {
  display: grid;
  min-width: 0;
}

.brand__copy strong,
.brand__copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__copy strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand__copy small {
  color: var(--cream-200);
  font-size: 0.76rem;
}

.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--cream-50);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  color: var(--cream-50);
  background: rgba(22, 13, 9, 0.97);
  border-bottom: 1px solid rgba(247, 234, 213, 0.12);
  transform: translateY(-120%);
  transition: transform 220ms ease;
}

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

.site-nav a {
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: linear-gradient(135deg, rgba(217, 71, 118, 0.2), rgba(199, 139, 85, 0.1));
  border-color: rgba(217, 71, 118, 0.32);
  outline: none;
}

.header-cta {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--small {
  min-height: 42px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
}

.button--rose {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-600), var(--rose-700));
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 32px rgba(189, 46, 97, 0.28);
  text-shadow: 0 1px 1px rgba(12, 7, 5, 0.28);
}

.button--rose:hover,
.button--rose:focus-visible {
  background: var(--rose-500);
}

.button--outline {
  color: var(--cream-50);
  background: rgba(22, 13, 9, 0.34);
  border-color: rgba(247, 234, 213, 0.42);
  box-shadow: 0 10px 24px rgba(12, 7, 5, 0.16);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--white);
  background: rgba(217, 71, 118, 0.18);
  border-color: rgba(217, 71, 118, 0.48);
}

.button--dark {
  color: var(--cream-50);
  background: linear-gradient(135deg, var(--wood-900), var(--wood-700));
  border-color: rgba(247, 234, 213, 0.14);
  box-shadow: 0 12px 28px rgba(12, 7, 5, 0.24);
}

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--white);
  border-color: rgba(217, 71, 118, 0.36);
}

.contact-band .button--outline,
.reservation-card .button--outline,
.location-copy .button--outline,
.legal-card .button--outline,
.cookie-banner .button--outline,
.cookie-modal .button--outline,
.about-story-copy .button--outline,
.event-card .button--outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(37, 23, 17, 0.28);
  box-shadow: 0 10px 24px rgba(37, 23, 17, 0.12);
}

.contact-band .button--outline:hover,
.contact-band .button--outline:focus-visible,
.reservation-card .button--outline:hover,
.reservation-card .button--outline:focus-visible,
.location-copy .button--outline:hover,
.location-copy .button--outline:focus-visible,
.legal-card .button--outline:hover,
.legal-card .button--outline:focus-visible,
.cookie-banner .button--outline:hover,
.cookie-banner .button--outline:focus-visible,
.cookie-modal .button--outline:hover,
.cookie-modal .button--outline:focus-visible,
.about-story-copy .button--outline:hover,
.about-story-copy .button--outline:focus-visible,
.event-card .button--outline:hover,
.event-card .button--outline:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-600), var(--rose-700));
  border-color: rgba(143, 31, 73, 0.5);
}

.header-cta {
  display: none;
}

.button-row,
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78svh;
  padding: 5rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 24%, rgba(217, 71, 118, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(22, 13, 9, 0.93) 0%, rgba(22, 13, 9, 0.78) 48%, rgba(22, 13, 9, 0.34) 100%),
    linear-gradient(0deg, rgba(22, 13, 9, 0.45), rgba(22, 13, 9, 0.04)),
    url("../assets/img/hero-restaurant.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  content: "";
  background: linear-gradient(0deg, var(--wood-950), rgba(22, 13, 9, 0));
  z-index: -1;
}

.hero__content {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.hero__content::before,
.page-hero__content::before {
  width: 76px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--rose-600), var(--copper-400));
  border-radius: 999px;
}

.hero__lead {
  max-width: 620px;
  color: var(--cream-100);
  font-size: 1.15rem;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.hero__facts li {
  padding: 0.55rem 0.75rem;
  color: var(--cream-100);
  background: rgba(22, 13, 9, 0.64);
  border: 1px solid rgba(247, 234, 213, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(12, 7, 5, 0.18);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 48svh;
  padding: 7rem 0 4rem;
  overflow: hidden;
  color: var(--cream-50);
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 30%, rgba(217, 71, 118, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(22, 13, 9, 0.92) 0%, rgba(22, 13, 9, 0.76) 52%, rgba(22, 13, 9, 0.38) 100%),
    url("../assets/img/hero-restaurant.png") center / cover no-repeat;
}

.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  content: "";
  background: linear-gradient(0deg, var(--wood-950), rgba(22, 13, 9, 0));
  z-index: -1;
}

.page-hero--menu {
  background:
    radial-gradient(circle at 16% 30%, rgba(217, 71, 118, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(22, 13, 9, 0.92) 0%, rgba(22, 13, 9, 0.78) 48%, rgba(22, 13, 9, 0.34) 100%),
    url("../assets/img/gallery-food.png") center / cover no-repeat;
}

.page-hero--about,
.page-hero--events,
.page-hero--legal,
.page-hero--location,
.page-hero--contact,
.page-hero--reservation {
  background:
    radial-gradient(circle at 16% 30%, rgba(217, 71, 118, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(22, 13, 9, 0.9) 0%, rgba(22, 13, 9, 0.75) 52%, rgba(22, 13, 9, 0.32) 100%),
    url("../assets/img/hero-restaurant.png") center / cover no-repeat;
}

.page-hero__content {
  position: relative;
  display: grid;
  max-width: 820px;
  gap: 1rem;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: 3.2rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--cream-100);
  font-size: 1.12rem;
}

.eyebrow {
  color: var(--rose-500);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--rose-700);
}

.section {
  padding: 4.5rem 0;
}

.section--cream,
.section--wood,
.section--menu,
.section--events,
.section--contact,
.section--reservation,
.section--gallery,
.section--about-story {
  color: var(--cream-50);
  background:
    linear-gradient(180deg, rgba(22, 13, 9, 0.62), rgba(22, 13, 9, 0.92)),
    repeating-linear-gradient(
      90deg,
      var(--wood-950) 0,
      var(--wood-950) 38px,
      var(--wood-800) 38px,
      var(--wood-800) 86px
    );
}

.section--location {
  color: var(--cream-50);
  background:
    linear-gradient(135deg, rgba(143, 31, 73, 0.26), rgba(22, 13, 9, 0.92)),
    repeating-linear-gradient(
      90deg,
      var(--wood-950) 0,
      var(--wood-950) 38px,
      var(--wood-800) 38px,
      var(--wood-800) 86px
    );
}

.split,
.location-layout,
.contact-band,
.footer-layout,
.reservation-layout {
  display: grid;
  gap: 2rem;
}

.section--cream .split,
.location-layout,
.reservation-layout {
  padding: 0.85rem;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.1), rgba(143, 31, 73, 0.16)),
    var(--surface-dark);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-copy {
  display: grid;
  gap: 1rem;
}

.section--cream .section-copy {
  align-content: center;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--surface-cream), var(--cream-50);
  border: 1px solid rgba(37, 23, 17, 0.1);
  border-radius: var(--radius);
}

.section--cream .section-copy::before {
  width: 62px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--rose-600), var(--copper-400));
  border-radius: 999px;
}

.section-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading {
  display: grid;
  max-width: 740px;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: currentColor;
  opacity: 0.78;
}

.section--menu > .container > .section-heading .eyebrow--dark,
.section--events > .container > .section-heading .eyebrow--dark,
.section--reservation > .container > .section-heading .eyebrow--dark {
  color: var(--rose-500);
}

.feature-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  color: var(--cream-50);
  background:
    linear-gradient(135deg, rgba(217, 71, 118, 0.16), rgba(199, 139, 85, 0.08)),
    rgba(37, 23, 17, 0.42);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-panel div {
  display: grid;
  gap: 0.15rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(33, 19, 13, 0.94), rgba(74, 43, 29, 0.88));
}

.feature-panel span {
  color: var(--cream-200);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-panel strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.highlight-grid {
  display: grid;
  gap: 1rem;
}

.highlight-card {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  gap: 1.4rem;
  padding: 1.25rem;
  color: var(--cream-50);
  background: rgba(255, 250, 241, 0.08);
  border: 1px solid rgba(247, 234, 213, 0.16);
  border-radius: var(--radius);
}

.highlight-card__number {
  color: var(--copper-400);
  font-weight: 900;
}

.highlight-card p {
  color: var(--cream-200);
}

.about-story-stack {
  display: grid;
  gap: 1.25rem;
}

.about-story-card {
  display: grid;
  gap: 1rem;
  padding: 0.85rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.1), rgba(143, 31, 73, 0.16)),
    rgba(22, 13, 9, 0.68);
  border: 1px solid rgba(247, 234, 213, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-story-card.about-reveal-pending {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.about-story-card.about-reveal-pending[data-about-reveal="right"] {
  transform: translateX(28px);
}

.about-story-card.about-reveal-pending.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.about-story-card--reverse .about-story-media {
  order: -1;
}

.about-story-media {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--wood-800);
  border-radius: var(--radius);
}

.about-story-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.about-story-copy {
  position: relative;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: 1.25rem;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(247, 234, 213, 0.94)),
    var(--cream-50);
  border: 1px solid rgba(37, 23, 17, 0.1);
  border-radius: var(--radius);
}

.about-story-copy::before {
  width: 62px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--rose-600), var(--copper-400));
  border-radius: 999px;
}

.about-story-kicker {
  color: var(--rose-700);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-story-copy h3 {
  color: var(--ink);
  font-size: 1.85rem;
}

.about-story-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.route-grid {
  display: grid;
  gap: 1rem;
}

.route-card {
  display: grid;
  min-height: 168px;
  align-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  color: var(--ink);
  background: var(--surface-cream), var(--cream-50);
  border: 1px solid rgba(37, 23, 17, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.route-card:hover,
.route-card:focus-visible {
  transform: translateY(-3px);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(234, 212, 181, 0.96)),
    var(--cream-50);
  border-color: rgba(217, 71, 118, 0.42);
  box-shadow: 0 24px 58px rgba(12, 7, 5, 0.28);
  outline: none;
}

.route-card span {
  color: var(--rose-700);
  font-weight: 900;
  text-transform: uppercase;
}

.route-card strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.18;
}

.menu-shell {
  overflow: hidden;
  padding: 0.85rem;
  opacity: 1;
  transform: none;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.1), rgba(143, 31, 73, 0.16)),
    var(--surface-dark);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-tabs {
  display: flex;
  gap: 0.35rem;
  padding: 0.7rem;
  overflow-x: auto;
  background: linear-gradient(135deg, rgba(33, 19, 13, 0.96), rgba(74, 43, 29, 0.9));
  border-radius: var(--radius);
  scrollbar-width: none;
}

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

.menu-tab {
  min-width: max-content;
  padding: 0.75rem 0.9rem;
  color: var(--cream-100);
  font: inherit;
  font-weight: 800;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--rose-600);
  border-color: rgba(255, 255, 255, 0.16);
}

.menu-tab:focus-visible {
  outline: 2px solid var(--copper-400);
  outline-offset: 2px;
}

.menu-panel {
  display: grid;
  gap: 1.25rem;
  min-height: 330px;
  padding: 1rem 0 0;
  color: var(--ink);
  opacity: 1;
  visibility: visible;
}

.menu-panel:focus {
  outline: none;
}

.menu-category {
  display: grid;
  gap: 1rem;
  opacity: 1;
  visibility: visible;
}

.menu-category__header {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--surface-cream), var(--cream-100);
  border: 1px solid rgba(37, 23, 17, 0.1);
  border-radius: var(--radius);
}

.menu-category__header h3 {
  color: var(--ink);
  font-size: 1.55rem;
}

.menu-category__header p,
.menu-empty p {
  color: var(--muted);
}

.menu-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 1;
  visibility: visible;
}

.menu-item {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid rgba(37, 23, 17, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(37, 23, 17, 0.08);
}

.menu-item__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.45rem;
}

.menu-item__top strong {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.menu-item__top span {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  max-width: 100%;
  padding: 0.32rem 0.58rem;
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  background: linear-gradient(135deg, var(--rose-600), var(--rose-700));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(143, 31, 73, 0.2);
}

.menu-item p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.35;
}

.menu-empty {
  display: grid;
  min-height: 170px;
  align-content: center;
  gap: 0.65rem;
  padding: 1.2rem;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(217, 71, 118, 0.11), rgba(199, 139, 85, 0.14)),
    var(--cream-100);
  border: 1px dashed rgba(143, 31, 73, 0.35);
  border-radius: var(--radius);
  text-align: center;
}

.menu-empty strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.events-list {
  display: grid;
  max-width: 900px;
  gap: 1rem;
  margin-inline: auto;
}

.event-card,
.event-empty {
  color: var(--ink);
  background: var(--surface-cream), var(--cream-50);
  border: 1px solid rgba(37, 23, 17, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.event-card {
  display: grid;
  gap: 1rem;
  padding: 0.85rem;
}

.event-card__media {
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  background: var(--wood-800);
  border-radius: var(--radius);
}

.event-card__media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.event-card__date {
  display: grid;
  min-height: 132px;
  place-items: center;
  gap: 0.25rem;
  padding: 1rem;
  color: var(--cream-50);
  text-align: center;
  background: linear-gradient(135deg, var(--rose-700), var(--wood-800));
  border-radius: var(--radius);
}

.event-card__date span {
  font-weight: 900;
}

.event-card__date span:first-child {
  color: var(--cream-200);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.event-card__date strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
}

.event-card__content {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: 0.25rem;
}

.event-card__content h3 {
  color: var(--ink);
  font-size: 1.55rem;
}

.event-card__content p,
.event-empty p {
  color: var(--muted);
}

.event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.event-empty {
  display: grid;
  min-height: 220px;
  align-content: center;
  gap: 0.65rem;
  padding: 2rem;
  text-align: center;
  border-style: dashed;
}

.event-empty strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.gallery-grid {
  display: grid;
  gap: 1.15rem;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  background: var(--wood-800);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 3rem 1rem 1rem;
  color: var(--cream-50);
  font-weight: 900;
  background: linear-gradient(0deg, rgba(22, 13, 9, 0.86), rgba(22, 13, 9, 0));
}

.quote-panel {
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 2rem;
  color: var(--cream-50);
  background:
    linear-gradient(135deg, rgba(189, 46, 97, 0.54), rgba(22, 13, 9, 0.9)),
    url("../assets/img/gallery-ambience.png") center / cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-panel p {
  max-width: 470px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.18;
}

.location-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--surface-cream), var(--cream-50);
  border: 1px solid rgba(37, 23, 17, 0.1);
  border-radius: var(--radius);
}

.location-copy p {
  color: var(--muted);
}

.location-copy .eyebrow {
  color: var(--rose-700);
}

.location-copy address {
  color: var(--ink);
}

.location-hours {
  display: grid;
  gap: 0.75rem;
  max-width: 520px;
  padding: 1rem;
  color: var(--ink);
  background: var(--cream-100);
  border: 1px solid rgba(199, 139, 85, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(37, 23, 17, 0.12);
}

.location-hours > span {
  color: var(--rose-700);
  font-weight: 900;
  text-transform: uppercase;
}

.hours-list--light li {
  border-color: rgba(37, 23, 17, 0.14);
}

.hours-list--light span {
  color: var(--muted);
}

.hours-list--light strong {
  color: var(--ink);
}

.map-frame {
  display: grid;
  place-items: stretch;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.1), rgba(143, 31, 73, 0.16)),
    var(--surface-dark);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map-consent {
  display: grid;
  place-content: center;
  gap: 1rem;
  min-height: 360px;
  padding: 2rem;
  color: var(--cream-50);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(143, 31, 73, 0.38), rgba(22, 13, 9, 0.88)),
    var(--wood-900);
}

.map-consent strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.map-consent p {
  max-width: 520px;
  color: var(--cream-100);
}

.map-consent .button-row {
  justify-content: center;
}

.cookie-banner .button--outline,
.cookie-modal .button--outline,
.reservation-card .legal-note a {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(37, 23, 17, 0.28);
}

.map-consent .button--outline {
  color: var(--cream-50);
  background: rgba(22, 13, 9, 0.36);
  border-color: rgba(247, 234, 213, 0.46);
}

.map-consent .button--outline:hover,
.map-consent .button--outline:focus-visible {
  color: var(--white);
  background: rgba(217, 71, 118, 0.2);
  border-color: rgba(217, 71, 118, 0.52);
}

.contact-band {
  align-items: center;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--surface-cream), var(--cream-50);
  border: 1px solid rgba(37, 23, 17, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-band .eyebrow--dark {
  color: var(--rose-700);
}

.contact-band p {
  color: var(--muted);
  max-width: 680px;
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.phone-link {
  color: var(--rose-700);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.hours-list {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  max-width: 460px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(37, 23, 17, 0.12);
}

.hours-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-list span {
  color: var(--muted);
  font-weight: 800;
}

.hours-list strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  white-space: nowrap;
}

.hours-list--side {
  max-width: none;
}

.reservation-side .hours-list--side li {
  border-color: rgba(247, 234, 213, 0.18);
}

.reservation-side .hours-list--side span {
  color: var(--cream-200);
  font-size: 0.9rem;
  text-transform: none;
}

.reservation-side .hours-list--side strong {
  color: var(--white);
  font-size: 1rem;
}

.reservation-card,
.reservation-side {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reservation-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--surface-cream), var(--cream-50);
  border: 1px solid rgba(37, 23, 17, 0.1);
}

.reservation-card p {
  color: var(--muted);
}

.reservation-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field span {
  color: var(--ink);
  font-weight: 900;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(140px, 0.78fr) minmax(0, 1fr);
  gap: 0.55rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(37, 23, 17, 0.18);
  border-radius: var(--radius);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--rose-600);
  outline: 3px solid rgba(217, 71, 118, 0.18);
}

.form-note,
.reservation-status {
  font-size: 0.94rem;
}

.form-note a {
  color: var(--rose-700);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-note a {
  color: var(--rose-700);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.reservation-status {
  min-height: 1.5em;
  color: var(--rose-700);
  font-weight: 800;
}

.reservation-status:not(:empty) {
  padding: 0.85rem 0.95rem;
  line-height: 1.45;
  background: rgba(217, 71, 118, 0.1);
  border: 1px solid rgba(143, 31, 73, 0.18);
  border-radius: var(--radius);
}

body.reservation-modal-open {
  overflow: hidden;
}

.reservation-confirmation-modal {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 1rem;
  overflow: hidden;
  background: rgba(22, 13, 9, 0.76);
  backdrop-filter: blur(8px);
  overscroll-behavior: contain;
}

.reservation-confirmation-modal__panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(100%, 560px);
  max-height: calc(100vh - 2rem);
  max-height: calc(100svh - 2rem);
  gap: 1rem;
  padding: 1rem;
  overflow: hidden;
  color: var(--ink);
  background: var(--surface-cream), var(--cream-50);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reservation-confirmation-modal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.reservation-confirmation-modal__header h3 {
  color: var(--ink);
  font-size: 1.8rem;
}

.reservation-confirmation-modal__panel p {
  color: var(--muted);
}

.reservation-confirmation-modal__body {
  display: grid;
  min-height: 0;
  gap: 1rem;
  padding-right: 0.25rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(143, 31, 73, 0.45) rgba(37, 23, 17, 0.08);
}

.reservation-confirmation-modal__body::-webkit-scrollbar {
  width: 8px;
}

.reservation-confirmation-modal__body::-webkit-scrollbar-track {
  background: rgba(37, 23, 17, 0.08);
  border-radius: 999px;
}

.reservation-confirmation-modal__body::-webkit-scrollbar-thumb {
  background: rgba(143, 31, 73, 0.45);
  border-radius: 999px;
}

.reservation-confirmation-modal__actions {
  margin-top: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(37, 23, 17, 0.1);
}

.reservation-confirmation-modal__close {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  font: inherit;
  font-size: 1.55rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 23, 17, 0.16);
  border-radius: var(--radius);
  cursor: pointer;
}

.reservation-confirmation-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 0.5rem 0.75rem;
  padding: 0.85rem;
  margin: 0;
  background: var(--cream-100);
  border: 1px solid rgba(37, 23, 17, 0.1);
  border-radius: var(--radius);
}

.reservation-confirmation-summary dt {
  color: var(--rose-700);
  font-weight: 900;
}

.reservation-confirmation-summary dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.reservation-side {
  display: grid;
  gap: 1px;
  align-self: start;
  overflow: hidden;
  color: var(--cream-50);
  background:
    linear-gradient(135deg, rgba(217, 71, 118, 0.16), rgba(199, 139, 85, 0.08)),
    rgba(37, 23, 17, 0.42);
  border: 1px solid var(--surface-border);
}

.reservation-side div {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(33, 19, 13, 0.94), rgba(74, 43, 29, 0.88));
}

.reservation-side span {
  color: var(--cream-200);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reservation-side strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.18;
}

.legal-layout {
  display: grid;
  gap: 1rem;
}

.legal-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  color: var(--ink);
  background: var(--surface-cream), var(--cream-50);
  border: 1px solid rgba(37, 23, 17, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card h2,
.legal-card h3 {
  color: var(--ink);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.1rem;
  margin: 0;
}

.legal-table {
  display: grid;
  gap: 0.75rem;
}

.legal-row {
  display: grid;
  gap: 0.35rem;
  padding: 0.85rem;
  background: var(--cream-100);
  border: 1px solid rgba(37, 23, 17, 0.1);
  border-radius: var(--radius);
}

.legal-row span {
  color: var(--rose-700);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding: 3rem 0;
  color: var(--cream-100);
  background:
    linear-gradient(180deg, rgba(22, 13, 9, 0.94), rgba(22, 13, 9, 1)),
    repeating-linear-gradient(
      90deg,
      var(--wood-950) 0,
      var(--wood-950) 38px,
      var(--wood-800) 38px,
      var(--wood-800) 86px
    );
  border-top: 1px solid var(--surface-border);
}

.site-footer .footer-layout {
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.08), rgba(143, 31, 73, 0.12)),
    rgba(22, 13, 9, 0.64);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.site-footer p {
  max-width: 540px;
  margin-top: 1rem;
  color: var(--cream-200);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  padding: 0.55rem 0.7rem;
  color: var(--cream-200);
  font-weight: 800;
  background: rgba(255, 250, 241, 0.06);
  border: 1px solid rgba(247, 234, 213, 0.1);
  border-radius: var(--radius);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 234, 213, 0.12);
}

.surface-reveal-pending {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

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

.legal-links a,
.legal-links button {
  padding: 0;
  color: var(--cream-200);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 25;
  display: grid;
  gap: 1rem;
  max-width: 980px;
  padding: 1rem;
  margin-inline: auto;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid rgba(37, 23, 17, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-banner strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.cookie-banner p {
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(22, 13, 9, 0.72);
}

.cookie-modal__panel {
  display: grid;
  width: min(100%, 720px);
  max-height: min(760px, calc(100svh - 2rem));
  gap: 1rem;
  padding: 1rem;
  overflow: auto;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-modal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-close {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  background: var(--cream-100);
  border: 1px solid rgba(37, 23, 17, 0.16);
  border-radius: var(--radius);
  cursor: pointer;
}

.cookie-options {
  display: grid;
  gap: 0.75rem;
}

.cookie-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  padding: 1rem;
  background: var(--cream-100);
  border: 1px solid rgba(37, 23, 17, 0.12);
  border-radius: var(--radius);
}

.cookie-option input {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  accent-color: var(--rose-600);
}

.cookie-option span {
  display: grid;
  gap: 0.25rem;
}

.cookie-option strong {
  color: var(--ink);
  font-family: var(--font-display);
}

.cookie-option small {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 680px) {
  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 2.8rem;
  }

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

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

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

  .gallery-item--wide {
    grid-column: span 2;
  }

  .contact-band {
    grid-template-columns: 1.25fr 0.75fr;
    padding: 2rem;
  }

  .section--cream .split,
  .location-layout,
  .reservation-layout {
    padding: 1rem;
  }

  .section--cream .section-copy,
  .location-copy,
  .reservation-card,
  .legal-card {
    padding: 1.5rem;
  }

  .cookie-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .cookie-actions {
    justify-content: end;
  }

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

  .event-card {
    grid-template-columns: minmax(0, 1fr) 180px;
    align-items: stretch;
  }

  .event-card__media {
    grid-column: 1 / -1;
  }

  .about-story-card {
    gap: 1.2rem;
    padding: 1rem;
  }

  .about-story-media,
  .about-story-media img {
    min-height: 340px;
  }

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

  .menu-item__top {
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: start;
    column-gap: 1rem;
  }

  .menu-item__top strong {
    font-size: 1.45rem;
  }

  .menu-item__top span {
    justify-self: end;
    min-width: 78px;
    padding-inline: 0.62rem;
    white-space: nowrap;
  }
}

@media (min-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
    padding-inline: 1.4rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-content: center;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    transform: none;
  }

  .site-nav a {
    padding: 0.62rem 0.48rem;
    font-size: 0.82rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 76svh;
    padding-block: 5.5rem 3.5rem;
  }

  h1 {
    font-size: 5.15rem;
  }

  .page-hero {
    min-height: 54svh;
    padding-block: 8rem 4.5rem;
  }

  .page-hero h1 {
    font-size: 4.6rem;
  }

  .hero__lead {
    font-size: 1.24rem;
  }

  .split,
  .location-layout,
  .footer-layout,
  .reservation-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .split--reverse .quote-panel {
    order: 2;
  }

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

  .about-story-stack {
    gap: 1.5rem;
  }

  .about-story-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 420px;
  }

  .about-story-card--reverse .about-story-media {
    order: initial;
  }

  .about-story-copy {
    padding: 2rem;
  }

  .about-story-copy h3 {
    font-size: 2.15rem;
  }

  .section--cream .section-copy,
  .location-copy,
  .reservation-card,
  .legal-card {
    padding: 2rem;
  }

  .event-card {
    grid-template-columns: 220px 170px minmax(0, 1fr);
  }

  .event-card__media {
    grid-column: auto;
  }

  .event-card__media,
  .event-card__media img {
    min-height: 100%;
  }

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

  .route-card strong {
    font-size: 1.15rem;
  }

  .menu-panel {
    padding: 1.4rem;
  }

  .gallery-grid {
    grid-template-columns: 1.25fr 0.85fr 0.85fr;
  }

  .gallery-item--wide {
    grid-row: span 2;
    grid-column: auto;
  }

  .gallery-item--wide,
  .gallery-item--wide img {
    min-height: 540px;
  }

  .footer-links {
    justify-self: end;
    grid-template-columns: repeat(2, max-content);
    column-gap: 1.2rem;
  }

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

@media (min-width: 1180px) {
  .site-header {
    gap: 1.2rem;
  }

  .site-nav a {
    padding: 0.68rem 0.62rem;
    font-size: 0.88rem;
  }

  .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 420px) {
  .brand__copy strong {
    max-width: 190px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .page-hero h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .button,
  .button-row,
  .hero__actions {
    width: 100%;
  }

  .menu-panel {
    padding: 0.75rem;
  }

  .phone-link {
    font-size: 1.7rem;
  }

  .phone-field {
    grid-template-columns: 1fr;
  }

  .reservation-confirmation-modal {
    align-items: end;
    padding: 0.75rem;
  }

  .reservation-confirmation-modal__panel {
    max-height: calc(100vh - 1.5rem);
    max-height: calc(100svh - 1.5rem);
    margin-block: 0;
  }

  .reservation-confirmation-summary {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .about-story-card.about-reveal-pending {
    opacity: 1;
    transform: none;
  }

  .surface-reveal-pending {
    opacity: 1;
    transform: none;
  }
}
