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

@font-face {
  font-family: "Verandah Reverie";
  src: url("./assets/VerandahReverie_PERSONAL_USE_ONLY.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #080808;
  --bg-dark-soft: #14120f;
  --bg-light: #ffffff;
  --ink: #050505;
  --paper: #ffffff;
  --page-gap: 20px;
  --frame-radius: 20px;
  --hero-copy-duration: 1600ms;
  --hero-copy-ease: cubic-bezier(0.22, 0.8, 0.22, 1);
  --hero-eyebrow-duration: 1500ms;
  --hero-title-duration: 2200ms;
  --hero-title-opacity-duration: 1500ms;
  --hero-rule-duration: 2600ms;
  --hero-summary-duration: 1700ms;
  --hero-summary-delay: 420ms;
  --muted: rgba(255, 255, 255, 0.7);
  --muted-dark: rgba(9, 9, 9, 0.68);
  --line: rgba(255, 255, 255, 0.24);
  --shadow-hero: 0 28px 70px rgba(0, 0, 0, 0.28);
  --shadow-gallery: 0 18px 46px rgba(0, 0, 0, 0.08);
  --font-family-base: "Poppins", "Segoe UI", sans-serif;
  --content-text: #bfa08b;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  height: 100%;
  min-height: 100vh;
  color: var(--content-text);
  background: #ffffff;
  font-family: var(--font-family-base);
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.gallery-open {
  overflow: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

body.standalone-page {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

body.page-transition-lock {
  overflow: hidden;
}

.floating-whatsapp {
  position: fixed;
  left: max(15px, env(safe-area-inset-left));
  bottom: max(15px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #ffffff;
  background: #1eaa61;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  color: #ffffff;
  background: #168c4f;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  outline: 0;
  transform: translateY(-0.2rem) scale(1.04);
}

.floating-whatsapp svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
}

.seo-fallback {
  position: fixed;
  inset: var(--page-gap);
  z-index: 200;
  overflow: auto;
  padding: clamp(1.5rem, 4vw, 4rem);
  color: #101513;
  background: #ffffff;
}

.seo-fallback h2,
.seo-fallback h3 {
  margin: 0 0 1rem;
  color: #114147;
}

.seo-fallback h2 {
  max-width: 52rem;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.seo-fallback h3 {
  margin-top: 2rem;
  font-size: 1.1rem;
}

.seo-fallback p,
.seo-fallback address {
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.8;
}

.seo-fallback a {
  color: #114147;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 224, 178, 0.06), transparent 20%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.08) 100%);
  z-index: -1;
}

.topbar,
.topbar a,
.topbar span,
.hero-copy,
.hero-copy .hero-eyebrow,
.hero-copy .hero-kicker,
.hero-copy .hero-title,
.hero-copy .hero-summary p,
.gallery-shell,
.gallery-shell > .eyebrow,
.gallery-shell .gallery-kicker,
.gallery-shell .gallery-subtitle,
.gallery-shell .restaurant-detail-summary,
.gallery-shell .restaurant-detail-title,
.gallery-shell .event-date-month,
.gallery-shell .event-date-day,
.gallery-shell .event-copy h3,
.gallery-shell .event-copy p,
.gallery-shell .event-copy-meta,
.gallery-shell .about-label,
.gallery-shell .about-copy h2,
.gallery-shell .about-text-grid p,
.gallery-shell .reservation-field label,
.gallery-shell .reservation-note,
.gallery-shell .contact-label,
.gallery-shell .contact-block-title,
.gallery-shell .contact-link,
.gallery-shell .contact-address span,
.gallery-shell .contact-form-field label,
.gallery-shell .place-card-overlay,
.gallery-shell .place-card-overlay span,
.mobile-menu-panel,
.mobile-menu-panel a,
.mobile-menu-panel button {
  color: var(--content-text) !important;
}

.hero-copy .hero-eyebrow,
.hero-copy .hero-kicker,
.hero-copy .hero-title,
.hero-copy .hero-summary p {
  color: #ffffff !important;
}

.gallery-shell .gallery-subtitle,
.gallery-shell .restaurant-detail-summary,
.gallery-shell .restaurant-detail-text,
.gallery-shell .event-copy p,
.gallery-shell .event-copy-meta,
.gallery-shell .about-text-grid p,
.gallery-shell .reservation-note {
  color: #4d5356 !important;
}

.gallery-shell .reservation-field label,
.gallery-shell .contact-form-field label {
  color: #4d5356 !important;
}

.gallery-shell input,
.gallery-shell textarea,
.gallery-shell select,
.gallery-shell input::placeholder,
.gallery-shell textarea::placeholder {
  color: var(--content-text);
}

.topbar .nav a,
.topbar .nav span,
.topbar .topbar-actions a,
.topbar .topbar-actions button,
.topbar .topbar-actions .lang-switch span {
  color: #ffffff !important;
}

.topbar .nav a:hover,
.topbar .nav a:focus-visible {
  color: #bfa08b !important;
}

.gallery-shell.is-restaurants-panel .place-card-overlay,
.gallery-shell.is-restaurants-panel .place-card-overlay span {
  color: #ffffff !important;
}

.page {
  width: 100%;
  margin: 0 auto;
  height: 100svh;
  padding: var(--page-gap);
}

.page-standalone {
  height: auto;
  min-height: 100svh;
}

.stage {
  height: calc(100svh - (var(--page-gap) * 2));
  display: grid;
  place-items: start center;
}

.standalone-stage {
  min-height: calc(100svh - (var(--page-gap) * 2));
}

.frame {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.frame-dark {
  background: var(--ink);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--frame-radius);
  transform-origin: 50% 55%;
  transition:
    transform 1480ms cubic-bezier(0.16, 0.84, 0.24, 1),
    filter 1480ms ease,
    opacity 1480ms ease;
}

.frame-dark::before {
  content: "";
  position: absolute;
  inset: -14% -12%;
  background:
    linear-gradient(
      135deg,
      rgba(255, 245, 228, 0.22) 0%,
      rgba(255, 214, 160, 0.12) 16%,
      rgba(255, 214, 160, 0.04) 28%,
      rgba(255, 214, 160, 0) 46%
    );
  filter: blur(34px);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.frame-dark > .topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  background: transparent;
}

body.gallery-open .frame-dark {
  transform: scale(0.972) translateY(-0.6rem);
  filter: brightness(0.58) saturate(0.82);
  opacity: 0.72;
}

.frame-light {
  background: var(--paper);
  color: #0c0c0c;
  min-height: calc(100svh - (var(--page-gap) * 2));
  overflow: visible;
  border-radius: var(--frame-radius);
  opacity: 0;
  transform: translateY(100%) scale(0.985);
  transform-origin: 50% 100%;
  clip-path: inset(100% 0 0 0 round var(--frame-radius));
  box-shadow: 0 -30px 120px rgba(0, 0, 0, 0.28);
  transition:
    opacity 1100ms ease,
    transform 1900ms cubic-bezier(0.16, 0.84, 0.24, 1),
    clip-path 1900ms cubic-bezier(0.16, 0.84, 0.24, 1),
    box-shadow 1900ms ease;
}

.frame-light::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  width: auto;
  height: 7rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 820ms ease 260ms;
}

.frame-light::after {
  content: none;
}

.gallery-section.is-open .frame-light {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0 round var(--frame-radius));
  box-shadow: 0 -8px 56px rgba(0, 0, 0, 0.12);
}

.standalone-frame {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0 round var(--frame-radius));
  box-shadow: 0 -8px 56px rgba(0, 0, 0, 0.12);
}

.standalone-frame::before {
  opacity: 1;
}

.standalone-page.page-entering .standalone-frame {
  opacity: 0;
  transform: translateY(100%) scale(0.985);
  clip-path: inset(100% 0 0 0 round var(--frame-radius));
  box-shadow: 0 -30px 120px rgba(0, 0, 0, 0.28);
}

.standalone-page.page-entering.page-enter-active .standalone-frame {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0 round var(--frame-radius));
  box-shadow: 0 -8px 56px rgba(0, 0, 0, 0.12);
}

.standalone-page.page-entering .standalone-frame::before {
  opacity: 0;
}

.standalone-page.page-entering.page-enter-active .standalone-frame::before {
  opacity: 1;
}

.page-transition-layer {
  position: fixed;
  inset: var(--page-gap);
  z-index: 100;
  pointer-events: none;
}

.page-transition-surface {
  width: 100%;
  height: 100%;
  background: var(--paper);
  box-shadow: 0 -30px 120px rgba(0, 0, 0, 0.28);
  transform: translateY(100%) scale(0.985);
  transform-origin: 50% 100%;
  clip-path: inset(100% 0 0 0 round var(--frame-radius));
  opacity: 0;
  transition:
    opacity 1100ms ease,
    transform 1900ms cubic-bezier(0.16, 0.84, 0.24, 1),
    clip-path 1900ms cubic-bezier(0.16, 0.84, 0.24, 1),
    box-shadow 1900ms ease;
}

.page-transition-surface::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 7rem;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 820ms ease 260ms;
}

.page-transition-layer.is-active .page-transition-surface {
  opacity: 1;
  transform: translateY(0) scale(1);
  clip-path: inset(0 0 0 0 round var(--frame-radius));
  box-shadow: 0 -8px 56px rgba(0, 0, 0, 0.12);
}

.page-transition-layer.is-active .page-transition-surface::before {
  opacity: 1;
}

.gallery-section.is-open .frame-light::before {
  opacity: 1;
}

.topbar {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin: 0;
  padding: 1.6rem 2.2rem;
  min-height: 5.4rem;
}

.topbar-light {
  background:
    radial-gradient(circle at 12% -70%, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(112deg, #071f23 0%, #0d373d 48%, #1d6267 100%);
  position: sticky;
  top: 0;
  z-index: 14;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 12px 28px rgba(7, 35, 39, 0.18);
}

.topbar-light::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    108deg,
    transparent 24%,
    rgba(255, 255, 255, 0.02) 38%,
    rgba(255, 255, 255, 0.11) 48%,
    rgba(255, 255, 255, 0.03) 57%,
    transparent 72%
  );
  transform: translateX(-120%);
  pointer-events: none;
  animation: topbar-light-sweep 12s ease-in-out infinite;
}

.topbar-light > * {
  position: relative;
  z-index: 1;
}

@keyframes topbar-light-sweep {
  0%,
  42% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(120%);
  }
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.brand img {
  display: block;
  width: auto;
  height: 2.6rem;
}

.brand-hero img,
.brand-gallery img {
  opacity: 0;
  transform: translateX(-2.4rem);
  clip-path: inset(0 100% 0 0);
}

.brand-hero img {
  animation: logo-slide-reveal 1550ms cubic-bezier(0.16, 0.84, 0.24, 1) 220ms forwards;
}

.gallery-section.is-content-visible .brand-gallery img {
  animation: logo-slide-reveal 1550ms cubic-bezier(0.16, 0.84, 0.24, 1) 180ms forwards;
}

.standalone-frame .brand-gallery img {
  animation: logo-slide-reveal 1550ms cubic-bezier(0.16, 0.84, 0.24, 1) 180ms forwards;
}

@keyframes logo-slide-reveal {
  0% {
    opacity: 0;
    transform: translateX(-2.4rem);
    clip-path: inset(0 100% 0 0);
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

.nav,
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.topbar-actions {
  justify-self: end;
  gap: 0.9rem;
}

.nav {
  justify-self: center;
  gap: 0.72rem;
  font-size: calc(0.58rem + 2pt);
  opacity: 0;
  transform: translateX(-1.4rem);
  clip-path: inset(0 100% 0 0);
}

.nav a,
.nav span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-0.9rem);
  clip-path: inset(0 100% 0 0);
}

.nav a,
.topbar-actions a {
  color: #ffffff;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav a.is-current {
  color: #ffffff;
}

.nav a:hover {
  color: #bfa08b;
}

.nav-light a,
.topbar-actions-light a,
.topbar-light .divider {
  color: #ffffff;
}

.nav-light a.is-current {
  color: #ffffff;
}

.nav-light a:hover {
  color: #bfa08b;
}

.frame-dark .nav {
  animation: header-actions-reveal 1400ms cubic-bezier(0.16, 0.84, 0.24, 1) 220ms forwards;
}

.frame-dark .nav a,
.frame-dark .nav span {
  animation: logo-slide-reveal 1150ms cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.gallery-section.is-content-visible .topbar-light .nav {
  animation: header-actions-reveal 1400ms cubic-bezier(0.16, 0.84, 0.24, 1) 180ms forwards;
}

.gallery-section.is-content-visible .topbar-light .nav a,
.gallery-section.is-content-visible .topbar-light .nav span {
  animation: logo-slide-reveal 1150ms cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.standalone-frame .topbar-light .nav {
  animation: header-actions-reveal 1400ms cubic-bezier(0.16, 0.84, 0.24, 1) 180ms forwards;
}

.standalone-frame .topbar-light .nav a,
.standalone-frame .topbar-light .nav span {
  animation: logo-slide-reveal 1150ms cubic-bezier(0.16, 0.84, 0.24, 1) forwards;
}

.nav > :nth-child(1) {
  animation-delay: 220ms;
}

.nav > :nth-child(2) {
  animation-delay: 220ms;
}

.nav > :nth-child(3) {
  animation-delay: 220ms;
}

.nav > :nth-child(4) {
  animation-delay: 220ms;
}

.nav > :nth-child(5) {
  animation-delay: 220ms;
}

.nav > :nth-child(6) {
  animation-delay: 220ms;
}

.nav > :nth-child(7) {
  animation-delay: 220ms;
}

.nav > :nth-child(8) {
  animation-delay: 220ms;
}

.nav > :nth-child(9) {
  animation-delay: 220ms;
}

.nav > :nth-child(10) {
  animation-delay: 220ms;
}

.nav > :nth-child(11) {
  animation-delay: 220ms;
}

.social-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.frame-dark .topbar-actions .social-inline {
  position: fixed;
  right: calc(var(--page-gap) + 2.2rem);
  bottom: calc(var(--page-gap) + 1.85rem);
  z-index: 8;
}

body.gallery-open .frame-dark .topbar-actions .social-inline {
  opacity: 0;
  pointer-events: none;
}

.topbar-actions > * {
  opacity: 0;
  transform: translateX(-1.4rem);
  clip-path: inset(0 100% 0 0);
}

.frame-dark .topbar-actions > * {
  animation: header-actions-reveal 1400ms cubic-bezier(0.16, 0.84, 0.24, 1) 220ms forwards;
}

.gallery-section.is-content-visible .topbar-light .topbar-actions > * {
  animation: header-actions-reveal 1400ms cubic-bezier(0.16, 0.84, 0.24, 1) 180ms forwards;
}

.standalone-frame .topbar-light .topbar-actions > * {
  animation: header-actions-reveal 1400ms cubic-bezier(0.16, 0.84, 0.24, 1) 180ms forwards;
}

.social-inline a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  transition: color 180ms ease, opacity 180ms ease;
}

.topbar .social-inline a:hover,
.topbar .social-inline a:focus-visible,
.gallery-section .social-inline-dark a:hover,
.gallery-section .social-inline-dark a:focus-visible,
.standalone-frame .social-inline-dark a:hover,
.standalone-frame .social-inline-dark a:focus-visible {
  color: #bfa08b !important;
  opacity: 0.72;
}

.social-inline svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.social-inline-dark a {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-section .topbar-actions .social-inline {
  position: static;
  opacity: 1;
  pointer-events: auto;
}

.gallery-section .social-inline-dark a,
.standalone-frame .social-inline-dark a {
  color: #ffffff;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-height: 2.35rem;
  padding: 0 1.25rem 0 1rem;
  margin-right: -2.2rem;
  background: #ffffff;
  color: #0d0d0d;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.lang-switch button,
.lang-switch span {
  color: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.lang-switch button {
  font-weight: 700;
}

.lang-switch span {
  font-weight: 400;
}

.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.58;
  transition: opacity 180ms ease;
}

.lang-switch button.is-current,
.lang-switch button:hover {
  opacity: 1;
}

.topbar-actions-light .lang-switch {
  color: #114147;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.lang-switch,
.topbar .topbar-actions .lang-switch button,
.topbar .topbar-actions .lang-switch span {
  color: #114147 !important;
}

@keyframes header-actions-reveal {
  0% {
    opacity: 0;
    transform: translateX(-1.4rem);
    clip-path: inset(0 100% 0 0);
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

.icon-button {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.topbar-actions .menu-toggle {
  display: none;
}

.icon-button-light {
  color: #0d0d0d;
}

.icon {
  display: inline-block;
  position: relative;
}

.menu-toggle .icon {
  opacity: 0;
  transform: translateX(-1.4rem);
  clip-path: inset(0 100% 0 0);
}

.frame-dark .menu-toggle .icon {
  animation: menu-slide-reveal 1550ms cubic-bezier(0.16, 0.84, 0.24, 1) 320ms forwards;
}

.gallery-section.is-content-visible .topbar-light .menu-toggle .icon {
  animation: menu-slide-reveal 1550ms cubic-bezier(0.16, 0.84, 0.24, 1) 260ms forwards;
}

.standalone-frame .topbar-light .menu-toggle .icon {
  animation: menu-slide-reveal 1550ms cubic-bezier(0.16, 0.84, 0.24, 1) 260ms forwards;
}

.icon-menu {
  width: 0.85rem;
  height: 0.75rem;
  background:
    linear-gradient(currentColor, currentColor) top left / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat,
    linear-gradient(currentColor, currentColor) bottom left / 100% 1px no-repeat;
}

@keyframes menu-slide-reveal {
  0% {
    opacity: 0;
    transform: translateX(-1.4rem);
    clip-path: inset(0 100% 0 0);
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

.hero {
  position: relative;
  flex: 1;
  min-height: 0;
  padding: 0 2.2rem 1.4rem;
  isolation: isolate;
}

.hero::after {
  content: none;
  position: absolute;
  inset: -18% auto -12% -24%;
  width: 34%;
  background:
    linear-gradient(
      90deg,
      rgba(255, 208, 128, 0),
      rgba(255, 214, 150, 0.08) 22%,
      rgba(255, 235, 205, 0.42) 48%,
      rgba(255, 206, 120, 0.1) 74%,
      rgba(255, 208, 128, 0)
    );
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-160%) skewX(-22deg);
  transition:
    transform 1400ms cubic-bezier(0.16, 0.84, 0.24, 1),
    opacity 520ms ease;
  pointer-events: none;
  z-index: 2;
}

.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-background {
  z-index: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  filter: saturate(0.92) contrast(1.04);
  transition:
    transform 1900ms cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 1200ms ease;
}

.hero-background.is-visible {
  transform: scale(1);
  opacity: 1;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.16) 42%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.05) 38%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 4.2rem;
  z-index: 2;
  width: min(100% - 8.4rem, 64rem);
  max-width: 64rem;
  padding: 0;
  text-align: left;
  opacity: 0;
  transform: translateY(calc(-50% + 12px));
  transition:
    opacity var(--hero-copy-duration) ease,
    transform var(--hero-copy-duration) var(--hero-copy-ease);
}

.hero-copy.is-visible {
  opacity: 1;
  transform: translateY(-50%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.48em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-eyebrow {
  position: absolute;
  left: 0;
  top: 50%;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.74);
  opacity: 0;
  writing-mode: vertical-rl;
  transform: translate(-3.1rem, calc(-50% + 8px)) rotate(180deg);
  transition:
    opacity var(--hero-eyebrow-duration) ease,
    transform var(--hero-eyebrow-duration) var(--hero-copy-ease);
}

.hero-copy.is-visible .hero-eyebrow {
  opacity: 1;
  transform: translate(-3.1rem, -50%) rotate(180deg);
}

.eyebrow-dark {
  color: rgba(8, 8, 8, 0.52);
}

.title-line-wrap {
  overflow: hidden;
}

.title-line-wrap-kicker {
  overflow: visible;
}

.hero-kicker,
.hero-title,
.gallery-kicker {
  margin: 0;
  font-family: var(--font-family-base);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-kicker,
.hero-title,
.gallery-kicker,
.gallery-subtitle {
  opacity: 0;
  transform: translateX(-2.4rem);
  clip-path: inset(0 100% 0 0);
}

.hero-kicker {
  font-size: clamp(1.9rem, 3.2vw, 3.8rem);
  line-height: 1.12;
  font-family: "Verandah Reverie", var(--font-family-base);
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.84);
}

.title-line-wrap-large {
  margin-top: -0.2rem;
}

.hero-title {
  font-size: clamp(4.2rem, 10vw, 8.5rem);
  line-height: 0.92;
  color: #f8f3eb;
}

.hero-rule {
  position: relative;
  width: min(54vw, 46rem);
  max-width: 100%;
  height: 1px;
  margin: 1.5rem 0 1.55rem;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.hero-rule span {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(-102%);
  background: rgba(255, 255, 255, 0.55);
  transition: transform var(--hero-rule-duration) var(--hero-copy-ease);
}

.hero-copy.is-visible .hero-rule span {
  transform: translateX(0);
}

.hero-summary {
  overflow: hidden;
}

.hero-summary p {
  max-width: 32rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.72;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity var(--hero-summary-duration) ease var(--hero-summary-delay),
    transform var(--hero-summary-duration) var(--hero-copy-ease) var(--hero-summary-delay);
}

.hero-copy.is-visible .hero-summary p {
  opacity: 1;
  transform: translateY(0);
}

.hero-footer {
  position: absolute;
  left: 2.2rem;
  right: 2.2rem;
  bottom: 1.4rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.slide-dot {
  width: 0.6rem;
  height: 0.6rem;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, opacity 220ms ease;
}

.slide-dot:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.62);
}

.slide-dot.is-active {
  background: #ffffff;
  transform: scale(1.22);
}

.gallery-section {
  position: fixed;
  inset: var(--page-gap);
  z-index: 20;
  pointer-events: none;
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition: visibility 0s linear 1900ms;
}

.gallery-section::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.3)),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 700ms ease;
}

.gallery-section.is-open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.gallery-section.is-open::before {
  opacity: 1;
}

.gallery-shell {
  position: relative;
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1rem 2.2rem 2.5rem;
  overflow: visible;
}

.standalone-shell {
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
}

.gallery-section .topbar-light,
.gallery-shell > .eyebrow,
.gallery-heading,
.gallery-grid {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 920ms ease,
    transform 1200ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.gallery-grid {
  transform: translateY(2.8rem) scale(0.982);
}

.gallery-section.is-panel-switching-out .topbar-light,
.gallery-section.is-panel-switching-out .gallery-shell > .eyebrow,
.gallery-section.is-panel-switching-out .gallery-heading,
.gallery-section.is-panel-switching-out .gallery-grid {
  opacity: 0;
  transform: translateY(-2.4rem) scale(0.988);
  transition-duration: 420ms, 520ms;
  transition-delay: 0ms;
}

.gallery-section.is-panel-switching-in:not(.is-content-visible) .topbar-light,
.gallery-section.is-panel-switching-in:not(.is-content-visible) .gallery-shell > .eyebrow,
.gallery-section.is-panel-switching-in:not(.is-content-visible) .gallery-heading,
.gallery-section.is-panel-switching-in:not(.is-content-visible) .gallery-grid {
  opacity: 0;
  transform: translateY(3.4rem) scale(0.985);
  transition: none;
}

.gallery-section.is-content-visible .topbar-light {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 140ms;
}

.gallery-section.is-content-visible .gallery-shell > .eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 220ms;
}

.gallery-section.is-content-visible .gallery-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 280ms;
}

.gallery-section.is-content-visible .gallery-grid {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 360ms;
}

.gallery-shell > .eyebrow {
  position: absolute;
  top: 10rem;
  left: 1rem;
  margin: 0;
  font-weight: 400;
}

.gallery-heading {
  text-align: center;
  padding: 2.4rem 1rem 0.8rem;
}

.gallery-kicker {
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  color: #171717;
}

.gallery-subtitle {
  position: relative;
  width: fit-content;
  margin: 1rem auto 0;
  padding-top: 0.9rem;
  font-family: var(--font-family-base);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(17, 17, 17, 0.75);
}

.hero-copy.is-visible .hero-kicker {
  animation: logo-slide-reveal 1550ms cubic-bezier(0.16, 0.84, 0.24, 1) 220ms forwards;
}

.hero-copy.is-visible .hero-title {
  animation: logo-slide-reveal 1550ms cubic-bezier(0.16, 0.84, 0.24, 1) 220ms forwards;
}

.gallery-section.is-content-visible .gallery-kicker,
.standalone-frame .gallery-kicker {
  animation: logo-slide-reveal 1450ms cubic-bezier(0.16, 0.84, 0.24, 1) 180ms forwards;
}

.gallery-section.is-content-visible .gallery-subtitle,
.standalone-frame .gallery-subtitle {
  animation: logo-slide-reveal 1450ms cubic-bezier(0.16, 0.84, 0.24, 1) 180ms forwards;
}

.gallery-subtitle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 12rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.18);
  transform-origin: center;
  transition: opacity 620ms ease, transform 980ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.gallery-section.is-content-visible .gallery-subtitle::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  padding: 2rem 1rem 0;
}

.gallery-grid.is-restaurants {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid.is-club-gallery {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-shell.is-restaurants-panel {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
  padding: 1.6rem;
}

.gallery-shell.is-restaurants-panel > .eyebrow,
.gallery-shell.is-restaurants-panel .gallery-heading {
  display: none;
}

.gallery-shell.is-restaurants-panel .gallery-grid {
  flex: 1;
  height: calc(100svh - (var(--page-gap) * 2) - 5.4rem - 3.2rem);
  padding: 0;
  align-items: stretch;
}

.gallery-shell.is-restaurants-panel .place-card {
  min-height: 100%;
  border-radius: 0;
  clip-path: inset(100% 0 0 0);
  transform: translateY(7rem) scale(0.94);
  isolation: isolate;
  transition:
    transform 1850ms cubic-bezier(0.16, 0.84, 0.24, 1),
    opacity 1100ms ease,
    clip-path 1850ms cubic-bezier(0.16, 0.84, 0.24, 1),
    box-shadow 280ms ease;
}

.gallery-shell.is-restaurants-panel .place-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, rgba(6, 12, 14, 0), rgba(6, 12, 14, 0.2) 100%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.gallery-shell.is-restaurants-panel .place-card.is-visible {
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
}

.gallery-shell.is-restaurants-panel .place-card img {
  transform: translateY(12%) scale(1.08);
  transition: transform 1900ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.gallery-shell.is-restaurants-panel .place-card.is-visible img {
  transform: translateY(0) scale(1);
}

.gallery-shell.is-restaurants-panel .place-card:hover {
  transform: translateY(-0.35rem) scale(1.012);
  box-shadow: 0 24px 40px rgba(7, 12, 14, 0.2);
}

.gallery-shell.is-restaurants-panel .place-card:hover::after {
  opacity: 1;
}

.gallery-shell.is-restaurants-panel .place-card:hover img,
.gallery-shell.is-restaurants-panel .place-card:focus-within img {
  transform: translateY(0) scale(1.05);
}

.gallery-shell.is-restaurants-panel .place-card-overlay {
  place-items: start center;
  align-content: start;
  padding: 1.15rem 0.85rem;
  background: linear-gradient(
    180deg,
    rgba(17, 65, 71, 0.88) 0%,
    rgba(17, 65, 71, 0.52) 18%,
    rgba(17, 65, 71, 0.18) 34%,
    rgba(17, 65, 71, 0) 48%
  );
  transition: background 260ms ease;
}

.gallery-shell.is-restaurants-panel .place-card:hover .place-card-overlay,
.gallery-shell.is-restaurants-panel .place-card:focus-within .place-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(17, 65, 71, 0.94) 0%,
    rgba(17, 65, 71, 0.62) 22%,
    rgba(17, 65, 71, 0.22) 38%,
    rgba(17, 65, 71, 0) 54%
  );
}

.gallery-shell.is-club-gallery-panel .gallery-grid {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(calc((100% - 1.25rem) / 2), calc((100% - 1.25rem) / 2));
  gap: 1.25rem;
  padding: 0;
  height: calc(100svh - (var(--page-gap) * 2) - 5.4rem - 1.6rem);
  align-content: stretch;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: none;
  scrollbar-width: none;
  cursor: grab;
}

.gallery-shell.is-club-gallery-panel .gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-shell.is-club-gallery-panel > .eyebrow,
.gallery-shell.is-club-gallery-panel .gallery-heading {
  display: none;
}

.gallery-shell.is-club-gallery-panel {
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 0.9rem 0;
}

.gallery-shell.is-club-gallery-panel .club-spread {
  min-width: 0;
  height: 100%;
  scroll-snap-align: start;
  overflow: hidden;
}

.gallery-shell.is-club-gallery-panel .club-spread-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1rem;
  height: 100%;
  min-height: 0;
}

.gallery-shell.is-club-gallery-panel .club-spread-left {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 1rem;
  height: 100%;
  align-content: stretch;
}

.gallery-shell.is-club-gallery-panel .club-card-top {
  grid-column: 1 / -1;
  grid-row: 1;
}

.gallery-shell.is-club-gallery-panel .club-card-bottom-left {
  grid-column: 1;
  grid-row: 2;
}

.gallery-shell.is-club-gallery-panel .club-card-bottom-right {
  grid-column: 2;
  grid-row: 2;
}

.gallery-shell.is-club-gallery-panel .club-spread-right {
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.gallery-shell.is-club-gallery-panel .club-spread-right .place-card,
.gallery-shell.is-club-gallery-panel .club-spread-left .place-card {
  width: 100%;
  height: 100%;
}

.gallery-shell.is-club-gallery-panel .club-spread.is-compact .club-spread-layout {
  grid-template-columns: 1fr;
}

.gallery-shell.is-club-gallery-panel .club-spread.is-compact .club-spread-left {
  grid-template-rows: minmax(0, 1.15fr) minmax(0, 1fr);
}

.gallery-shell.is-club-gallery-panel .place-card {
  min-height: 0;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  transform: translateY(4.4rem) scale(0.975);
  overflow: hidden;
}

.gallery-shell.is-club-gallery-panel .club-card {
  min-width: 0;
  min-height: 0;
}

.gallery-shell.is-club-gallery-panel .place-card.is-visible {
  transform: translateY(0) scale(1);
}

.gallery-shell.is-club-gallery-panel .place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 780ms ease;
}

.gallery-shell.is-club-gallery-panel .place-card-overlay {
  display: none;
}

.gallery-shell.is-club-gallery-panel .gallery-grid.is-dragging {
  cursor: grabbing;
}

.gallery-shell.is-club-gallery-panel .place-card-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.place-card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(17, 65, 71, 0.68);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.place-card-play::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 0.72rem solid transparent;
  border-bottom: 0.72rem solid transparent;
  border-left: 1.05rem solid #ffffff;
  transform: translate(-50%, -50%);
}

.place-card.is-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.14);
  pointer-events: none;
}

.gallery-shell.is-club-gallery-panel .place-card-button:hover img,
.gallery-shell.is-club-gallery-panel .place-card-button:focus-visible img {
  transform: scale(1.05);
}

.gallery-shell.is-restaurant-detail-gallery-panel {
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
  padding-top: 1.45rem;
}

.gallery-shell.is-restaurant-detail-gallery-panel > .eyebrow,
.gallery-shell.is-restaurant-detail-gallery-panel .gallery-heading {
  display: none;
}

.gallery-shell.is-restaurant-detail-gallery-panel .gallery-grid {
  display: block;
  width: 100%;
  padding-top: 0;
}

.restaurant-detail-layout {
  display: grid;
  gap: 1.35rem;
  width: 100%;
  max-width: none;
  margin: 0;
}

.restaurant-detail-intro {
  display: grid;
  justify-items: start;
  gap: 0.55rem;
  padding: 0 0 0.2rem;
  text-align: left;
}

.restaurant-detail-back {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(17, 65, 71, 0.78);
  font: inherit;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
}

.restaurant-detail-logo {
  display: block;
  width: auto;
  height: 3.5rem;
}

.restaurant-detail-summary {
  margin: 0;
  max-width: min(100%, 64rem);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(15, 23, 24, 0.68);
}

.gallery-shell.is-restaurant-detail-gallery-panel .restaurant-detail-title {
  margin: 0;
  font-family: var(--font-family-base);
  font-size: clamp(3rem, 5.4vw, 5.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -1px;
  color: #101513;
}

.restaurant-detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.restaurant-detail-gallery-grid.is-club-collage {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(calc((100% - 1.25rem) / 2), calc((100% - 1.25rem) / 2));
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  scroll-snap-type: none;
  padding-bottom: 0.1rem;
}

.restaurant-detail-gallery-grid.is-club-collage::-webkit-scrollbar {
  display: none;
}

.restaurant-detail-gallery-grid.is-club-collage .club-spread {
  min-width: 0;
  height: 32rem;
  scroll-snap-align: start;
  overflow: hidden;
}

.restaurant-detail-gallery-grid.is-club-collage .club-spread-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1rem;
  height: 100%;
  min-height: 0;
}

.restaurant-detail-gallery-grid.is-club-collage .club-spread-left {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 1rem;
  height: 100%;
}

.restaurant-detail-gallery-grid.is-club-collage .club-card-top {
  grid-column: 1 / -1;
  grid-row: 1;
}

.restaurant-detail-gallery-grid.is-club-collage .club-card-bottom-left {
  grid-column: 1;
  grid-row: 2;
}

.restaurant-detail-gallery-grid.is-club-collage .club-card-bottom-right {
  grid-column: 2;
  grid-row: 2;
}

.restaurant-detail-gallery-grid.is-club-collage .club-spread-right {
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.restaurant-detail-gallery-grid.is-club-collage .club-spread-right .place-card,
.restaurant-detail-gallery-grid.is-club-collage .club-spread-left .place-card {
  width: 100%;
  height: 100%;
}

.restaurant-detail-gallery-grid.is-club-collage .club-spread.is-compact .club-spread-layout {
  grid-template-columns: 1fr;
}

.restaurant-detail-gallery-grid.is-club-collage .club-spread.is-compact .club-spread-left {
  grid-template-rows: minmax(0, 1.15fr) minmax(0, 1fr);
}

.gallery-shell.is-restaurant-detail-gallery-panel .place-card {
  min-height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  transform: translateY(4.4rem) scale(0.975);
}

.gallery-shell.is-restaurant-detail-gallery-panel .restaurant-detail-gallery-grid.is-club-collage .place-card {
  min-height: 0;
  height: 100%;
  aspect-ratio: auto;
}

.gallery-shell.is-restaurant-detail-gallery-panel .place-card.is-visible {
  transform: translateY(0) scale(1);
}

.gallery-shell.is-restaurant-detail-gallery-panel .place-card-overlay {
  display: none;
}

.gallery-shell.is-restaurant-detail-gallery-panel .place-card-button:hover img,
.gallery-shell.is-restaurant-detail-gallery-panel .place-card-button:focus-visible img {
  transform: scale(1.05);
}

.gallery-shell.is-panel-pepesRestaurant .place-card img {
  filter: brightness(1.08) contrast(1.04) saturate(1.14);
}

.gallery-shell.is-panel-pepesRestaurant .place-card-button:hover img,
.gallery-shell.is-panel-pepesRestaurant .place-card-button:focus-visible img {
  filter: brightness(1.12) contrast(1.06) saturate(1.18);
}

.gallery-shell.is-events-schedule-panel {
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem;
}

.gallery-shell.is-events-schedule-panel > .eyebrow,
.gallery-shell.is-events-schedule-panel .gallery-heading {
  display: none;
}

.gallery-shell.is-events-schedule-panel .gallery-grid {
  display: block;
  width: 100%;
  padding-top: 0;
}

.events-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: min(34rem, calc(100svh - 21rem));
}

.event-item {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1.3fr) minmax(0, 0.7fr);
  min-height: min(34rem, calc(100svh - 21rem));
  height: min(34rem, calc(100svh - 21rem));
  overflow: hidden;
  border-radius: 0;
  background: #d8ddd8;
  box-shadow: 0 24px 56px rgba(10, 16, 18, 0.1);
  opacity: 0;
  transform: translateY(2.2rem);
  transition:
    opacity 780ms ease,
    transform 1240ms cubic-bezier(0.16, 0.84, 0.24, 1),
    box-shadow 180ms ease;
}

.event-item:hover {
  box-shadow: 0 30px 62px rgba(10, 16, 18, 0.14);
}

.event-card-media {
  position: relative;
  min-height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.06) translateY(1.8rem);
  opacity: 0;
  transition:
    opacity 880ms ease,
    transform 1500ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.event-card-copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 0.95rem 1.05rem 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 233, 0.98)),
    #ffffff;
}

.event-date {
  display: inline-grid;
  align-content: start;
  justify-items: center;
  width: fit-content;
  min-width: 4.4rem;
  padding: 0.78rem 0.68rem 0.6rem;
  border-radius: 0;
  background: rgba(17, 65, 71, 0.06);
  box-shadow: none;
}

.event-card-media .event-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(7, 12, 14, 0.18);
}

.event-date-month {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(17, 65, 71, 0.58);
}

.event-date-day {
  margin-top: 0.18rem;
  font-family: var(--font-family-base);
  font-size: 1.9rem;
  line-height: 0.92;
  color: #114147;
}

.event-copy {
  display: grid;
  gap: 0.42rem;
}

.event-copy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 65, 71, 0.52);
}

.event-copy h3 {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #101513;
}

.event-copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(15, 23, 24, 0.7);
}

.gallery-section.is-content-visible .event-card-media {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 420ms;
}

.gallery-section.is-content-visible .event-item {
  opacity: 1;
  transform: translateY(0);
}

.gallery-section.is-content-visible .event-item:nth-child(1) {
  transition-delay: 620ms;
}

.gallery-section.is-content-visible .event-item:nth-child(2) {
  transition-delay: 720ms;
}

.gallery-section.is-content-visible .event-item:nth-child(3) {
  transition-delay: 820ms;
}

.gallery-shell.is-about-showcase-panel {
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 2rem 2rem;
  --about-parallax-x: 0px;
  --about-parallax-y: 0px;
}

.gallery-shell.is-about-showcase-panel > .eyebrow,
.gallery-shell.is-about-showcase-panel .gallery-heading {
  display: none;
}

.gallery-shell.is-about-showcase-panel .gallery-grid {
  display: block;
  width: 100%;
  padding-top: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: min(39rem, calc(100svh - 16rem));
}

.about-panel-item {
  opacity: 0;
  transform: translateY(1.9rem);
  transition:
    opacity 860ms ease,
    transform 1320ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.about-media-card {
  overflow: hidden;
  border-radius: 0;
}

.about-media-card {
  position: relative;
  height: min(39rem, calc(100svh - 16rem));
  min-height: min(39rem, calc(100svh - 16rem));
}

.about-media-card-secondary {
  transform: translateY(1.1rem);
}

.about-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate3d(calc(var(--about-parallax-x) * -0.55), calc(var(--about-parallax-y) * -0.55), 0)
    scale(1.025);
  transition: transform 1600ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 2rem;
  min-height: min(39rem, calc(100svh - 16rem));
  padding: 0.4rem 0;
  color: #101513;
}

.about-label {
  font-size: 0.82rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #c8a089;
}

.about-label,
.about-copy h2,
.about-text-grid p {
  opacity: 0;
  transform: translateY(1.4rem);
  transition:
    opacity 820ms ease,
    transform 1240ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.about-copy h2 {
  margin: 0;
  max-width: 50rem;
  font-family: var(--font-family-base);
  font-size: 25pt;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #c8a089;
}

.about-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem 2.4rem;
  max-width: 100%;
}

.about-text-grid p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(15, 23, 24, 0.58);
}

.gallery-section.is-content-visible .about-panel-item {
  opacity: 1;
  transform: translateY(0);
}

.gallery-section.is-content-visible .about-panel-item:nth-child(1) {
  transition-delay: 540ms;
}

.gallery-section.is-content-visible .about-panel-item:nth-child(2) {
  transition-delay: 660ms;
}

.gallery-section.is-content-visible .about-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 660ms;
}

.gallery-section.is-content-visible .about-copy h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 760ms;
}

.gallery-section.is-content-visible .about-text-grid p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 900ms;
}

.gallery-section.is-content-visible .about-media {
  transform: translate3d(calc(var(--about-parallax-x) * -0.55), calc(var(--about-parallax-y) * -0.55), 0)
    scale(1);
}

.gallery-shell.is-reservation-form-panel {
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
  display: flex;
  align-items: center;
  padding-top: 1.6rem;
}

.gallery-shell.is-reservation-form-panel > .eyebrow,
.gallery-shell.is-reservation-form-panel .gallery-heading {
  display: none;
}

.gallery-shell.is-reservation-form-panel .gallery-grid {
  display: block;
  width: 100%;
  padding-top: 0;
}

.gallery-shell.is-contact-layout-panel {
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
  display: flex;
  align-items: center;
}

.gallery-shell.is-contact-layout-panel > .eyebrow,
.gallery-shell.is-contact-layout-panel .gallery-heading {
  display: none;
}

.gallery-shell.is-contact-layout-panel .gallery-grid {
  display: block;
  width: 100%;
  padding-top: 0;
}

.reservation-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
}

.reservation-hero,
.reservation-form {
  border-radius: 0;
}

.reservation-hero {
  min-height: min(39rem, calc(100svh - 19rem));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 28px 60px rgba(8, 20, 24, 0.18);
}

.reservation-form {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 233, 0.98)),
    #ffffff;
  box-shadow: 0 24px 56px rgba(10, 16, 18, 0.1);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-height: min(39rem, calc(100svh - 19rem));
  align-content: start;
}

.reservation-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

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

.reservation-field label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(17, 65, 71, 0.64);
}

.reservation-field input,
.reservation-field select,
.reservation-field textarea {
  width: 100%;
  border: 1px solid rgba(77, 83, 86, 0.52);
  border-radius: 0;
  background: transparent;
  color: #0f1718;
  font: inherit;
  padding: 0 1rem;
  min-height: 3.5rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.reservation-field textarea {
  min-height: 10rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  resize: vertical;
}

.reservation-field input:focus,
.reservation-field select:focus,
.reservation-field textarea:focus {
  border-color: rgba(77, 83, 86, 0.88);
  box-shadow: 0 0 0 4px rgba(77, 83, 86, 0.08);
  background: transparent;
}

.reservation-actions {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
  align-content: start;
  padding-top: 0.35rem;
}

.reservation-submit {
  appearance: none;
  width: fit-content;
  min-width: 10rem;
  min-height: 3.45rem;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 0;
  background: #114147;
  color: #ffffff;
  font: inherit;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.reservation-submit:hover {
  background: #0b3136;
  transform: translateY(-1px);
}

.reservation-note {
  margin: 0;
  max-width: 42rem;
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(15, 23, 24, 0.66);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 2fr);
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: min(39rem, calc(100svh - 19rem));
  overflow: hidden;
}

.contact-info,
.contact-form,
.contact-map {
  border-radius: 0;
}

.contact-info {
  grid-column: span 1;
}

.contact-map {
  grid-column: span 1;
  min-height: min(39rem, calc(100svh - 19rem));
}

.contact-form {
  grid-column: span 1;
  min-height: min(39rem, calc(100svh - 19rem));
  height: 100%;
}

.contact-info {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    #114147;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  color: #ffffff;
}

.contact-form {
  padding: 2.6rem;
  background:
    radial-gradient(circle at 92% 0%, rgba(179, 145, 111, 0.16), transparent 36%),
    linear-gradient(135deg, #fbfaf6 0%, #f1f6f3 52%, #e6efed 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-content: start;
}

.contact-form.reservation-form-inline {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  height: 100%;
}

.contact-label,
.contact-block-title {
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.58);
}

.contact-block {
  display: grid;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-block:first-of-type {
  border-top: 0;
  padding-top: 0.4rem;
}

.contact-block-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.68);
}

.contact-stack {
  display: grid;
  gap: 0.45rem;
}

.contact-link,
.contact-address span {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1.55;
}

.contact-link:hover {
  color: #d7c47a;
}

.contact-info .contact-label,
.contact-info .contact-block-title,
.contact-info .contact-link,
.contact-info .contact-address span {
  color: #ffffff !important;
}

.contact-form .contact-label {
  color: #114147 !important;
}

.contact-form .reservation-form-label {
  grid-column: 1 / -1;
  font-weight: 700;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

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

.contact-form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form.reservation-form-inline .reservation-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.contact-form.reservation-form-inline .reservation-field label {
  color: #000000 !important;
}

.contact-form.reservation-form-inline .reservation-field input,
.contact-form.reservation-form-inline .reservation-field select,
.contact-form.reservation-form-inline .reservation-field textarea {
  width: 100%;
  border: 1px solid #114147;
  border-radius: 0;
  background: transparent;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  caret-color: #000000;
  font: inherit;
  padding: 0 1rem;
  min-height: 3.5rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form.reservation-form-inline .reservation-field select,
.contact-form.reservation-form-inline .reservation-field option {
  color: #000000 !important;
}

.contact-form.reservation-form-inline .reservation-field textarea {
  min-height: 8.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  resize: vertical;
}

.contact-form.reservation-form-inline .reservation-field input::placeholder,
.contact-form.reservation-form-inline .reservation-field textarea::placeholder {
  color: rgba(0, 0, 0, 0.88) !important;
  opacity: 1;
}

.contact-form.reservation-form-inline .reservation-field input:focus::placeholder,
.contact-form.reservation-form-inline .reservation-field textarea:focus::placeholder {
  opacity: 0;
}

.contact-form.reservation-form-inline .reservation-field input:focus,
.contact-form.reservation-form-inline .reservation-field select:focus,
.contact-form.reservation-form-inline .reservation-field textarea:focus {
  border-color: rgba(17, 65, 71, 0.88);
  box-shadow: 0 0 0 4px rgba(17, 65, 71, 0.08);
  background: transparent;
}

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

.contact-form.reservation-form-inline .reservation-actions {
  grid-column: 1 / -1;
  padding-top: 0.2rem;
}

.contact-form.reservation-form-inline .reservation-note-inline {
  display: block;
  grid-column: 1 / -1;
  justify-self: stretch;
  margin: 0;
  max-width: 100%;
  width: 100%;
  color: #000000 !important;
  font-size: 0.82rem;
  line-height: 1.8;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid #114147;
  border-radius: 0;
  background: transparent;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  caret-color: #000000;
  font: inherit;
  padding: 0 1rem;
  min-height: 3.5rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form-field select,
.contact-form-field option {
  color: #000000 !important;
}

.contact-form-field textarea {
  min-height: 12rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: #114147;
  box-shadow: 0 0 0 4px rgba(17, 65, 71, 0.12);
  background: transparent;
}

.contact-submit {
  appearance: none;
  width: fit-content;
  min-width: 10rem;
  min-height: 3.45rem;
  padding: 0 1.5rem;
  border: 0;
  border-radius: 0;
  background: #114147;
  color: #ffffff;
  font: inherit;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.contact-submit:hover {
  background: #0b3136;
  transform: translateY(-1px);
}

.contact-form.reservation-form-inline .reservation-submit {
  min-width: 8.8rem;
}

.contact-map {
  overflow: hidden;
  background: #d9dedc;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: min(39rem, calc(100svh - 19rem));
  border: 0;
  display: block;
}

.place-card {
  --card-delay: 0ms;
  position: relative;
  min-height: 16rem;
  border-radius: 0;
  overflow: hidden;
  background: #e8e1d7;
  clip-path: inset(100% 0 0 0);
  transform: translateY(2.8rem) scale(0.985);
  opacity: 0;
  transition:
    transform 1280ms cubic-bezier(0.16, 0.84, 0.24, 1),
    opacity 920ms ease,
    clip-path 1280ms cubic-bezier(0.16, 0.84, 0.24, 1),
    box-shadow 280ms ease;
}

.place-card.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0) scale(1);
}

.place-card:hover {
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
}

.place-card-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.place-card-button {
  appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}

.place-card-button:focus-visible,
.place-card-link:focus-visible {
  outline: 2px solid rgba(215, 196, 122, 0.72);
  outline-offset: -2px;
}

.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.place-card:hover img {
  transform: scale(1.04);
}

.place-card-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-family-base);
  font-size: clamp(1.6rem, 2vw, 2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.place-card-overlay span {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 760ms ease,
    transform 920ms cubic-bezier(0.16, 0.84, 0.24, 1);
  transition-delay: calc(var(--card-delay) + 180ms);
}

.place-card.is-visible .place-card-overlay span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-shell.is-restaurants-panel .place-card-overlay span {
  width: min(100%, 11rem);
  font-family: var(--font-family-base);
  font-size: clamp(0.72rem, 0.92vw, 0.9rem);
  line-height: 1.25;
  letter-spacing: 0.22em;
  text-align: center;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
  transform: translateY(2rem);
  transition-duration: 1000ms, 1280ms;
  transition-delay: calc(var(--card-delay) + 420ms);
}

.gallery-shell.is-restaurants-panel .place-card-overlay {
  place-items: start center;
  align-content: start;
  padding: 0.95rem 0.85rem;
  background: linear-gradient(180deg, rgba(6, 12, 14, 0.84) 0%, rgba(6, 12, 14, 0.16) 54%, rgba(6, 12, 14, 0) 100%);
}

.gallery-shell.is-restaurants-panel .place-card-overlay span {
  opacity: 1;
  transform: translateY(30px);
  transition: none;
}

.restaurant-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 2rem;
  padding: 2.2rem 1rem 0;
  align-items: stretch;
}

.restaurant-detail-media {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background: #d7d1c9;
}

.restaurant-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.restaurant-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: 1rem 0;
}

.restaurant-detail-label {
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  color: rgba(17, 17, 17, 0.48);
  text-transform: uppercase;
}

.restaurant-detail-title {
  margin: 0;
  font-family: var(--font-family-base);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #101513;
}

.restaurant-detail-text {
  margin: 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(17, 17, 17, 0.74);
}

.restaurant-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 0.4rem;
}

.restaurant-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(17, 65, 71, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: #114147;
  text-transform: uppercase;
}

.restaurant-detail-link {
  width: fit-content;
  min-height: 2.9rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: #114147;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.restaurant-page .gallery-shell {
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
  padding: 0;
}

.restaurant-page .restaurant-detail {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
}

.restaurant-page .restaurant-detail-media {
  min-height: calc(100svh - (var(--page-gap) * 2) - 5.4rem);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 0s linear 240ms;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.lightbox-backdrop {
  appearance: none;
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(6, 8, 10, 0.82);
  cursor: pointer;
}

.lightbox-dialog {
  position: absolute;
  inset: var(--page-gap);
  display: grid;
  place-items: center;
  padding: 3.5rem;
}

.lightbox-dialog img {
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - (var(--page-gap) * 2) - 4.5rem);
  display: block;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(1.25rem) scale(0.985);
  transition: transform 320ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.lightbox-dialog iframe {
  width: min(100%, 1180px);
  aspect-ratio: 16 / 9;
  max-height: calc(100svh - (var(--page-gap) * 2) - 4.5rem);
  display: block;
  border: 0;
  background: #000000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(1.25rem) scale(0.985);
  transition: transform 320ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.lightbox.is-open .lightbox-dialog img,
.lightbox.is-open .lightbox-dialog iframe {
  transform: translateY(0) scale(1);
}

.lightbox-close {
  appearance: none;
  position: fixed;
  z-index: 3;
  top: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.lightbox-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: #ffffff;
}

.lightbox-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-nav {
  appearance: none;
  position: fixed;
  z-index: 3;
  top: 50%;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
}

.lightbox-nav-prev {
  left: 1.25rem;
}

.lightbox-nav-next {
  right: 1.25rem;
}

.lightbox-nav span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.lightbox-nav-prev span {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.lightbox-nav-next span {
  transform: translate(-65%, -50%) rotate(45deg);
}

.lightbox-nav:disabled {
  opacity: 0.28;
  cursor: default;
}

.mobile-menu {
  position: fixed;
  inset: var(--page-gap);
  z-index: 130;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-menu-backdrop {
  appearance: none;
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: var(--frame-radius);
}

.mobile-menu-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1.1rem;
  background:
    radial-gradient(circle at 18% 14%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 32%),
    linear-gradient(145deg, rgba(4, 18, 21, 0.2) 0%, rgba(4, 18, 21, 0) 36%, rgba(4, 18, 21, 0.28) 100%),
    #114147;
  border-radius: var(--frame-radius);
  clip-path: inset(0 0 100% 0);
  transform: translateY(-2.8rem);
  transition:
    clip-path 1560ms cubic-bezier(0.16, 0.84, 0.24, 1),
    transform 1560ms cubic-bezier(0.16, 0.84, 0.24, 1);
}

.mobile-menu.is-open .mobile-menu-panel {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.mobile-menu-links {
  width: 100%;
  max-width: 30rem;
  display: grid;
  gap: 0;
  justify-items: center;
  margin-top: 30px;
}

.mobile-menu-link {
  appearance: none;
  width: 100%;
  min-height: 2.35rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 12pt;
  letter-spacing: 2px;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-panel,
.mobile-menu-panel a,
.mobile-menu-panel button,
.mobile-menu-link,
.mobile-menu-close,
.mobile-menu-social a {
  color: #ffffff !important;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
  color: #bfa08b !important;
}

.mobile-menu-social a:hover,
.mobile-menu-social a:focus-visible {
  color: #bfa08b !important;
}

.mobile-menu-brand {
  position: static;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transform: none;
}

.mobile-menu-brand img {
  display: block;
  width: auto;
  height: 2.35rem;
}

.mobile-menu-social {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 30px;
}

.mobile-menu-social a {
  color: rgba(255, 255, 255, 0.9);
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-social svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.mobile-menu-close {
  appearance: none;
  position: absolute;
  top: 1.35rem;
  right: 1.1rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.35rem;
  height: 1px;
  background: #ffffff;
}

.mobile-menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

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

@media (max-width: 1080px) and (min-width: 721px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    justify-items: center;
    align-items: center;
    text-align: center;
  }

  .brand {
    grid-area: auto;
    justify-self: center;
  }

  .nav {
    grid-area: auto;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    justify-self: center;
    gap: 0.55rem;
    font-size: 0.74rem;
  }

  .topbar-actions {
    grid-area: auto;
    justify-self: center;
    width: auto;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .lang-switch {
    margin-right: 0;
    border-radius: 999px;
  }

  .frame-dark .topbar-actions .social-inline,
  .gallery-section .topbar-actions .social-inline {
    position: static;
    right: auto;
    bottom: auto;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    left: 3.3rem;
    width: min(100% - 6.6rem, 56rem);
  }

  .hero-title {
    font-size: clamp(3.8rem, 8vw, 6.4rem);
  }

  .hero-summary p {
    max-width: 28rem;
  }

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

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

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

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

  .restaurant-detail-gallery-grid.is-club-collage {
    grid-template-columns: none;
    grid-auto-columns: minmax(calc(100% - 0.75rem), calc(100% - 0.75rem));
  }

  .events-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 58rem;
  }

  .about-layout {
    grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1.1fr);
    max-width: none;
    min-height: 31rem;
    gap: 2rem;
  }

  .about-media-card,
  .about-copy {
    height: 31rem;
    min-height: 31rem;
  }

  .about-copy h2 {
    font-size: clamp(2.8rem, 5.5vw, 4.7rem);
  }

  .about-text-grid {
    gap: 1.4rem 2rem;
  }

  .event-item {
    grid-template-rows: minmax(0, 1.15fr) minmax(0, 0.85fr);
    min-height: 28rem;
    height: 28rem;
  }

  .reservation-layout {
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .reservation-hero {
    min-height: 24rem;
  }

  .contact-info {
    grid-column: span 1;
  }

  .contact-map {
    grid-column: span 1;
  }

  .contact-form {
    grid-column: span 1;
  }

  .contact-map iframe {
    min-height: 24rem;
  }

  .gallery-shell.is-restaurants-panel {
    padding: 1.25rem;
  }

  .gallery-shell.is-restaurants-panel .gallery-grid {
    height: auto;
  }

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

  .gallery-shell.is-club-gallery-panel .gallery-grid {
    grid-auto-columns: minmax(calc((100% - 0.9rem) / 2), calc((100% - 0.9rem) / 2));
    height: 31rem;
  }

  .restaurant-detail {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 820px) and (min-width: 721px) {
  .page {
    padding: 24px;
  }

  .topbar,
  .gallery-shell {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .topbar {
    gap: 0.8rem 0.9rem;
  }

  .nav {
    gap: 0.45rem;
    font-size: 0.66rem;
  }

  .topbar-actions {
    gap: 0.65rem;
  }

  .topbar-actions .social-inline {
    gap: 0.55rem;
  }

  .brand img {
    height: 2.35rem;
  }

  .hero {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .hero-copy {
    left: 2.8rem;
    width: min(100% - 5.6rem, 46rem);
  }

  .hero-kicker {
    font-size: 1.55rem;
  }

  .hero-title {
    font-size: clamp(3.4rem, 8.5vw, 5.6rem);
  }

  .hero-summary p {
    max-width: 24rem;
    font-size: 0.92rem;
  }

  .gallery-grid.is-restaurants,
  .gallery-grid.is-club-gallery,
  .gallery-shell.is-club-gallery-panel .gallery-grid {
    grid-template-columns: none;
  }

  .gallery-shell.is-club-gallery-panel .gallery-grid {
    grid-auto-columns: minmax(calc(100% - 0.6rem), calc(100% - 0.6rem));
    height: 26rem;
    gap: 0.85rem;
  }

  .gallery-shell.is-club-gallery-panel .club-spread-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-shell.is-club-gallery-panel .club-spread-left {
    grid-template-rows: minmax(0, 1fr) minmax(0, 0.82fr);
  }

  .gallery-shell.is-club-gallery-panel .club-spread-right {
    display: none;
  }

  .about-layout {
    grid-template-columns: 1fr;
    max-width: 42rem;
    min-height: auto;
  }

  .about-media-card,
  .about-copy {
    min-height: auto;
  }

  .about-media {
    aspect-ratio: 4 / 5;
  }

  .about-copy {
    gap: 1.5rem;
  }

  .about-copy h2 {
    font-size: clamp(2.6rem, 7vw, 4.3rem);
  }

  .about-text-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .reservation-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .reservation-hero,
  .reservation-form,
  .contact-info,
  .contact-form,
  .contact-map iframe {
    min-height: auto;
  }

  .contact-map {
    grid-column: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-field-full,
  .contact-form-actions,
  .contact-form .reservation-form-label,
  .reservation-field,
  .reservation-field-full,
  .reservation-actions {
    grid-column: auto;
  }
}

@media (max-width: 1080px) and (min-width: 821px) {
  .page {
    padding: 26px;
  }

  .topbar {
    gap: 0.85rem 1rem;
  }

  .nav {
    gap: 0.5rem;
    font-size: 0.69rem;
  }

  .hero-copy {
    width: min(100% - 6.2rem, 50rem);
  }

  .hero-title {
    font-size: clamp(3.7rem, 7.4vw, 6rem);
  }

  .reservation-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .contact-layout {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .contact-info {
    grid-column: span 1;
  }

  .contact-map,
  .contact-form {
    grid-column: span 1;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form-field-full,
  .contact-form-actions {
    grid-column: auto;
  }

  .gallery-grid.is-club-gallery,
  .gallery-shell.is-club-gallery-panel .gallery-grid {
    grid-template-columns: none;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gap: 0px;
    --frame-radius: 0px;
  }

  .page {
    padding: 0;
  }

  .stage,
  .standalone-stage {
    height: 100svh;
    min-height: 100svh;
  }

  .frame-dark,
  .frame-light,
  .standalone-frame,
  .page-transition-layer,
  .page-transition-surface,
  .mobile-menu,
  .mobile-menu-panel {
    border-radius: 0 !important;
  }

  .topbar {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .gallery-shell {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .nav {
    display: none;
  }

  .topbar {
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
    justify-items: stretch;
    align-items: center;
    text-align: left;
  }

  .topbar-actions {
    width: auto;
    justify-self: end;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.7rem;
    position: static;
  }

  .frame-dark .topbar-actions .social-inline,
  .gallery-section .topbar-actions .social-inline {
    right: calc(var(--page-gap) + 1.1rem);
    bottom: calc(var(--page-gap) + 1.45rem);
  }

  .hero {
    min-height: 0;
    padding: 0 1.1rem 1rem;
  }

  .topbar-actions .social-inline {
    display: none;
  }

  .topbar-actions .menu-toggle {
    display: inline-flex;
    width: auto;
    min-height: 2.35rem;
    padding: 0 0.2rem 0 0;
    color: #ffffff;
  }

  .topbar-light .topbar-actions .menu-toggle {
    color: #ffffff;
  }

  .menu-toggle .icon-menu {
    width: 1.15rem;
    height: 1rem;
    color: #ffffff !important;
    background:
      linear-gradient(#ffffff, #ffffff) top left / 100% 2px no-repeat,
      linear-gradient(#ffffff, #ffffff) center / 100% 2px no-repeat,
      linear-gradient(#ffffff, #ffffff) bottom left / 100% 2px no-repeat;
  }

  body.mobile-menu-open .menu-toggle .icon-menu {
    width: 1.15rem;
    height: 1rem;
    background: none;
  }

  body.mobile-menu-open .menu-toggle .icon-menu::before,
  body.mobile-menu-open .menu-toggle .icon-menu::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.15rem;
    height: 2px;
    background: #ffffff;
  }

  body.mobile-menu-open .menu-toggle .icon-menu::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  body.mobile-menu-open .menu-toggle .icon-menu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .lang-switch {
    min-height: 2.35rem;
    margin-right: -1.1rem;
    position: static;
    padding: 0 0.95rem 0 0.8rem;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .topbar .topbar-actions .lang-switch,
  .topbar .topbar-actions .lang-switch button,
  .topbar .topbar-actions .lang-switch span {
    color: #ffffff !important;
  }

  .brand img {
    height: 2.25rem;
  }

  .mobile-menu-panel {
    padding-top: 1.1rem;
  }

  .mobile-menu-links {
    max-width: 18rem;
  }

  .mobile-menu-brand img {
    height: 2.7rem;
  }

  .gallery-shell > .eyebrow {
    display: none;
  }

  .hero-copy {
    left: 1.1rem;
    width: min(100% - 2.2rem, 40rem);
  }

  .hero-eyebrow {
    position: static;
    display: inline-flex;
    margin-bottom: 1rem;
    writing-mode: initial;
    transform: translateY(8px);
  }

  .hero-copy.is-visible .hero-eyebrow {
    transform: translateY(0);
  }

  .hero-kicker {
    font-size: calc(1.3rem + 11pt);
    line-height: 1.15;
  }

  .hero-title {
    font-size: 3.3rem;
  }

  .hero-rule {
    width: 100%;
  }

  .hero-summary p {
    font-size: 0.94rem;
    max-width: 20rem;
  }

  .hero-footer {
    left: 1.1rem;
    right: 1.1rem;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-grid.is-restaurants {
    grid-template-columns: 1fr;
  }

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

  .gallery-shell.is-club-gallery-panel {
    padding: 0.75rem;
  }

  .gallery-shell.is-club-gallery-panel .gallery-grid {
    display: block;
    gap: 0;
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .gallery-shell.is-club-gallery-panel .gallery-grid::-webkit-scrollbar,
  .restaurant-detail-gallery-grid.is-club-collage::-webkit-scrollbar {
    display: none;
  }

  .gallery-shell.is-club-gallery-panel .club-spread {
    height: auto;
    margin-bottom: 0.75rem;
  }

  .gallery-shell.is-club-gallery-panel .club-spread-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gallery-shell.is-club-gallery-panel .club-spread-left {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 13.5rem 9.75rem;
    height: auto;
    gap: 0.75rem;
  }

  .gallery-shell.is-club-gallery-panel .club-spread-right {
    display: block;
    height: auto;
  }

  .gallery-shell.is-club-gallery-panel .club-spread-right .place-card {
    min-height: 16.5rem;
  }

  .gallery-shell.is-club-gallery-panel .club-card,
  .gallery-shell.is-club-gallery-panel .place-card {
    opacity: 1 !important;
    clip-path: inset(0 0 0 0) !important;
    transform: none !important;
    transition: none !important;
  }

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

  .restaurant-detail-gallery-grid.is-club-collage {
    display: block;
    gap: 0;
    height: auto;
    overflow: visible;
  }

  .restaurant-detail-gallery-grid.is-club-collage .club-spread {
    height: auto;
    margin-bottom: 0.75rem;
  }

  .restaurant-detail-gallery-grid.is-club-collage .club-spread-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .restaurant-detail-gallery-grid.is-club-collage .club-spread-left {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 13.5rem 9.75rem;
    height: auto;
    gap: 0.75rem;
  }

  .restaurant-detail-gallery-grid.is-club-collage .club-spread-right {
    display: block;
    height: auto;
  }

  .restaurant-detail-gallery-grid.is-club-collage .club-spread-right .place-card {
    min-height: 16.5rem;
  }

  .restaurant-detail-gallery-grid.is-club-collage .club-card,
  .restaurant-detail-gallery-grid.is-club-collage .place-card {
    opacity: 1 !important;
    clip-path: inset(0 0 0 0) !important;
    transform: none !important;
    transition: none !important;
  }

  .restaurant-detail-intro {
    gap: 0.75rem;
    padding-top: 0;
  }

  .restaurant-detail-logo {
    height: 2.7rem;
  }

  .restaurant-detail-summary {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .gallery-shell.is-events-schedule-panel .gallery-grid {
    padding-top: 0.9rem;
  }

  .gallery-shell.is-about-showcase-panel {
    padding: 0.75rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: auto;
  }

  .about-media-card,
  .about-copy {
    min-height: auto;
  }

  .about-media {
    aspect-ratio: 5 / 4;
  }

  .about-copy {
    gap: 1.2rem;
    padding: 0;
  }

  .about-copy h2 {
    font-size: 2.2rem;
  }

  .about-text-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .events-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: auto;
  }

  .event-item {
    border-radius: 0;
    grid-template-rows: auto;
    min-height: auto;
    height: auto;
  }

  .event-date {
    min-width: 4rem;
  }

  .event-card-media {
    aspect-ratio: 5 / 4;
    min-height: 0;
  }

  .event-card-media .event-date {
    top: 0.85rem;
    left: 0.85rem;
  }

  .event-card-copy {
    padding: 1rem;
  }

  .gallery-shell.is-reservation-form-panel .gallery-grid {
    padding-top: 0;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-shell.is-contact-layout-panel .gallery-grid {
    padding-top: 0.9rem;
  }

  .gallery-shell.is-contact-layout-panel {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .reservation-layout {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.75rem;
  }

  .reservation-form {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    padding: 1.1rem;
    border-radius: 0;
  }

  .reservation-hero {
    display: none;
  }

  .contact-info {
    padding: 1.2rem;
  }

  .contact-layout {
    display: block;
    gap: 0;
    overflow: hidden;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 233, 0.98)),
      #ffffff;
    box-shadow: 0 24px 56px rgba(10, 16, 18, 0.1);
  }

  .contact-info,
  .contact-form,
  .contact-map {
    border-radius: 0;
    box-shadow: none;
  }

  .contact-info {
    padding: 1.2rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 1.2rem;
    background: transparent;
  }

  .contact-form-field-full,
  .contact-form-actions {
    grid-column: auto;
  }

  .contact-map {
    background: transparent;
  }

  .contact-map iframe {
    min-height: 22rem;
  }

  .reservation-field,
  .reservation-field-full,
  .reservation-actions {
    grid-column: auto;
  }

  .gallery-shell.is-reservation-form-panel {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .reservation-layout {
    gap: 0.75rem;
  }

  .gallery-shell.is-restaurants-panel {
    padding: 0.75rem;
  }

  .gallery-shell.is-restaurants-panel .gallery-grid {
    height: auto;
  }

  .gallery-shell.is-restaurants-panel .place-card {
    min-height: auto;
    aspect-ratio: 4 / 2.5;
  }

  .gallery-shell.is-restaurants-panel .place-card img {
    height: 100%;
    object-fit: cover;
  }

  .gallery-shell.is-restaurants-panel .place-card-overlay {
    place-items: start center;
    align-content: start;
    padding: 1rem;
    background: linear-gradient(
      180deg,
      rgba(17, 65, 71, 0.34) 0%,
      rgba(17, 65, 71, 0.16) 36%,
      rgba(17, 65, 71, 0.06) 68%,
      rgba(17, 65, 71, 0) 100%
    );
  }

  .gallery-shell.is-restaurants-panel .place-card:hover .place-card-overlay,
  .gallery-shell.is-restaurants-panel .place-card:focus-within .place-card-overlay {
    background: linear-gradient(
      180deg,
      rgba(17, 65, 71, 0.94) 0%,
      rgba(17, 65, 71, 0.78) 36%,
      rgba(17, 65, 71, 0.58) 68%,
      rgba(17, 65, 71, 0.42) 100%
    );
  }

  .gallery-shell.is-restaurants-panel .place-card-overlay span {
    font-size: 16pt;
    width: min(100%, 12rem);
    text-align: center;
  }

  .gallery-shell.is-club-gallery-panel .place-card {
    aspect-ratio: 4 / 5;
    min-height: auto;
    height: auto;
  }

  .gallery-heading {
    padding-top: 1.5rem;
  }

  .gallery-kicker {
    font-size: 1.3rem;
    line-height: 1.28;
  }

  .gallery-subtitle {
    font-size: 1rem;
  }

  .restaurant-detail-layout,
  .about-layout,
  .events-layout,
  .reservation-layout,
  .contact-layout {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .restaurant-detail {
    gap: 1.25rem;
    padding-top: 1.4rem;
  }

  .restaurant-detail-media {
    min-height: 21rem;
  }

  .lightbox-dialog {
    padding: 2.6rem 1.1rem 1.1rem;
  }

  .lightbox-nav-prev {
    left: max(0.5rem, env(safe-area-inset-left));
  }

  .lightbox-nav-next {
    right: max(0.5rem, env(safe-area-inset-right));
  }

  .lightbox-close {
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
  }

}
