:root {
  --green-950: #06120d;
  --green-900: #0c2418;
  --green-800: #173f2a;
  --green-700: #235437;
  --sage: #a8bea1;
  --sage-soft: #dce5d7;
  --cream: #f7f0e2;
  --cream-2: #e8dec9;
  --charcoal: #0d100d;
  --muted: #c3cbb9;
  --accent: #b99752;
  --accent-dark: #997744;
  --line: rgba(244, 239, 228, 0.16);
  --line-dark: rgba(12, 36, 24, 0.14);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --max: 76rem;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--cream);
  font-family: Optima, Candara, "Avenir Next", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(160deg, rgba(6, 18, 13, 0.96), rgba(12, 36, 24, 0.93) 42%, rgba(8, 10, 8, 1)),
    radial-gradient(circle at 12% 4%, rgba(208, 168, 98, 0.14), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(168, 190, 161, 0.12), transparent 32%);
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-150%);
  background: var(--cream);
  color: var(--green-900);
  padding: 0.75rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  padding: 0.62rem clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 18, 13, 0.76);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.brand img,
.site-footer img {
  width: clamp(4.55rem, 15vw, 5.65rem);
  border-radius: 0;
}

.header-nav {
  display: none;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.header-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.header-nav a:hover {
  color: var(--cream);
}

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

.language-list {
  display: none;
  align-items: center;
  gap: 0.18rem;
  padding: 0.18rem;
  border: 1px solid rgba(244, 239, 228, 0.16);
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.06);
}

.language-list a {
  min-width: 2.15rem;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.language-list a[aria-current="page"] {
  background: var(--cream);
  color: var(--green-900);
}

.language-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.language-select span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.language-select select {
  min-height: 44px;
  min-width: 4.15rem;
  padding: 0 1.8rem 0 0.8rem;
  border: 1px solid rgba(244, 239, 228, 0.22);
  border-radius: 999px;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--cream) 50%) right 0.82rem center / 0.34rem 0.34rem no-repeat,
    linear-gradient(135deg, var(--cream) 50%, transparent 50%) right 0.58rem center / 0.34rem 0.34rem no-repeat,
    rgba(244, 239, 228, 0.08);
  color: var(--cream);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.84rem 1.22rem;
  border: 1px solid rgba(208, 168, 98, 0.84);
  border-radius: 999px;
  background: var(--cream);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  color: #131008;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.button-small {
  min-height: 44px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.button-ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: none;
  border-color: rgba(244, 239, 228, 0.28);
}

.button-ghost:hover {
  background: rgba(244, 239, 228, 0.08);
  border-color: var(--cream);
}

.hero {
  position: relative;
  display: grid;
  gap: clamp(1.8rem, 6vw, 4rem);
  padding: clamp(1.35rem, 5vw, 5rem) clamp(1rem, 5vw, 4rem) clamp(3.25rem, 8vw, 6rem);
  overflow: hidden;
}

.hero::after {
  position: absolute;
  left: clamp(1rem, 5vw, 4rem);
  right: clamp(1rem, 5vw, 4rem);
  bottom: 1.5rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(208, 168, 98, 0.62), transparent);
}

.hero-copy {
  position: relative;
  max-width: 42rem;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: #bdd0b7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 10.8ch;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  margin-bottom: clamp(1rem, 4vw, 1.4rem);
  font-size: clamp(3.65rem, 15vw, 8.9rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 9vw, 5.6rem);
}

h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
}

.hero-text {
  max-width: 35rem;
  color: #d4ddca;
  font-size: clamp(1.05rem, 4vw, 1.35rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: clamp(1.25rem, 4vw, 1.8rem);
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 228, 0.2);
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: var(--green-950);
  isolation: isolate;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 36%, rgba(5, 11, 7, 0.88));
}

.hero-media img {
  width: 100%;
  min-height: clamp(23rem, 78vw, 38rem);
  object-fit: cover;
  transform: scale(1.01);
}

.hero-media figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.22rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(244, 239, 228, 0.36);
  color: var(--cream-2);
  font-size: 0.85rem;
}

.hero-media figcaption span {
  color: var(--cream);
  font-weight: 900;
}

.section {
  padding: clamp(4.4rem, 10vw, 8.5rem) clamp(1rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.section-light {
  background: linear-gradient(180deg, var(--cream), #eee4d2);
  color: var(--green-900);
}

.section-light .eyebrow {
  color: var(--green-700);
}

.section-light p {
  color: #415142;
}

.section-grid,
.location-layout {
  display: grid;
  gap: clamp(1.6rem, 5vw, 3.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.prose {
  color: #d8dece;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  line-height: 1.62;
}

.section-light .prose {
  color: #415142;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto clamp(1.7rem, 5vw, 3rem);
}

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

.section-heading-split p:last-child {
  max-width: 32rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--green-800);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--accent-dark);
  text-underline-offset: 0.32em;
}

.experience-list {
  display: grid;
  gap: 0.75rem;
  max-width: var(--max);
  margin: 0 auto;
  background: transparent;
  border: 0;
}

.experience-list article {
  padding: clamp(1.25rem, 5vw, 1.8rem);
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(23, 63, 42, 0.54), rgba(8, 17, 12, 0.52));
}

.experience-list span {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.experience-list p {
  color: var(--muted);
}

.address-card {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding: clamp(1.25rem, 5vw, 1.75rem);
  border-left: 3px solid var(--accent);
  background: rgba(13, 36, 25, 0.075);
  font-style: normal;
}

.address-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--green-800);
  font-weight: 800;
}

.location-panel {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(13, 36, 25, 0.075);
}

.location-panel summary {
  position: relative;
  min-height: 5rem;
  display: grid;
  gap: 0.35rem;
  padding: clamp(1.15rem, 5vw, 1.55rem);
  cursor: pointer;
  list-style: none;
}

.location-panel summary::-webkit-details-marker {
  display: none;
}

.location-panel summary span {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-panel summary strong {
  color: var(--green-900);
  font-size: clamp(1.1rem, 4vw, 1.45rem);
}

.location-panel summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 1px solid rgba(13, 36, 25, 0.18);
  border-radius: 999px;
  color: var(--green-800);
  font-weight: 900;
}

.location-panel[open] summary::after {
  content: "-";
}

.location-panel[open] summary {
  border-bottom: 1px solid var(--line-dark);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem clamp(1.15rem, 5vw, 1.55rem);
}

.button-map {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-color: var(--green-700);
  color: var(--cream);
}

.button-ghost-dark {
  background: transparent;
  box-shadow: none;
  color: var(--green-900);
  border-color: rgba(13, 36, 25, 0.24);
}

.map-frame {
  min-height: 0;
  background: rgba(13, 36, 25, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: min(68vw, 25rem);
  min-height: 18rem;
  border: 0;
}

.booking-contact {
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(141, 168, 143, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(16, 42, 34, 0.98), rgba(6, 18, 13, 1));
  border-top: 1px solid rgba(245, 241, 234, 0.12);
  color: var(--cream);
}

.booking-contact-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: clamp(1.35rem, 4vw, 2.4rem);
  align-items: center;
}

.booking-contact-copy {
  display: grid;
  gap: 0.85rem;
}

.booking-contact-copy h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--cream);
  font-size: clamp(2rem, 7vw, 4.1rem);
}

.booking-contact-copy p {
  max-width: 42rem;
  margin: 0;
  color: rgba(245, 241, 234, 0.76);
  line-height: 1.68;
}

.booking-contact-copy .booking-note {
  max-width: 38rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(185, 151, 82, 0.42);
  color: rgba(232, 223, 208, 0.78);
  font-size: 0.95rem;
}

[dir="rtl"] .booking-contact-copy .booking-note {
  padding-right: 1rem;
  padding-left: 0;
  border-right: 1px solid rgba(185, 151, 82, 0.42);
  border-left: 0;
}

.booking-contact-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(245, 241, 234, 0.08), rgba(141, 168, 143, 0.05)),
    rgba(9, 32, 25, 0.42);
  box-shadow: inset 0 1px 0 rgba(245, 241, 234, 0.08);
}

.booking-actions {
  display: grid;
  gap: 0.65rem;
}

.booking-cta {
  min-height: 48px;
  justify-content: center;
  border: 1px solid rgba(245, 241, 234, 0.72);
  background:
    linear-gradient(
      115deg,
      rgba(245, 241, 234, 0.98) 0%,
      rgba(232, 223, 208, 0.98) 24%,
      rgba(218, 226, 211, 0.96) 48%,
      rgba(185, 151, 82, 0.18) 67%,
      rgba(245, 241, 234, 0.99) 100%
    );
  background-size: 260% 100%;
  animation: reserveCtaGradientDrift 7.5s ease-in-out infinite;
  color: var(--green-950);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.booking-cta:hover,
.booking-cta:focus-visible {
  animation-duration: 5.8s;
  border-color: rgba(245, 241, 234, 0.96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.booking-cta:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

.booking-cta:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.booking-details {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(245, 241, 234, 0.12);
}

.booking-details div {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
}

.booking-details dt {
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-details dd {
  margin: 0;
}

.booking-details a {
  color: var(--cream);
  font-weight: 800;
  text-decoration: none;
  transition: color 220ms ease;
}

.booking-details a:hover,
.booking-details a:focus-visible {
  color: #fffaf1;
}

.booking-engine-inner {
  align-items: start;
}

.booking-widget {
  display: grid;
  gap: clamp(0.9rem, 2.4vw, 1.15rem);
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(245, 241, 234, 0.09), rgba(141, 168, 143, 0.045)),
    rgba(9, 32, 25, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(245, 241, 234, 0.08),
    0 22px 54px rgba(0, 0, 0, 0.2);
}

.booking-step {
  display: grid;
  gap: 0.7rem;
}

.booking-step-label,
.booking-field span,
.booking-summary span {
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-choice-grid,
.booking-time-grid {
  display: grid;
  gap: 0.5rem;
}

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

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

.booking-choice {
  min-height: 46px;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 999px;
  background: rgba(245, 241, 234, 0.07);
  color: rgba(245, 241, 234, 0.84);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.booking-choice:hover,
.booking-choice:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(245, 241, 234, 0.38);
  background: rgba(245, 241, 234, 0.12);
  color: var(--cream);
}

.booking-choice:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.booking-choice.is-active {
  border-color: rgba(245, 241, 234, 0.72);
  background:
    linear-gradient(115deg, rgba(245, 241, 234, 0.98), rgba(232, 223, 208, 0.96), rgba(218, 226, 211, 0.92));
  color: var(--green-950);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.booking-field-grid {
  display: grid;
  gap: 0.65rem;
}

.booking-field {
  display: grid;
  gap: 0.45rem;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 8px;
  background: rgba(245, 241, 234, 0.08);
  color: var(--cream);
  font: inherit;
  font-size: 1rem;
  padding: 0.78rem 0.85rem;
  outline: none;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.booking-field select option {
  color: var(--green-950);
}

.booking-field textarea {
  min-height: 5.6rem;
  resize: vertical;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(245, 241, 234, 0.46);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: rgba(141, 168, 143, 0.78);
  background: rgba(245, 241, 234, 0.11);
  box-shadow: 0 0 0 3px rgba(141, 168, 143, 0.16);
}

.booking-summary {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border: 1px solid rgba(185, 151, 82, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(185, 151, 82, 0.09), rgba(141, 168, 143, 0.06)),
    rgba(245, 241, 234, 0.05);
}

.booking-summary strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--cream);
  font-size: clamp(1rem, 2.5vw, 1.16rem);
  line-height: 1.35;
}

.booking-summary p {
  margin: 0;
  color: rgba(245, 241, 234, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-line;
}

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

.booking-cta-quiet {
  background:
    linear-gradient(115deg, rgba(141, 168, 143, 0.22), rgba(245, 241, 234, 0.1), rgba(185, 151, 82, 0.1));
  color: var(--cream);
}

.site-footer {
  display: grid;
  gap: 1.5rem;
  padding: 3rem clamp(1rem, 5vw, 4rem) 6.25rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0.35rem;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0.55rem max(0.55rem, env(safe-area-inset-right)) calc(0.55rem + env(safe-area-inset-bottom)) max(0.55rem, env(safe-area-inset-left));
  background: rgba(6, 18, 13, 0.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
}

.mobile-cta a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.09);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 800;
}

.mobile-cta a:first-child {
  background: var(--cream);
  color: #15130e;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0 0.9rem;
  border: 1px solid rgba(244, 239, 228, 0.18);
  border-radius: 999px;
  background: rgba(244, 239, 228, 0.07);
  color: var(--cream);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(244, 239, 228, 0.34);
  background: rgba(244, 239, 228, 0.12);
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.mobile-nav-toggle span:first-child {
  font-size: 1.1rem;
  line-height: 1;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: calc(env(safe-area-inset-top, 0px) + 4.5rem) 0.5rem 0.75rem;
  isolation: isolate;
}

.mobile-nav-overlay[hidden] {
  display: none !important;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 16, 0.56);
  backdrop-filter: blur(5px);
}

.mobile-nav-panel {
  position: relative;
  z-index: 1;
  width: min(34rem, calc(100vw - 1rem));
  max-height: calc(100dvh - 6rem);
  overflow: auto;
  padding: 1rem;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 241, 234, 0.98), rgba(232, 223, 208, 0.98));
  color: var(--green-950);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.mobile-nav-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(9, 32, 25, 0.14);
  border-radius: 999px;
  background: rgba(9, 32, 25, 0.08);
  color: var(--green-950);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

[dir="rtl"] .mobile-nav-close {
  right: auto;
  left: 0.75rem;
}

.mobile-nav-close:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 3px;
}

.mobile-nav-links {
  display: grid;
  gap: 0.5rem;
  padding-top: 2.6rem;
}

.mobile-nav-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  background: rgba(9, 32, 25, 0.04);
  color: var(--green-950);
  font-size: 0.98rem;
  font-weight: 800;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  background: rgba(9, 32, 25, 0.08);
}

body.mobile-nav-open,
html.mobile-nav-open {
  overflow: hidden;
}

@media (min-width: 720px) {
  .header-nav {
    display: flex;
  }

  .language-list {
    display: flex;
  }

  .language-select {
    display: none;
  }

  .section-grid,
  .location-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }

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

  .section-heading-split {
    grid-template-columns: 1fr minmax(18rem, 0.55fr);
    align-items: end;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
    align-items: start;
    padding-bottom: 3rem;
  }

  .mobile-cta {
    display: none;
  }

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

  .mobile-nav-overlay {
    display: none !important;
  }
}

@media (max-width: 719px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }
}

@media (min-width: 1100px) {
  .hero {
    min-height: calc(100svh - 4.25rem);
    padding-top: 4.4rem;
  }

}

@media (max-width: 520px) {
  .site-header {
    gap: 0.65rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .header-nav {
    display: none;
  }

  .site-header .button-small {
    min-width: 5.4rem;
  }

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

  .hero-actions .button-ghost {
    width: auto;
    min-width: 56%;
  }

  .section-light {
    border-top: 0;
  }
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .site-header,
[dir="rtl"] .hero-actions,
[dir="rtl"] .header-actions,
[dir="rtl"] .location-actions {
  direction: rtl;
}

[dir="rtl"] .language-select select {
  padding: 0 0.8rem 0 1.8rem;
  background:
    linear-gradient(45deg, transparent 50%, var(--cream) 50%) left 0.58rem center / 0.34rem 0.34rem no-repeat,
    linear-gradient(135deg, var(--cream) 50%, transparent 50%) left 0.82rem center / 0.34rem 0.34rem no-repeat,
    rgba(244, 239, 228, 0.08);
}

[dir="rtl"] [dir="rtl"] .address-card {
  border-left: 0;
  border-right: 3px solid var(--accent);
}

[dir="rtl"] .location-panel summary::after {
  right: auto;
  left: 1.25rem;
}

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

/* Mercado SantaAna editorial refinements */
:root {
  --green-950: #092019;
  --green-900: #102a22;
  --green-800: #16362c;
  --green-700: #234638;
  --sage: #8da88f;
  --sage-soft: #dfe7db;
  --cream: #f5f1ea;
  --cream-2: #e8dfd0;
  --charcoal: #07110d;
  --muted: #c8d2c4;
  --accent: #b99752;
  --accent-dark: #8e713b;
  --line: rgba(245, 241, 234, 0.18);
  --line-dark: rgba(9, 32, 25, 0.14);
  --shadow: 0 18px 42px rgba(7, 17, 13, 0.22);
}

.site-header {
  position: fixed;
  background: linear-gradient(180deg, rgba(7, 17, 13, 0.78), rgba(7, 17, 13, 0.2));
  border-bottom-color: rgba(245, 241, 234, 0.12);
}

.site-header.is-scrolled {
  background: rgba(9, 32, 25, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.button,
.button-map {
  min-height: 50px;
  border: 1px solid rgba(245, 241, 234, 0.72);
  background: var(--cream);
  box-shadow: 0 10px 24px rgba(7, 17, 13, 0.16);
  color: var(--green-950);
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.button:hover,
.button-map:hover {
  transform: translateY(-1px);
  border-color: var(--cream);
  background: #fffaf1;
  box-shadow: 0 14px 30px rgba(7, 17, 13, 0.2);
}

.button:active,
.button-map:active,
.mobile-cta a:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(7, 17, 13, 0.16);
}

.button:focus-visible,
.language-list a:focus-visible,
.language-select select:focus-visible,
.mobile-cta a:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

.button-ghost {
  background: rgba(245, 241, 234, 0.06);
  color: var(--cream);
  border-color: rgba(245, 241, 234, 0.5);
  box-shadow: none;
}

.button-ghost:hover {
  background: rgba(245, 241, 234, 0.14);
  border-color: var(--cream);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.button-ghost-dark {
  background: transparent;
  color: var(--green-950);
  border-color: rgba(9, 32, 25, 0.32);
  box-shadow: none;
}

.button-ghost-dark:hover {
  background: var(--green-950);
  color: var(--cream);
  border-color: var(--green-950);
}

.language-list a:hover {
  background: rgba(245, 241, 234, 0.12);
  color: var(--cream);
}

.language-list a[aria-current="page"] {
  background: var(--sage);
  color: var(--green-950);
}

.language-select select:hover {
  border-color: rgba(245, 241, 234, 0.5);
  background-color: rgba(245, 241, 234, 0.14);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(7rem, 12vh, 10rem) clamp(1rem, 5vw, 4rem) calc(6rem + env(safe-area-inset-bottom));
  isolation: isolate;
}

.hero::after {
  display: none;
}.hero-copy {
  width: min(100%, 48rem);
  max-width: 48rem;
  padding-bottom: clamp(0.5rem, 3vh, 2rem);
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3.35rem, 13vw, 8.8rem);
}

.hero-text {
  max-width: 38rem;
  color: rgba(245, 241, 234, 0.86);
}

.section-heading-split p:last-child {
  color: inherit;
  opacity: 0.78;
}

.layout-section {
  background: var(--green-950);
  color: var(--cream);
}

.layout-section .eyebrow {
  color: var(--sage);
}

.layout-map,
.location-map,
.atmosphere-frame {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(185, 151, 82, 0.28);
  border-radius: 8px;
  background: rgba(245, 241, 234, 0.06);
}

.layout-map img,
.location-map img,
.atmosphere-frame img,
.atmosphere-frame video {
  width: 100%;
  display: block;
}

.layout-map img,
.location-map img {
  height: auto;
}

.location-editorial {
  background: var(--cream);
}

.location-editorial-grid {
  display: grid;
  gap: clamp(1.6rem, 5vw, 3.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.location-copy address {
  margin-top: 1.25rem;
  color: var(--green-950);
  font-style: normal;
  font-weight: 800;
}

.location-editorial .location-actions {
  padding: 1.25rem 0 0;
}

.location-map {
  border-color: var(--line-dark);
  background: var(--soft-bone, #e8dfd0);
}

.atmosphere-video {
  background: var(--green-900);
}

.atmosphere-frame {
  position: relative;
  aspect-ratio: 16 / 9;
}

.atmosphere-frame img,
.atmosphere-frame video {
  height: 100%;
  object-fit: cover;
}

.atmosphere-frame video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 420ms ease;
}

.atmosphere-frame video.is-ready {
  opacity: 1;
}

.mobile-cta {
  gap: 0.45rem;
  background: rgba(7, 17, 13, 0.94);
}

.mobile-cta a,
.mobile-cta a:first-child {
  border: 1px solid rgba(245, 241, 234, 0.22);
  background: rgba(245, 241, 234, 0.09);
  color: var(--cream);
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.mobile-cta a:first-child {
  background: var(--cream);
  color: var(--green-950);
}

.mobile-cta a:hover {
  border-color: rgba(245, 241, 234, 0.5);
  background: rgba(245, 241, 234, 0.16);
}

.mobile-cta a:first-child:hover {
  background: #fffaf1;
}

@media (min-width: 720px) {
  .hero {
    display: flex;
    align-items: flex-end;
    min-height: 100svh;
    padding-bottom: clamp(4rem, 9vh, 7rem);
  }

  .location-editorial-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .hero {
    min-height: 100svh;
    padding-top: clamp(7rem, 12vh, 10rem);
  }
}

@media (max-width: 520px) {
  .hero {
    padding-bottom: calc(7.2rem + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .atmosphere-frame video {
    display: none;
  }
}

/* Surgical hero/layout repair */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  padding: 0;
  background: var(--green-950);
}

.hero::after {
  display: none;
}

.hero-media,
.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--green-950);
  overflow: hidden;
}

.hero-media::after,
.hero-media figcaption,
.hero-media img {
  display: none !important;
}

.hero-video {
  z-index: 0;
  display: block !important;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  transform: none;
}

.hero-scrim {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 32, 25, 0.88) 0%, rgba(9, 32, 25, 0.62) 38%, rgba(9, 32, 25, 0.24) 72%, rgba(9, 32, 25, 0.5) 100%),
    linear-gradient(0deg, rgba(9, 32, 25, 0.92) 0%, rgba(9, 32, 25, 0.3) 48%, rgba(9, 32, 25, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 92vw);
  padding: clamp(8rem, 12vh, 11rem) clamp(1.25rem, 5vw, 5rem) clamp(5.5rem, 12vh, 8rem);
}

.hero-content h1 {
  max-width: 10.5ch;
  margin-bottom: clamp(1rem, 3vw, 1.35rem);
  font-size: clamp(3rem, 10vw, 7.4rem);
  line-height: 0.96;
}

.hero-content .hero-text {
  max-width: 38rem;
  color: rgba(245, 241, 234, 0.88);
}

.hero-content .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: clamp(1.25rem, 4vw, 1.8rem);
}

.section,
.layout-section,
.location-editorial,
.booking-contact,
.site-footer {
  position: relative;
  z-index: 1;
}

.layout-map,
.location-map,
.atmosphere-frame {
  overflow: hidden;
  max-width: var(--max);
}

.layout-map img,
.location-map img,
.atmosphere-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.location-editorial-grid,
.section-grid,
.experience-list {
  width: min(100%, var(--max));
}

@media (min-width: 720px) {
  .hero {
    min-height: 100svh;
    padding: 0;
  }

  .hero-content {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    width: 100%;
    padding: clamp(7rem, 12vh, 9rem) 1rem calc(7.25rem + env(safe-area-inset-bottom));
  }

  .hero-content h1 {
    font-size: clamp(2.75rem, 13vw, 4.45rem);
  }

  .hero-content .hero-actions .button {
    width: auto;
    min-width: min(100%, 15.5rem);
    min-height: 44px;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .hero-content .hero-actions .button-ghost {
    width: auto;
    min-width: min(100%, 14rem);
    min-height: 44px;
    padding: 0.7rem 1rem;
    font-size: 0.88rem;
    line-height: 1.1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: block !important;
  }
}

/* Final hero video and collapsed map guarantees */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  min-height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
}

.map-disclosure {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.location-map-disclosure {
  width: 100%;
}

.map-disclosure summary {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  list-style: none;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.map-disclosure summary::-webkit-details-marker {
  display: none;
}

.map-disclosure summary::before {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  content: "+";
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--sage);
}

.map-disclosure[open] summary::before {
  content: "-";
}

.map-disclosure .layout-map,
.map-disclosure .location-map {
  margin-top: 0.75rem;
}

.layout-section .map-disclosure summary {
  color: var(--cream);
}

.location-editorial .map-disclosure summary {
  color: var(--green-950);
}

[dir="rtl"] .map-disclosure summary {
  direction: rtl;
}

/* Hero full-bleed override: keep this last so old split-hero rules cannot win. */
.hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  min-height: 100svh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  background: #092019;
  padding: 0;
}

.hero::after {
  display: none;
}

.hero-media,
.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #092019;
}

.hero-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none !important;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  display: block;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.hero-scrim {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(9, 32, 25, 0.9) 0%, rgba(9, 32, 25, 0.68) 35%, rgba(9, 32, 25, 0.28) 68%, rgba(9, 32, 25, 0.52) 100%),
    linear-gradient(0deg, rgba(9, 32, 25, 0.92) 0%, rgba(9, 32, 25, 0.28) 45%, rgba(9, 32, 25, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 92vw);
  max-width: 980px;
  padding: clamp(7rem, 14vh, 11rem) clamp(1.25rem, 5vw, 5rem) clamp(5.75rem, 12vh, 8rem);
  color: #f5f1ea;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-content {
    width: min(100%, 92vw);
    padding: 7rem 1.25rem 6.5rem;
  }

  .hero-video {
    object-position: center center;
  }
}

/* Header + hero interaction refinement */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  width: 100%;
  min-height: 5rem;
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) auto minmax(13rem, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  padding: 0.72rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(185, 151, 82, 0.18);
  background: rgba(6, 20, 16, 0.45);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 20, 16, 0.82);
  border-bottom-color: rgba(185, 151, 82, 0.28);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.site-header .brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header .brand:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.site-header .brand img {
  width: clamp(4.85rem, 8vw, 5.9rem);
}

.header-nav {
  justify-self: center;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(245, 241, 234, 0.09);
  border-radius: 999px;
  background: rgba(245, 241, 234, 0.035);
}

.header-actions {
  justify-self: end;
  gap: clamp(0.55rem, 1.4vw, 0.9rem);
}

.header-nav a,
.language-list a,
.hero .button,
.site-header .button {
  will-change: transform;
}

.header-nav a {
  position: relative;
  color: rgba(245, 241, 234, 0.78);
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.header-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.45rem;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(141, 168, 143, 0), rgba(245, 241, 234, 0.88), rgba(185, 151, 82, 0.45));
  transition: transform 260ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--cream);
  transform: translateY(-1px);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-list {
  border-color: rgba(245, 241, 234, 0.14);
  background: rgba(245, 241, 234, 0.055);
  box-shadow: inset 0 1px 0 rgba(245, 241, 234, 0.05);
}

.language-list a {
  position: relative;
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.language-list a:hover,
.language-list a:focus-visible {
  transform: translateY(-1px);
  background: rgba(245, 241, 234, 0.14);
  color: var(--cream);
}

.language-list a[aria-current="page"] {
  background: rgba(245, 241, 234, 0.9);
  color: var(--green-950);
}

.language-select select {
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.language-select select:hover,
.language-select select:focus-visible {
  border-color: rgba(245, 241, 234, 0.48);
  background-color: rgba(245, 241, 234, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.site-header .button,
.hero .button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(245, 241, 234, 0.72);
  background:
    linear-gradient(115deg, rgba(245, 241, 234, 0.98), rgba(232, 223, 208, 0.96) 42%, rgba(185, 151, 82, 0.34) 72%, rgba(245, 241, 234, 0.98));
  background-size: 220% 100%;
  color: var(--green-950);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-position 600ms ease, color 220ms ease;
}

.site-header .button::before,
.hero .button::before {
  position: absolute;
  inset: -40% auto -40% -35%;
  z-index: -1;
  width: 34%;
  content: "";
  transform: skewX(-18deg) translateX(-140%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0;
  transition: transform 700ms ease, opacity 260ms ease;
}

.site-header .button:hover,
.site-header .button:focus-visible,
.hero .button:hover,
.hero .button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(245, 241, 234, 0.95);
  background-position: 100% 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.site-header .button:hover::before,
.site-header .button:focus-visible::before,
.hero .button:hover::before,
.hero .button:focus-visible::before {
  transform: skewX(-18deg) translateX(430%);
  opacity: 1;
}

.site-header .button:active,
.hero .button:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.hero .button-ghost {
  border-color: rgba(245, 241, 234, 0.46);
  background: rgba(245, 241, 234, 0.075);
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(245, 241, 234, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero .button-ghost:hover,
.hero .button-ghost:focus-visible {
  border-color: rgba(141, 168, 143, 0.78);
  background: rgba(245, 241, 234, 0.15);
  color: var(--cream);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(9, 32, 25, 0.9) 0%, rgba(9, 32, 25, 0.66) 34%, rgba(9, 32, 25, 0.28) 70%, rgba(9, 32, 25, 0.5) 100%),
    linear-gradient(0deg, rgba(9, 32, 25, 0.91) 0%, rgba(9, 32, 25, 0.27) 45%, rgba(9, 32, 25, 0.58) 100%);
}

.hero-content {
  padding-top: clamp(8rem, 15vh, 12rem);
}

@media (max-width: 768px) {
  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 4.65rem;
    padding: 0.62rem 1rem;
    gap: 0.75rem;
  }

  .site-header .brand img {
    width: 4.65rem;
  }

  .header-actions {
    justify-self: end;
    gap: 0.42rem;
  }

  .site-header .button-small {
    min-height: 42px;
    padding-inline: 0.9rem;
  }

  .hero-content {
    padding-top: 7.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header .brand,
  .header-nav a,
  .header-nav a::after,
  .language-list a,
  .language-select select,
  .site-header .button,
  .site-header .button::before,
  .hero .button,
  .hero .button::before,
  .header-nav a::after {
    transition: none !important;
  }
}

@keyframes reserveCtaGradientDrift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.site-header .button,
.hero-content .hero-actions .button:first-child:not(.button-ghost) {
  background:
    linear-gradient(
      115deg,
      rgba(245, 241, 234, 0.98) 0%,
      rgba(232, 223, 208, 0.98) 24%,
      rgba(218, 226, 211, 0.96) 48%,
      rgba(185, 151, 82, 0.22) 67%,
      rgba(245, 241, 234, 0.99) 100%
    );
  background-size: 260% 100%;
  animation: reserveCtaGradientDrift 7.5s ease-in-out infinite;
  border-color: rgba(245, 241, 234, 0.72);
  color: var(--green-950);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.site-header .button:hover,
.site-header .button:focus-visible,
.hero-content .hero-actions .button:first-child:not(.button-ghost):hover,
.hero-content .hero-actions .button:first-child:not(.button-ghost):focus-visible {
  background-size: 300% 100%;
  animation-duration: 5.8s;
  border-color: rgba(245, 241, 234, 0.96);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.site-header .button:active,
.hero-content .hero-actions .button:first-child:not(.button-ghost):active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

@media (prefers-reduced-motion: reduce) {
  .site-header .button,
  .hero-content .hero-actions .button:first-child:not(.button-ghost) {
    animation: none !important;
    background-position: 50% 50%;
  }
}

/* Concept experience cards */
.concept-section {
  background:
    linear-gradient(180deg, #f5f1ea 0%, #ece3d4 100%);
  color: var(--green-950);
}

.concept-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: clamp(2.25rem, 5vw, 4.5rem);
}

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

.concept-copy h2 {
  max-width: 11ch;
}

.concept-copy .prose {
  max-width: 43rem;
  color: #405246;
}

.concept-copy .text-link {
  position: relative;
  width: fit-content;
  min-height: 42px;
  margin-top: 0.35rem;
  padding: 0.56rem 0.9rem 0.56rem 1rem;
  border: 1px solid rgba(35, 70, 56, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.84), rgba(232, 223, 208, 0.52));
  color: var(--green-900);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(9, 32, 25, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.concept-copy .text-link::after {
  content: "\2192";
  display: inline-block;
  margin-left: 0.55rem;
  color: var(--accent-dark);
  font-weight: 900;
  transform: translateX(0);
  transition: transform 220ms ease, color 220ms ease;
}

[dir="rtl"] .concept-copy .text-link::after {
  content: "\2190";
  margin-right: 0.55rem;
  margin-left: 0;
}

.concept-copy .text-link:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 151, 82, 0.52);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(222, 234, 219, 0.56));
  color: var(--green-950);
  box-shadow: 0 15px 34px rgba(9, 32, 25, 0.12);
}

.concept-copy .text-link:hover::after {
  color: var(--green-800);
  transform: translateX(3px);
}

[dir="rtl"] .concept-copy .text-link:hover::after {
  transform: translateX(-3px);
}

.concept-copy .text-link:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
  border-color: rgba(141, 168, 143, 0.8);
}

.concept-copy .text-link:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(9, 32, 25, 0.1);
}

.concept-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.15rem, 3vw, 1.6rem);
}

.concept-card {
  overflow: hidden;
  border: 1px solid rgba(9, 32, 25, 0.15);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 16px 38px rgba(9, 32, 25, 0.1);
  outline: 0;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}

.concept-card-media {
  position: relative;
  overflow: hidden;
  background: var(--green-900);
}

.concept-card-media::after {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(185, 151, 82, 0), rgba(185, 151, 82, 0.72), rgba(141, 168, 143, 0));
}

.concept-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.concept-card-body {
  display: grid;
  gap: 0.45rem;
  padding: clamp(1.1rem, 4vw, 1.45rem);
}

.concept-card-body span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.concept-card-body h3 {
  margin: 0;
  color: var(--green-950);
  transition: color 260ms ease;
}

.concept-card-body p {
  margin: 0;
  color: #4b5d50;
}

.concept-card:hover,
.concept-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(35, 70, 56, 0.42);
  background: rgba(255, 252, 246, 0.94);
  box-shadow: 0 22px 48px rgba(9, 32, 25, 0.14);
}

.concept-card:hover img,
.concept-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.concept-card:hover h3,
.concept-card:focus-visible h3 {
  color: var(--green-700);
}

.concept-card:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

@media (min-width: 860px) {
  .concept-layout {
    grid-template-columns: minmax(18rem, 0.64fr) minmax(0, 1.36fr);
    align-items: center;
  }

  .concept-copy {
    position: sticky;
    top: 7rem;
    align-self: center;
  }

  .concept-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    padding-top: clamp(0.75rem, 3vw, 1.75rem);
  }

  .concept-card:nth-child(2) {
    margin-top: 1.45rem;
  }

  .concept-card:nth-child(3) {
    margin-top: 2.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .concept-card,
  .concept-card img,
  .concept-card-body h3,
  .concept-copy .text-link,
  .concept-copy .text-link::after {
    transition: none !important;
  }
}

/* Food and experiences section */
.experiences-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(141, 168, 143, 0.16), transparent 28rem),
    linear-gradient(180deg, #092019 0%, #102a22 54%, #071814 100%);
  color: var(--cream);
}

.experiences-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(185, 151, 82, 0.12), transparent 22%, transparent 78%, rgba(141, 168, 143, 0.08));
  opacity: 0.65;
}

.experiences-section > * {
  position: relative;
  z-index: 1;
}

.experiences-heading {
  display: grid;
  gap: 1.4rem;
}

.experiences-heading h2 {
  max-width: 13ch;
}

.experience-cta {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  min-height: 42px;
  padding: 0.55rem 0.9rem 0.55rem 1rem;
  border: 1px solid rgba(245, 241, 234, 0.2);
  border-radius: 999px;
  background: rgba(245, 241, 234, 0.06);
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 252, 246, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.experience-cta::after {
  content: "\2192";
  display: inline-block;
  margin-left: 0.55rem;
  color: var(--accent);
  transition: transform 220ms ease, color 220ms ease;
}

[dir="rtl"] .experience-cta::after {
  content: "\2190";
  margin-right: 0.55rem;
  margin-left: 0;
}

.experience-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 151, 82, 0.44);
  background: rgba(245, 241, 234, 0.1);
  color: #fffaf0;
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 246, 0.12),
    0 14px 32px rgba(0, 0, 0, 0.18);
}

.experience-cta:hover::after {
  color: var(--cream);
  transform: translateX(3px);
}

[dir="rtl"] .experience-cta:hover::after {
  transform: translateX(-3px);
}

.experience-cta:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
  border-color: rgba(141, 168, 143, 0.8);
}

.experience-cta:active {
  transform: translateY(0);
}

.experiences-section .experience-list {
  gap: clamp(1rem, 2.6vw, 1.35rem);
}

.experiences-section .experience-list article {
  position: relative;
  min-height: 15rem;
  padding: clamp(1.35rem, 4vw, 2rem);
  overflow: hidden;
  border-color: rgba(245, 241, 234, 0.16);
  background:
    linear-gradient(145deg, rgba(35, 70, 56, 0.72), rgba(8, 24, 19, 0.76)),
    linear-gradient(180deg, rgba(245, 241, 234, 0.06), transparent);
  box-shadow:
    inset 0 1px 0 rgba(245, 241, 234, 0.07),
    0 18px 46px rgba(0, 0, 0, 0.16);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.experiences-section .experience-list article::before {
  position: absolute;
  top: 0;
  right: 1.35rem;
  left: 1.35rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(185, 151, 82, 0), rgba(185, 151, 82, 0.62), rgba(141, 168, 143, 0));
  opacity: 0.8;
}

.experiences-section .experience-list article::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(245, 241, 234, 0.06) 42%, transparent 70%);
  opacity: 0;
  transform: translateX(-12%);
  transition: opacity 240ms ease, transform 520ms ease;
}

[dir="rtl"] .experiences-section .experience-list article::after {
  transform: translateX(12%);
}

.experiences-section .experience-list span {
  margin-bottom: clamp(1.35rem, 4vw, 2.25rem);
  color: rgba(232, 223, 208, 0.72);
}

.experiences-section .experience-list h3 {
  margin: 0 0 0.7rem;
  color: var(--cream);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  transition: color 240ms ease;
}

.experiences-section .experience-list p {
  max-width: 24rem;
  color: rgba(245, 241, 234, 0.72);
}

.experiences-section .experience-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 151, 82, 0.42);
  background:
    linear-gradient(145deg, rgba(43, 82, 65, 0.78), rgba(9, 32, 25, 0.82)),
    linear-gradient(180deg, rgba(245, 241, 234, 0.08), transparent);
  box-shadow:
    inset 0 1px 0 rgba(245, 241, 234, 0.1),
    0 24px 54px rgba(0, 0, 0, 0.22);
}

.experiences-section .experience-list article:hover::after {
  opacity: 1;
  transform: translateX(12%);
}

[dir="rtl"] .experiences-section .experience-list article:hover::after {
  transform: translateX(-12%);
}

.experiences-section .experience-list article:hover h3 {
  color: #fffaf0;
}

@media (min-width: 720px) {
  .experiences-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .experiences-section .experience-list {
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-cta,
  .experience-cta::after,
  .experiences-section .experience-list article,
  .experiences-section .experience-list article::after,
  .experiences-section .experience-list h3 {
    transition: none !important;
  }
}

/* Editorial food experience mosaic */
.food-experience-section {
  background:
    radial-gradient(circle at 88% 18%, rgba(141, 168, 143, 0.15), transparent 24rem),
    radial-gradient(circle at 8% 84%, rgba(185, 151, 82, 0.1), transparent 20rem),
    linear-gradient(180deg, #092019 0%, #102a22 52%, #071814 100%);
}

.food-experience-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: clamp(2.2rem, 6vw, 5rem);
  align-items: center;
}

.food-experience-copy {
  display: grid;
  gap: clamp(1rem, 2.8vw, 1.45rem);
}

.food-experience-copy h2 {
  max-width: 10ch;
}

.food-experience-text {
  display: grid;
  gap: 0.85rem;
  max-width: 42rem;
}

.food-experience-text p {
  margin: 0;
  color: rgba(245, 241, 234, 0.76);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.72;
}

.food-experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.35rem;
}

.food-primary-cta {
  min-height: 48px;
  border: 1px solid rgba(245, 241, 234, 0.72);
  background:
    linear-gradient(
      115deg,
      rgba(245, 241, 234, 0.98) 0%,
      rgba(232, 223, 208, 0.98) 24%,
      rgba(218, 226, 211, 0.96) 48%,
      rgba(185, 151, 82, 0.2) 67%,
      rgba(245, 241, 234, 0.99) 100%
    );
  background-size: 260% 100%;
  animation: reserveCtaGradientDrift 7.5s ease-in-out infinite;
  color: var(--green-950);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.food-primary-cta:hover,
.food-primary-cta:focus-visible {
  animation-duration: 5.8s;
  border-color: rgba(245, 241, 234, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.food-primary-cta:active {
  transform: translateY(0);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.food-secondary-cta {
  min-height: 48px;
}

.food-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2.6vw, 1rem);
}

.food-tile {
  position: relative;
  min-height: 10rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: 8px;
  background: var(--green-950);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  isolation: isolate;
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.food-tile::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 32, 25, 0.04) 0%, rgba(9, 32, 25, 0.12) 45%, rgba(9, 32, 25, 0.58) 100%);
  opacity: 0.88;
  transition: opacity 280ms ease;
}

.food-tile img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.food-tile-large {
  grid-column: 1 / -1;
  min-height: clamp(18rem, 52vw, 30rem);
}

.food-tile-large img {
  aspect-ratio: 16 / 11;
}

.food-tile figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.75rem;
  z-index: 2;
  padding: 0.35rem 0.62rem;
  border: 1px solid rgba(245, 241, 234, 0.2);
  border-radius: 999px;
  background: rgba(9, 32, 25, 0.58);
  color: rgba(245, 241, 234, 0.88);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease,
    color 260ms ease;
}

[dir="rtl"] .food-tile figcaption {
  right: auto;
  left: 0.8rem;
}

.food-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 151, 82, 0.38);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.26);
}

.food-tile:hover::after {
  opacity: 0.72;
}

.food-tile:hover img {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);
}

.food-tile:hover figcaption {
  transform: translateY(-2px);
  border-color: rgba(185, 151, 82, 0.45);
  background: rgba(9, 32, 25, 0.72);
  color: var(--cream);
}

@media (min-width: 860px) {
  .food-experience-layout {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  }

  .food-experience-copy {
    align-self: center;
  }

  .food-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(6, minmax(4.2rem, 1fr));
    gap: clamp(0.85rem, 1.4vw, 1.15rem);
    min-height: clamp(31rem, 48vw, 40rem);
  }

  .food-tile {
    min-height: 0;
  }

  .food-tile img,
  .food-tile-large img {
    aspect-ratio: auto;
  }

  .food-tile-large {
    grid-column: 1 / span 4;
    grid-row: 1 / span 4;
    min-height: 0;
  }

  .food-tile:nth-child(2) {
    grid-column: 5 / span 2;
    grid-row: 1 / span 2;
  }

  .food-tile:nth-child(3) {
    grid-column: 5 / span 2;
    grid-row: 3 / span 2;
  }

  .food-tile:nth-child(4) {
    grid-column: 1 / span 3;
    grid-row: 5 / span 2;
  }

  .food-tile:nth-child(5) {
    grid-column: 4 / span 3;
    grid-row: 5 / span 2;
  }
}

@media (max-width: 520px) {
  .food-mosaic {
    grid-template-columns: 1fr;
  }

  .food-tile,
  .food-tile-large {
    grid-column: auto;
    min-height: 14rem;
  }

  .food-tile-large {
    min-height: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .food-primary-cta,
  .food-tile,
  .food-tile::after,
  .food-tile img,
  .food-tile figcaption {
    animation: none !important;
    transition: none !important;
  }
}

/* Food editorial reel */
@keyframes foodReelKenBurns {
  0% {
    transform: scale(1) translate3d(0, 0, 0) rotate(0deg);
  }

  100% {
    transform: scale(1.045) translate3d(0.55%, -0.45%, 0) rotate(0.18deg);
  }
}

@keyframes foodReelProgress {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

.food-reel {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1rem);
  min-width: 0;
}

.food-reel-stage {
  position: relative;
  min-height: clamp(22rem, 62vw, 34rem);
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 10px;
  background: var(--green-950);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.food-reel-stage::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 32, 25, 0.02) 0%, rgba(9, 32, 25, 0.12) 48%, rgba(9, 32, 25, 0.62) 100%);
}

.food-reel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.012);
  transition:
    opacity 700ms ease,
    visibility 700ms ease,
    transform 780ms ease;
}

.food-reel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.food-reel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: 50% 50%;
}

.food-reel-slide.is-active img {
  animation: foodReelKenBurns 3000ms ease-out forwards;
}

.food-reel-slide figcaption {
  position: absolute;
  right: clamp(0.9rem, 2.4vw, 1.25rem);
  bottom: clamp(0.9rem, 2.4vw, 1.25rem);
  z-index: 3;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(245, 241, 234, 0.22);
  border-radius: 999px;
  background: rgba(9, 32, 25, 0.62);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

[dir="rtl"] .food-reel-slide figcaption {
  right: auto;
  left: clamp(0.9rem, 2.4vw, 1.25rem);
}

.food-reel-controls {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.42rem, 1.7vw, 0.72rem);
}

.food-reel-thumb {
  position: relative;
  min-width: 0;
  min-height: 4.4rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: 8px;
  background: rgba(245, 241, 234, 0.06);
  color: var(--cream);
  cursor: pointer;
  isolation: isolate;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.food-reel-thumb::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(9, 32, 25, 0.1), rgba(9, 32, 25, 0.68));
  transition: opacity 220ms ease;
}

.food-reel-thumb img {
  width: 100%;
  height: 100%;
  min-height: 4.4rem;
  display: block;
  object-fit: cover;
  opacity: 0.72;
  transform: scale(1.02);
  transition:
    opacity 220ms ease,
    transform 320ms ease,
    filter 320ms ease;
}

.food-reel-thumb span {
  position: absolute;
  right: 0.42rem;
  bottom: 0.38rem;
  left: 0.42rem;
  z-index: 2;
  overflow: hidden;
  color: rgba(245, 241, 234, 0.84);
  font-size: clamp(0.62rem, 1.8vw, 0.72rem);
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.food-reel-thumb:hover,
.food-reel-thumb:focus-visible,
.food-reel-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(185, 151, 82, 0.5);
  background: rgba(245, 241, 234, 0.1);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.food-reel-thumb:hover img,
.food-reel-thumb:focus-visible img,
.food-reel-thumb.is-active img {
  opacity: 0.96;
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.02);
}

.food-reel-thumb:hover span,
.food-reel-thumb:focus-visible span,
.food-reel-thumb.is-active span {
  color: var(--cream);
}

.food-reel-thumb:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

.food-reel-thumb.is-active::before {
  position: absolute;
  top: 0;
  right: 0.55rem;
  left: 0.55rem;
  z-index: 3;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(185, 151, 82, 0), rgba(185, 151, 82, 0.82), rgba(141, 168, 143, 0));
  transform: scaleX(0);
  transform-origin: left center;
  animation: foodReelProgress 3000ms linear forwards;
}

[dir="rtl"] .food-reel-thumb.is-active::before {
  transform-origin: right center;
}

.food-reel:hover .food-reel-slide.is-active img,
.food-reel:focus-within .food-reel-slide.is-active img,
.food-reel:hover .food-reel-thumb.is-active::before,
.food-reel:focus-within .food-reel-thumb.is-active::before {
  animation-play-state: paused;
}

@media (min-width: 860px) {
  .food-reel-stage {
    min-height: clamp(31rem, 48vw, 40rem);
  }
}

@media (max-width: 520px) {
  .food-reel-stage {
    min-height: 21rem;
  }

  .food-reel-controls {
    gap: 0.45rem;
  }

  .food-reel-thumb {
    min-height: 3.75rem;
  }

  .food-reel-thumb img {
    min-height: 3.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .food-reel-slide,
  .food-reel-slide img,
  .food-reel-thumb,
  .food-reel-thumb img,
  .food-reel-thumb::before,
  .food-reel-thumb::after {
    animation: none !important;
    transition: none !important;
  }

  .food-reel-slide.is-active img {
    transform: none !important;
  }
}

/* Premium market layout discovery */
.market-discovery {
  background:
    radial-gradient(circle at 12% 20%, rgba(141, 168, 143, 0.14), transparent 24rem),
    linear-gradient(180deg, #092019 0%, #102a22 58%, #071814 100%);
  color: var(--cream);
}

.market-discovery-panel {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.market-discovery-summary {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.6rem);
  align-items: center;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(35, 70, 56, 0.72), rgba(8, 24, 19, 0.72)),
    linear-gradient(180deg, rgba(245, 241, 234, 0.06), transparent);
  box-shadow:
    inset 0 1px 0 rgba(245, 241, 234, 0.08),
    0 22px 54px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  list-style: none;
  transition:
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.market-discovery-summary::-webkit-details-marker {
  display: none;
}

.market-discovery-summary::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(245, 241, 234, 0.06) 44%, transparent 72%);
  opacity: 0;
  transform: translateX(-16%);
  transition: opacity 260ms ease, transform 620ms ease;
}

[dir="rtl"] .market-discovery-summary::before {
  transform: translateX(16%);
}

.market-discovery-panel[open] .market-discovery-summary,
.market-discovery-summary:hover,
.market-discovery-summary:focus-visible {
  border-color: rgba(185, 151, 82, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(245, 241, 234, 0.1),
    0 26px 62px rgba(0, 0, 0, 0.24);
}

.market-discovery-summary:hover::before,
.market-discovery-summary:focus-visible::before {
  opacity: 1;
  transform: translateX(14%);
}

[dir="rtl"] .market-discovery-summary:hover::before,
[dir="rtl"] .market-discovery-summary:focus-visible::before {
  transform: translateX(-14%);
}

.market-discovery-summary:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 5px;
}

.market-discovery-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.85rem;
}

.market-discovery-title {
  display: block;
  max-width: 13ch;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5.4vw, 4.9rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.market-discovery-text,
.market-discovery-note {
  max-width: 38rem;
  color: rgba(245, 241, 234, 0.78);
  font-size: clamp(1rem, 2.3vw, 1.14rem);
  line-height: 1.65;
}

.market-discovery-note {
  color: rgba(232, 223, 208, 0.68);
}

.market-discovery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.market-discovery-tags span {
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: 999px;
  background: rgba(245, 241, 234, 0.06);
  color: rgba(245, 241, 234, 0.8);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.market-discovery-preview {
  position: relative;
  z-index: 1;
  min-height: clamp(11rem, 28vw, 18rem);
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 241, 234, 0.1), rgba(141, 168, 143, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 17%, rgba(245, 241, 234, 0.07) 17% 17.5%, transparent 17.5% 34%),
    repeating-linear-gradient(0deg, transparent 0 24%, rgba(185, 151, 82, 0.08) 24% 24.5%, transparent 24.5% 48%);
}

.market-discovery-preview::before {
  position: absolute;
  inset: 14%;
  content: "";
  border: 1px solid rgba(185, 151, 82, 0.32);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.market-discovery-preview span {
  position: absolute;
  width: clamp(2.4rem, 6vw, 4.2rem);
  height: clamp(2.4rem, 6vw, 4.2rem);
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 50%;
  background: rgba(9, 32, 25, 0.5);
  box-shadow: inset 0 1px 0 rgba(245, 241, 234, 0.08);
}

.market-discovery-preview span:nth-child(1) {
  top: 17%;
  left: 18%;
}

.market-discovery-preview span:nth-child(2) {
  top: 26%;
  right: 18%;
}

.market-discovery-preview span:nth-child(3) {
  right: 30%;
  bottom: 18%;
}

.market-discovery-preview span:nth-child(4) {
  bottom: 24%;
  left: 28%;
}

.market-discovery-toggle {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.74rem 1.1rem;
  border: 1px solid rgba(245, 241, 234, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(
      115deg,
      rgba(245, 241, 234, 0.98) 0%,
      rgba(232, 223, 208, 0.98) 24%,
      rgba(218, 226, 211, 0.96) 48%,
      rgba(185, 151, 82, 0.2) 67%,
      rgba(245, 241, 234, 0.99) 100%
    );
  background-size: 260% 100%;
  animation: reserveCtaGradientDrift 7.5s ease-in-out infinite;
  color: var(--green-950);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.market-discovery-toggle::after {
  content: "+";
  margin-left: 0.62rem;
  color: var(--green-800);
  font-size: 1.05rem;
  line-height: 1;
}

[dir="rtl"] .market-discovery-toggle::after {
  margin-right: 0.62rem;
  margin-left: 0;
}

.market-discovery-panel[open] .market-discovery-toggle::after {
  content: "-";
}

.market-discovery-panel .toggle-open,
.market-discovery-panel[open] .toggle-closed {
  display: none;
}

.market-discovery-panel[open] .toggle-open {
  display: inline;
}

.market-discovery-map {
  padding-top: clamp(1rem, 3vw, 1.35rem);
  animation: marketMapReveal 360ms ease both;
}

.market-video-frame {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(245, 241, 234, 0.08), rgba(141, 168, 143, 0.05)),
    var(--green-950);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}

.market-map-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: rgba(245, 241, 234, 0.96);
  object-fit: contain;
}

.market-detail-panel {
  margin-top: clamp(0.85rem, 2.4vw, 1.1rem);
}

.market-detail-toggle {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 999px;
  background: rgba(245, 241, 234, 0.07);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
  list-style: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.market-detail-toggle::-webkit-details-marker {
  display: none;
}

.market-detail-toggle::before {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(185, 151, 82, 0.38);
  border-radius: 999px;
  content: "+";
  color: var(--accent);
  line-height: 1;
}

.market-detail-panel[open] .market-detail-toggle::before {
  content: "-";
}

.market-detail-toggle:hover,
.market-detail-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(185, 151, 82, 0.42);
  background: rgba(245, 241, 234, 0.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.market-detail-toggle:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

.market-detail-panel .detail-open,
.market-detail-panel[open] .detail-closed {
  display: none;
}

.market-detail-panel[open] .detail-open {
  display: inline;
}

.market-detail-map {
  margin-top: 0.85rem;
  animation: marketMapReveal 300ms ease both;
}

@keyframes marketMapReveal {
  from {
    opacity: 0;
    transform: translateY(-0.45rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.market-discovery .layout-map {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 10px;
  background: rgba(245, 241, 234, 0.96);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}

.market-discovery .layout-map img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.market-discovery .market-detail-map {
  margin-top: 0.85rem;
}

@media (min-width: 860px) {
  .market-discovery-summary {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.52fr);
  }

  .market-discovery-toggle {
    grid-column: 1;
  }
}

@media (max-width: 700px) {
  .market-discovery-summary {
    padding: 1.25rem;
  }

  .market-discovery-preview {
    min-height: 9rem;
  }

  .market-discovery-toggle {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .market-discovery-summary,
  .market-discovery-summary::before,
  .market-discovery-toggle,
  .market-discovery-map,
  .market-detail-toggle,
  .market-detail-map {
    animation: none !important;
    transition: none !important;
  }
}

/* Premium location showcase */
.location-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(141, 168, 143, 0.14), transparent 24rem),
    radial-gradient(circle at 12% 86%, rgba(185, 151, 82, 0.1), transparent 20rem),
    linear-gradient(180deg, #071814 0%, #102a22 52%, #092019 100%);
  color: var(--cream);
}

.location-showcase-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.location-showcase-copy {
  display: grid;
  gap: clamp(1rem, 2.7vw, 1.35rem);
}

.location-showcase-copy h2 {
  max-width: 12ch;
}

.location-showcase-copy p {
  max-width: 42rem;
  margin: 0;
  color: rgba(245, 241, 234, 0.76);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.72;
}

.location-address-card {
  display: grid;
  gap: 0.45rem;
  width: min(100%, 34rem);
  padding: clamp(1rem, 3vw, 1.25rem);
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 241, 234, 0.08), rgba(141, 168, 143, 0.05)),
    rgba(9, 32, 25, 0.36);
  box-shadow: inset 0 1px 0 rgba(245, 241, 234, 0.08);
}

.location-address-card span {
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-address-card address {
  color: var(--cream);
  font-style: normal;
  font-size: clamp(1.05rem, 2.6vw, 1.28rem);
  font-weight: 800;
  line-height: 1.35;
}

.location-highlights {
  display: grid;
  gap: 0;
  width: min(100%, 38rem);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(245, 241, 234, 0.14);
  list-style: none;
}

.location-highlights li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.12);
  color: rgba(245, 241, 234, 0.84);
  font-weight: 750;
}

.location-highlights span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.location-showcase .location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin-top: 0.15rem;
}

.location-showcase .location-cta {
  min-height: 48px;
  border: 1px solid rgba(245, 241, 234, 0.72);
  background:
    linear-gradient(
      115deg,
      rgba(245, 241, 234, 0.98) 0%,
      rgba(232, 223, 208, 0.98) 24%,
      rgba(218, 226, 211, 0.96) 48%,
      rgba(185, 151, 82, 0.2) 67%,
      rgba(245, 241, 234, 0.99) 100%
    );
  background-size: 260% 100%;
  animation: reserveCtaGradientDrift 7.5s ease-in-out infinite;
  color: var(--green-950);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.location-showcase .location-cta:hover,
.location-showcase .location-cta:focus-visible {
  animation-duration: 5.8s;
  border-color: rgba(245, 241, 234, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.location-showcase .location-cta:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

.location-showcase .location-cta:active {
  transform: translateY(0);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.location-visual-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 234, 0.16);
  border-radius: 10px;
  background: rgba(245, 241, 234, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 24px 58px rgba(0, 0, 0, 0.22);
  isolation: isolate;
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.location-visual-panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 32, 25, 0) 46%, rgba(9, 32, 25, 0.42) 100%);
}

.location-visual-panel img {
  width: 100%;
  min-height: clamp(19rem, 48vw, 34rem);
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 560ms ease, filter 560ms ease;
}

.location-visual-panel figcaption {
  position: absolute;
  right: clamp(0.85rem, 2.5vw, 1.2rem);
  bottom: clamp(0.85rem, 2.5vw, 1.2rem);
  z-index: 2;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(245, 241, 234, 0.22);
  border-radius: 999px;
  background: rgba(9, 32, 25, 0.66);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

[dir="rtl"] .location-visual-panel figcaption {
  right: auto;
  left: clamp(0.85rem, 2.5vw, 1.2rem);
}

.location-visual-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 151, 82, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 30px 68px rgba(0, 0, 0, 0.26);
}

.location-visual-panel:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

@media (min-width: 860px) {
  .location-showcase-grid {
    grid-template-columns: minmax(18rem, 0.86fr) minmax(0, 1.14fr);
  }

  .booking-contact-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.62fr);
  }

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

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

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

@media (max-width: 700px) {
  .location-showcase .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .location-showcase .location-cta {
    width: 100%;
  }

  .location-visual-panel img {
    min-height: 21rem;
  }

  .booking-contact {
    padding-top: 2.25rem;
    padding-bottom: 2.5rem;
  }

  .booking-contact-copy h2 {
    max-width: 15ch;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .location-showcase .location-cta,
  .location-visual-panel,
  .location-visual-panel img,
  .booking-cta {
    animation: none !important;
    transition: none !important;
  }

  .booking-choice {
    transition: none !important;
  }
}

/* Premium menu browser */
.menu-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(141, 168, 143, 0.14), transparent 23rem),
    linear-gradient(180deg, #f5f1ea 0%, #e8dfd0 100%);
  color: var(--green-950);
}

.menu-section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: clamp(1.35rem, 4vw, 2.2rem);
}

.menu-section-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 46rem;
}

.menu-section-heading .eyebrow {
  color: var(--green-700);
}

.menu-section-heading h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--green-950);
}

.menu-section-heading p {
  margin: 0;
  color: rgba(9, 32, 25, 0.72);
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.7;
}

.menu-browser {
  display: grid;
  gap: 1rem;
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.4rem;
  border: 1px solid rgba(9, 32, 25, 0.2);
  border-radius: 999px;
  background: rgba(9, 32, 25, 0.11);
}

.menu-tab {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(245, 241, 234, 0.5);
  color: rgba(9, 32, 25, 0.82);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.menu-tab:hover,
.menu-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(9, 32, 25, 0.2);
  background: rgba(255, 250, 241, 0.78);
  color: var(--green-950);
}

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

.menu-tab.is-active {
  background:
    linear-gradient(115deg, rgba(9, 32, 25, 0.98), rgba(35, 70, 56, 0.98), rgba(16, 42, 34, 0.96));
  border-color: rgba(9, 32, 25, 0.58);
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(9, 32, 25, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.menu-tab.is-active:hover,
.menu-tab.is-active:focus-visible {
  background:
    linear-gradient(115deg, rgba(16, 42, 34, 1), rgba(35, 70, 56, 1), rgba(9, 32, 25, 0.98));
  border-color: rgba(185, 151, 82, 0.38);
  color: var(--green-950);
  color: var(--cream);
  box-shadow: 0 16px 34px rgba(9, 32, 25, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.menu-panel {
  animation: menuPanelReveal 260ms ease both;
}

@keyframes menuPanelReveal {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.menu-option {
  min-height: 11.5rem;
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: clamp(0.9rem, 3vw, 1.1rem);
  border: 1px solid rgba(9, 32, 25, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.72), rgba(141, 168, 143, 0.1)),
    rgba(245, 241, 234, 0.54);
  box-shadow: 0 14px 34px rgba(9, 32, 25, 0.08);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

.menu-option:hover,
.menu-option:focus-within {
  transform: translateY(-2px);
  border-color: rgba(185, 151, 82, 0.36);
  box-shadow: 0 18px 42px rgba(9, 32, 25, 0.12);
}

.menu-option span {
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.menu-option h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.02rem, 3.5vw, 1.22rem);
  line-height: 1.15;
}

.menu-option p {
  margin: 0;
  color: rgba(9, 32, 25, 0.68);
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-option-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.menu-mini-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.68rem;
  border: 1px solid rgba(9, 32, 25, 0.24);
  border-radius: 999px;
  background: rgba(9, 32, 25, 0.1);
  color: var(--green-950);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.menu-mini-action:hover,
.menu-mini-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(9, 32, 25, 0.42);
  background: rgba(9, 32, 25, 0.16);
  box-shadow: 0 10px 22px rgba(9, 32, 25, 0.1);
}

.menu-mini-action:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 3px;
}

.menu-mini-action.is-disabled {
  opacity: 0.72;
  cursor: not-allowed;
  background: rgba(9, 32, 25, 0.045);
  color: rgba(9, 32, 25, 0.58);
}

.menu-pdf-action,
.menu-full-cta {
  border-color: rgba(9, 32, 25, 0.54);
  background:
    linear-gradient(115deg, rgba(9, 32, 25, 0.98), rgba(35, 70, 56, 0.98), rgba(16, 42, 34, 0.96));
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(9, 32, 25, 0.16);
}

.menu-pdf-action:hover,
.menu-pdf-action:focus-visible,
.menu-full-cta:hover,
.menu-full-cta:focus-visible {
  border-color: rgba(185, 151, 82, 0.42);
  background:
    linear-gradient(115deg, rgba(16, 42, 34, 1), rgba(35, 70, 56, 1), rgba(9, 32, 25, 0.98));
  color: var(--cream);
  box-shadow: 0 14px 30px rgba(9, 32, 25, 0.2);
}

.menu-full-cta {
  width: fit-content;
  margin-top: 0.2rem;
}

.menu-modal,
.menu-drawer-overlay,
.menu-drawer[hidden] {
  display: none;
}

.menu-modal,
.menu-drawer-overlay,
.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  isolation: isolate;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.menu-drawer-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(6, 20, 16, 0.58);
  backdrop-filter: blur(5px);
}

.menu-drawer-panel {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 48px));
  max-height: calc(100vh - 140px);
  max-height: calc(100dvh - 140px);
  margin: clamp(72px, 9vh, 104px) 0 0;
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  align-content: start;
  gap: 0.65rem;
  overflow: hidden;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(245, 241, 234, 0.98), rgba(232, 223, 208, 0.98)),
    var(--cream);
  color: var(--green-950);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.28);
  animation: menuDrawerIn 260ms ease both;
}

@keyframes menuDrawerIn {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-drawer-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(9, 32, 25, 0.16);
  border-radius: 999px;
  background: rgba(9, 32, 25, 0.08);
  color: var(--green-950);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

[dir="rtl"] .menu-drawer-close {
  right: auto;
  left: 0.85rem;
}

.menu-drawer-close:hover,
.menu-drawer-close:focus-visible {
  background: rgba(9, 32, 25, 0.14);
}

.menu-drawer-close:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 3px;
}

.menu-drawer-kicker {
  max-width: calc(100% - 3.5rem);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-drawer-panel h3 {
  max-width: 16ch;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.8rem, 8vw, 3rem);
  line-height: 0.98;
}

.menu-drawer-panel p {
  margin: 0;
  color: rgba(9, 32, 25, 0.74);
  font-size: 1rem;
  line-height: 1.62;
}

.menu-drawer-content {
  min-height: 0;
  overflow: auto;
  padding: 0.85rem;
  border: 1px solid rgba(9, 32, 25, 0.12);
  border-radius: 10px;
  background: rgba(9, 32, 25, 0.055);
  color: rgba(9, 32, 25, 0.76);
  line-height: 1.58;
}

.menu-drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(9, 32, 25, 0.12);
}

.menu-drawer-pdf:not(.is-disabled) {
  background: var(--green-950);
  color: var(--cream);
}

.menu-drawer-panel .menu-drawer-actions a,
.menu-drawer-panel .menu-drawer-actions button,
.menu-drawer-panel .menu-html-actions a,
.menu-drawer-panel .menu-html-actions button,
.menu-drawer-panel .menu-drawer-footer a,
.menu-drawer-panel .menu-drawer-footer button {
  min-height: 48px;
  height: auto;
  max-height: 56px;
  aspect-ratio: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  line-height: 1.1;
}

body.menu-drawer-open,
html.menu-drawer-open {
  overflow: hidden;
}

/* Mobile optimization pass */
.booking-expander {
  display: grid;
  gap: 0;
}

.booking-expander-summary {
  min-height: 64px;
  display: grid;
  gap: 0.35rem;
  padding: clamp(1rem, 3vw, 1.2rem);
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(245, 241, 234, 0.09), rgba(141, 168, 143, 0.055)),
    rgba(9, 32, 25, 0.5);
  color: var(--cream);
  cursor: pointer;
  list-style: none;
  box-shadow: inset 0 1px 0 rgba(245, 241, 234, 0.08);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.booking-expander-summary::-webkit-details-marker {
  display: none;
}

.booking-expander-summary span {
  color: rgba(245, 241, 234, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.booking-expander-summary strong {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(245, 241, 234, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(
      115deg,
      rgba(245, 241, 234, 0.98) 0%,
      rgba(232, 223, 208, 0.98) 24%,
      rgba(218, 226, 211, 0.96) 48%,
      rgba(185, 151, 82, 0.18) 67%,
      rgba(245, 241, 234, 0.99) 100%
    );
  background-size: 260% 100%;
  animation: reserveCtaGradientDrift 7.5s ease-in-out infinite;
  color: var(--green-950);
  font-size: 0.92rem;
  font-weight: 900;
}

.booking-expander-summary:hover,
.booking-expander-summary:focus-visible,
.booking-expander[open] .booking-expander-summary {
  transform: translateY(-1px);
  border-color: rgba(185, 151, 82, 0.38);
  box-shadow: inset 0 1px 0 rgba(245, 241, 234, 0.1), 0 18px 42px rgba(0, 0, 0, 0.18);
}

.booking-expander-summary:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

.booking-expander-body {
  padding-top: 0.9rem;
  animation: bookingExpandIn 260ms ease both;
}

@keyframes bookingExpandIn {
  from {
    opacity: 0;
    transform: translateY(-0.45rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.location-showcase {
  padding-top: clamp(2.75rem, 7vw, 5rem);
  padding-bottom: clamp(2.75rem, 7vw, 5rem);
}

.location-showcase-copy {
  gap: clamp(0.8rem, 2.2vw, 1.1rem);
}

.location-showcase-copy h2 {
  max-width: 14ch;
}

.location-address-card {
  width: min(100%, 32rem);
}

@media (max-width: 700px) {
  .site-header {
    min-height: 4.35rem;
    padding: 0.55rem 0.85rem;
  }

  .site-header .brand img {
    width: 4.25rem;
  }

  .site-header .button-small {
    min-height: 40px;
    padding-inline: 0.8rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-content {
    width: min(100%, 92vw);
    padding: 6rem 1.05rem calc(5.7rem + env(safe-area-inset-bottom));
  }

  .hero-content h1 {
    max-width: 11ch;
    margin-bottom: 0.85rem;
    font-size: clamp(2.3rem, 10.6vw, 3.55rem);
    line-height: 0.98;
  }

  .hero-content .hero-text {
    max-width: 31rem;
    margin-bottom: 1rem;
    font-size: clamp(0.98rem, 3.6vw, 1.08rem);
    line-height: 1.55;
  }

  .hero-content .hero-actions {
    gap: 0.45rem;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-content .hero-actions .button,
  .hero-content .hero-actions .button-ghost {
    width: auto;
    flex: 1 1 9rem;
    max-width: 13.5rem;
    min-width: 0;
    min-height: 44px;
    padding: 0.68rem 0.95rem;
    font-size: 0.85rem;
    line-height: 1.1;
  }

  .location-showcase {
    padding-top: 2.35rem;
    padding-bottom: 2.4rem;
  }

  .location-showcase-grid {
    gap: 1.35rem;
  }

  .location-showcase-copy p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .location-address-card {
    padding: 0.9rem;
  }

  .location-visual-panel img {
    min-height: 16rem;
  }

  .booking-contact {
    padding-top: 2.15rem;
    padding-bottom: 2.25rem;
  }

  .booking-contact-copy {
    gap: 0.7rem;
  }

  .booking-contact-copy h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1;
  }

  .booking-widget {
    gap: 0.85rem;
    padding: 0.9rem;
  }

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

  .booking-details {
    margin-top: 0.15rem;
  }
}

@media (max-width: 380px) {
  .hero-content {
    padding-top: 5.7rem;
    padding-bottom: calc(5.45rem + env(safe-area-inset-bottom));
  }

  .hero-content h1 {
    font-size: clamp(2.15rem, 10.2vw, 3.15rem);
  }

  .hero-content .hero-text {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-expander-summary strong,
  .booking-expander-body {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 860px) {
  .menu-section-inner {
    grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr);
    align-items: start;
  }

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

@media (max-width: 430px) {
  .menu-tabs {
    border-radius: 18px;
  }

  .menu-option-grid {
    gap: 0.6rem;
  }

  .menu-option {
    min-height: 12rem;
  }
}

.location-showcase {
  background:
    radial-gradient(circle at 86% 12%, rgba(9, 32, 25, 0.08), transparent 24rem),
    radial-gradient(circle at 12% 86%, rgba(185, 151, 82, 0.09), transparent 20rem),
    linear-gradient(180deg, #e8efe2 0%, #d7e3d3 54%, #edf0e6 100%);
  color: var(--green-950);
}

.location-showcase .eyebrow,
.location-address-card span,
.location-highlights span {
  color: var(--green-700);
}

.location-showcase-copy h2,
.location-address-card address {
  color: var(--green-950);
}

.location-showcase-copy p {
  color: rgba(9, 32, 25, 0.72);
}

.location-address-card {
  border-color: rgba(9, 32, 25, 0.14);
  background:
    linear-gradient(135deg, rgba(245, 241, 234, 0.72), rgba(141, 168, 143, 0.16)),
    rgba(245, 241, 234, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.location-highlights {
  border-top-color: rgba(9, 32, 25, 0.16);
}

.location-highlights li {
  border-bottom-color: rgba(9, 32, 25, 0.14);
  color: rgba(9, 32, 25, 0.78);
}

.location-visual-panel {
  border-color: rgba(9, 32, 25, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 22px 50px rgba(9, 32, 25, 0.16);
}

/* Unified brand concepts */
.brand-concepts-section {
  background:
    radial-gradient(circle at 88% 14%, rgba(141, 168, 143, 0.14), transparent 22rem),
    linear-gradient(180deg, #f5f1ea 0%, #e8dfd0 100%);
  color: var(--green-950);
}

.brand-concepts-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: clamp(1.45rem, 4vw, 2.4rem);
}

.brand-concepts-heading {
  display: grid;
  gap: 0.85rem;
  max-width: 46rem;
}

.brand-concepts-heading .eyebrow {
  color: var(--green-700);
}

.brand-concepts-heading h2 {
  max-width: 12ch;
}

.brand-concepts-heading p {
  max-width: 42rem;
  margin: 0;
  color: #405246;
  font-size: clamp(1rem, 2.3vw, 1.14rem);
  line-height: 1.62;
}

.brand-concepts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.7rem, 2.4vw, 1rem);
}

.brand-concept-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(9, 32, 25, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.76), rgba(245, 241, 234, 0.66));
  box-shadow: 0 14px 32px rgba(9, 32, 25, 0.08);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

.brand-concept-card::before {
  position: absolute;
  top: 0;
  right: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(185, 151, 82, 0), rgba(185, 151, 82, 0.62), rgba(141, 168, 143, 0));
}

.brand-concept-media {
  overflow: hidden;
  background: var(--green-900);
}

.brand-concept-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 460ms ease, filter 460ms ease;
}

.brand-concept-body {
  display: grid;
  gap: 0.28rem;
  padding: clamp(0.78rem, 3vw, 1rem);
}

.brand-concept-body span {
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.brand-concept-body h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1rem, 3.6vw, 1.18rem);
  line-height: 1.08;
}

.brand-concept-body p {
  margin: 0;
  color: #4b5d50;
  font-size: clamp(0.78rem, 2.7vw, 0.9rem);
  line-height: 1.35;
}

.brand-concept-card:hover,
.brand-concept-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(35, 70, 56, 0.34);
  box-shadow: 0 20px 44px rgba(9, 32, 25, 0.13);
}

.brand-concept-card:hover img,
.brand-concept-card:focus-within img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.brand-concepts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

.brand-concepts-cta {
  min-height: 48px;
  border: 1px solid rgba(245, 241, 234, 0.72);
  background:
    linear-gradient(
      115deg,
      rgba(245, 241, 234, 0.98) 0%,
      rgba(232, 223, 208, 0.98) 24%,
      rgba(218, 226, 211, 0.96) 48%,
      rgba(185, 151, 82, 0.2) 67%,
      rgba(245, 241, 234, 0.99) 100%
    );
  background-size: 260% 100%;
  animation: reserveCtaGradientDrift 7.5s ease-in-out infinite;
  color: var(--green-950);
  box-shadow: 0 12px 28px rgba(9, 32, 25, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.brand-concepts-cta:hover,
.brand-concepts-cta:focus-visible {
  animation-duration: 5.8s;
  border-color: rgba(245, 241, 234, 0.96);
  box-shadow: 0 16px 36px rgba(9, 32, 25, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.brand-concepts-cta:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

@media (min-width: 720px) {
  .brand-concepts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .brand-concepts-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .brand-concept-body h3 {
    font-size: 0.96rem;
  }

  .brand-concept-body p {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-concept-card,
  .brand-concept-media img,
  .brand-concepts-cta {
    animation: none !important;
    transition: none !important;
  }
}

/* Premium editorial footer */
.site-footer {
  position: relative;
  z-index: 1;
  display: block;
  padding: clamp(2.75rem, 6vw, 4.75rem) clamp(1rem, 5vw, 4rem) calc(6.85rem + env(safe-area-inset-bottom));
  overflow: hidden;
  color: rgba(245, 241, 234, 0.78);
  background:
    radial-gradient(circle at 12% 0%, rgba(141, 168, 143, 0.14), transparent 22rem),
    linear-gradient(180deg, #092019 0%, #061410 100%);
  border-top: 1px solid rgba(185, 151, 82, 0.24);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 151, 82, 0.55), rgba(141, 168, 143, 0.34), transparent);
  pointer-events: none;
}

.footer-inner,
.footer-bottom {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.footer-inner {
  display: grid;
  gap: clamp(1.65rem, 4vw, 3rem);
}

.footer-brand-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.site-footer .footer-brand-block img {
  width: clamp(4.75rem, 18vw, 6.25rem);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.2));
}

.footer-kicker,
.footer-heading {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-serif);
  letter-spacing: 0;
}

.footer-kicker {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  line-height: 1.05;
}

.footer-positioning {
  max-width: 28rem;
  margin: 0.55rem 0 0;
  color: rgba(245, 241, 234, 0.72);
  font-size: clamp(0.94rem, 2.8vw, 1.02rem);
  line-height: 1.65;
}

.footer-heading {
  margin-bottom: 0.85rem;
  color: var(--sage);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-nav,
.footer-contact,
.footer-actions {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-contact {
  font-style: normal;
}

.site-footer a {
  color: rgba(245, 241, 234, 0.82);
  text-decoration: none;
}

.footer-nav a,
.footer-social,
.footer-contact-row {
  position: relative;
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  transition: color 220ms ease, transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.footer-nav a::after,
.footer-social::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(185, 151, 82, 0.62);
  transition: transform 220ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-social:hover,
.footer-social:focus-visible,
.footer-contact-row:hover,
.footer-contact-row:focus-visible {
  color: var(--cream);
  transform: translateY(-1px);
}

.footer-nav a:hover::after,
.footer-nav a:focus-visible::after,
.footer-social:hover::after,
.footer-social:focus-visible::after {
  transform: scaleX(1);
}

.footer-contact-row {
  width: 100%;
  max-width: 24rem;
  display: grid;
  gap: 0.18rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
}

.footer-contact-row span {
  color: rgba(141, 168, 143, 0.95);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-contact-row strong {
  color: rgba(245, 241, 234, 0.88);
  font-weight: 500;
  line-height: 1.35;
}

.footer-contact-row:hover,
.footer-contact-row:focus-visible {
  border-color: rgba(185, 151, 82, 0.38);
}

.footer-cta {
  width: fit-content;
  min-height: 46px;
  border: 1px solid rgba(245, 241, 234, 0.72);
  color: var(--green-950);
  background:
    linear-gradient(
      115deg,
      rgba(245, 241, 234, 0.98) 0%,
      rgba(232, 223, 208, 0.98) 24%,
      rgba(218, 226, 211, 0.96) 48%,
      rgba(185, 151, 82, 0.2) 67%,
      rgba(245, 241, 234, 0.99) 100%
    );
  background-size: 260% 100%;
  animation: reserveCtaGradientDrift 7.5s ease-in-out infinite;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.footer-cta:hover,
.footer-cta:focus-visible {
  color: var(--green-950);
  animation-duration: 5.8s;
  border-color: rgba(245, 241, 234, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.footer-social {
  margin-top: 0.35rem;
  color: rgba(141, 168, 143, 0.98);
}

.footer-bottom {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 241, 234, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 241, 234, 0.56);
  font-size: 0.86rem;
}

.site-footer a:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

@media (min-width: 860px) {
  .site-footer {
    padding-bottom: clamp(2.75rem, 6vw, 4.75rem);
  }

  .footer-inner {
    grid-template-columns: minmax(16rem, 1.15fr) minmax(7rem, 0.62fr) minmax(17rem, 1fr) minmax(10rem, 0.72fr);
    align-items: start;
  }
}

@media (max-width: 640px) {
  .footer-brand-block {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }

  .footer-nav .footer-heading {
    grid-column: 1 / -1;
  }

  .footer-nav a {
    min-height: 42px;
  }

  .footer-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-cta,
  .footer-nav a,
  .footer-social,
  .footer-contact-row,
  .footer-nav a::after,
  .footer-social::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Footer layout repair */
.site-footer {
  padding: clamp(3.25rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2.5rem) calc(6.25rem + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 12% 6%, rgba(141, 168, 143, 0.18), transparent 25rem),
    radial-gradient(circle at 88% 0%, rgba(185, 151, 82, 0.09), transparent 18rem),
    linear-gradient(180deg, #092019 0%, #061410 100%);
}

.footer-inner,
.footer-bottom {
  width: min(100%, 1240px);
}

.footer-inner {
  gap: clamp(2rem, 4vw, 3.75rem);
}

.footer-brand-block {
  align-items: start;
}

.site-footer .footer-brand-block img {
  width: clamp(5.25rem, 9vw, 7rem);
}

.footer-kicker {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  color: #fff8ed;
}

.footer-positioning {
  max-width: 21rem;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.58;
  color: rgba(245, 241, 234, 0.78);
}

.footer-heading {
  margin-bottom: 1rem;
  font-size: 0.78rem;
  color: rgba(141, 168, 143, 0.98);
}

.footer-nav,
.footer-contact,
.footer-actions {
  gap: 0.7rem;
}

.footer-nav a,
.footer-social,
.footer-contact-row {
  min-height: 42px;
  font-size: clamp(0.94rem, 1.1vw, 1.02rem);
}

.footer-contact-row {
  max-width: none;
  padding: 0.82rem 0;
}

.footer-contact-row span {
  font-size: 0.76rem;
}

.footer-contact-row strong {
  font-size: clamp(0.95rem, 1.1vw, 1.04rem);
  color: rgba(245, 241, 234, 0.94);
}

.footer-cta {
  min-height: 50px;
  padding-inline: 1.2rem;
  color: #092019;
  font-weight: 760;
  border-color: rgba(245, 241, 234, 0.9);
  background:
    linear-gradient(
      115deg,
      #fff7ec 0%,
      #f5f1ea 22%,
      #dbe4d7 48%,
      #efe2c9 68%,
      #fff7ec 100%
    );
  background-size: 280% 100%;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.footer-cta:hover,
.footer-cta:focus-visible {
  color: #061410;
  border-color: #fff8ed;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.footer-note {
  max-width: 15rem;
  margin: 0.35rem 0 0;
  color: rgba(245, 241, 234, 0.7);
  font-size: 0.96rem;
  line-height: 1.55;
}

.footer-social {
  color: rgba(245, 241, 234, 0.88);
}

.footer-bottom {
  margin-top: clamp(2.1rem, 4vw, 3rem);
  padding-top: 1.15rem;
}

.footer-bottom p {
  font-size: 0.94rem;
  color: rgba(245, 241, 234, 0.66);
}

@media (min-width: 900px) {
  .site-footer {
    padding-bottom: clamp(3.25rem, 6vw, 4.5rem);
  }

  .footer-inner {
    grid-template-columns: minmax(17rem, 1.22fr) minmax(9rem, 0.62fr) minmax(18rem, 1.1fr) minmax(13rem, 0.82fr);
    align-items: start;
  }
}

@media (max-width: 899px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 2.75rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-brand-block,
  .footer-contact {
    grid-column: auto;
  }

  .footer-positioning {
    max-width: 100%;
  }

  .footer-note {
    max-width: 100%;
  }
}

/* Compact footer final pass */
.site-footer {
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1rem, 4vw, 2.25rem) calc(5.1rem + env(safe-area-inset-bottom));
}

.footer-inner,
.footer-bottom {
  width: min(100%, 1180px);
}

.footer-inner {
  grid-template-columns: minmax(15rem, 1.05fr) minmax(12rem, 0.8fr) minmax(18rem, 1fr);
  gap: clamp(1.15rem, 2.6vw, 2.25rem);
}

.footer-brand-block {
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
}

.site-footer .footer-brand-block img {
  width: clamp(3.5rem, 5vw, 4.25rem);
}

.footer-kicker {
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.footer-positioning {
  margin-top: 0.25rem;
  max-width: 16rem;
  font-size: 0.88rem;
  line-height: 1.38;
}

.footer-heading {
  margin-bottom: 0.42rem;
  font-size: 0.72rem;
}

.footer-nav,
.footer-contact {
  gap: 0.18rem;
}

.footer-nav a,
.footer-contact-row {
  min-height: 26px;
  padding: 0.08rem 0;
  font-size: 0.89rem;
  line-height: 1.28;
}

.footer-contact-row {
  border-bottom: 0;
}

.footer-contact-row strong,
.footer-contact-row span {
  display: contents;
  font-size: inherit;
  color: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.footer-actions,
.footer-cta,
.footer-note,
.footer-social {
  display: none;
}

.footer-bottom {
  margin-top: clamp(1rem, 2vw, 1.35rem);
  padding-top: 0.7rem;
}

.footer-bottom p {
  font-size: 0.82rem;
}

@media (min-width: 900px) {
  .site-footer {
    padding-bottom: clamp(2rem, 4vw, 2.75rem);
  }

  .footer-inner {
    grid-template-columns: minmax(15rem, 1.05fr) minmax(12rem, 0.8fr) minmax(18rem, 1fr);
  }
}

@media (max-width: 899px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 1.9rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.05rem;
  }

  .footer-brand-block,
  .footer-contact {
    grid-column: auto;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.9rem;
  }
}

/* Ultra-compact final footer */
.site-footer {
  padding: 24px clamp(1rem, 3vw, 2rem) calc(22px + env(safe-area-inset-bottom));
  color: rgba(245, 241, 234, 0.72);
  background: #020b08;
  border-top: 1px solid rgba(196, 176, 140, 0.18);
}

.site-footer::before {
  display: none;
}

.footer-inner,
.footer-bottom {
  width: min(100%, 1100px);
}

.footer-inner {
  grid-template-columns: minmax(11rem, 0.9fr) minmax(13rem, 1fr) minmax(15rem, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: start;
}

.footer-brand-block {
  display: block;
}

.site-footer .footer-brand-block img {
  width: clamp(3.15rem, 4vw, 3.75rem);
  filter: none;
}

.footer-kicker {
  display: none;
}

.footer-positioning {
  max-width: 13rem;
  margin-top: 0.28rem;
  color: rgba(245, 241, 234, 0.6);
  font-size: 0.76rem;
  line-height: 1.3;
}

.footer-heading {
  margin-bottom: 0.35rem;
  color: rgba(141, 168, 143, 0.86);
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.14em;
}

.footer-nav,
.footer-contact {
  gap: 0.05rem;
}

.footer-nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
}

.footer-nav .footer-heading {
  grid-column: 1 / -1;
}

.footer-nav a,
.footer-contact-row {
  min-height: 23px;
  padding: 0;
  color: rgba(245, 241, 234, 0.72);
  font-size: 0.8rem;
  line-height: 1.25;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact-row:hover,
.footer-contact-row:focus-visible {
  color: var(--cream);
  transform: translateY(-1px);
}

.footer-bottom {
  margin-top: 0.75rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(245, 241, 234, 0.08);
}

.footer-bottom p {
  color: rgba(245, 241, 234, 0.46);
  font-size: 0.7rem;
  line-height: 1.25;
}

@media (min-width: 900px) {
  .site-footer {
    padding-top: 24px;
    padding-bottom: 22px;
  }
}

@media (max-width: 899px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0.95rem 1.5rem;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  .site-footer {
    padding-top: 22px;
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .footer-nav {
    column-gap: 0.85rem;
  }

  .footer-bottom {
    margin-top: 0.65rem;
  }
}

/* Verified HTML menu content inside drawer */
.menu-html-block {
  display: grid;
  gap: 1rem;
}

.menu-html-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.25rem;
}

.menu-html-index .menu-mini-action {
  padding: 0.42rem 0.7rem;
  font-size: 0.72rem;
}

.menu-html-list {
  display: grid;
  gap: 0;
}

.menu-html-grouped-list {
  gap: 1.05rem;
}

.menu-html-group {
  display: grid;
  gap: 0;
}

.menu-html-group > summary.menu-html-group-title {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 1.9rem;
}

.menu-html-group > summary.menu-html-group-title::-webkit-details-marker {
  display: none;
}

.menu-html-group > summary.menu-html-group-title::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  color: var(--green-700);
  font-size: 1rem;
  line-height: 1;
}

.menu-html-group[open] > summary.menu-html-group-title::after {
  content: "−";
}

.menu-html-group[open] > summary.menu-html-group-title {
  margin-bottom: 0.45rem;
}

.menu-html-group-title {
  margin: 0 0 0.25rem;
  padding-bottom: 0.45rem;
  color: var(--green-700);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(185, 151, 82, 0.28);
}

.menu-html-sublabel {
  margin: 0 0 0.5rem;
  color: rgba(9, 32, 25, 0.62);
  font-size: 0.82rem;
  line-height: 1.4;
}

.menu-html-item {
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(9, 32, 25, 0.12);
}

.menu-html-item:first-child {
  padding-top: 0.2rem;
}

.menu-html-item:last-child {
  border-bottom: 0;
  padding-bottom: 0.2rem;
}

.menu-html-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
}

.menu-html-title {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 2.8vw, 1.08rem);
  font-weight: 720;
  line-height: 1.35;
}

.menu-html-title span {
  color: var(--green-700);
  font-size: 0.78em;
  letter-spacing: 0.08em;
}

.menu-html-price {
  color: var(--green-950);
  font-size: clamp(0.98rem, 2.8vw, 1.08rem);
  line-height: 1.35;
  white-space: nowrap;
}

.menu-html-row-multi {
  grid-template-columns: minmax(0, 1fr) minmax(13rem, auto);
}

.menu-html-price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.menu-html-price-list span {
  min-width: 4.6rem;
  display: grid;
  gap: 0.12rem;
  padding: 0.36rem 0.48rem;
  text-align: center;
  background: rgba(141, 168, 143, 0.12);
  border: 1px solid rgba(9, 32, 25, 0.1);
}

.menu-html-price-list em {
  color: rgba(9, 32, 25, 0.58);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-html-price-list strong {
  color: var(--green-950);
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
}

.menu-html-note {
  margin: 0.38rem 0 0;
  color: rgba(9, 32, 25, 0.66);
  font-size: 0.88rem;
  line-height: 1.45;
}

.menu-html-translation-note {
  padding: 0.75rem 0.85rem;
  color: rgba(9, 32, 25, 0.72);
  background: rgba(141, 168, 143, 0.14);
  border: 1px solid rgba(9, 32, 25, 0.1);
}

.menu-html-source-note {
  padding-top: 0.2rem;
  color: rgba(9, 32, 25, 0.7);
  font-style: italic;
}

.menu-review-needed {
  padding-left: 0.7rem;
  border-left: 2px solid rgba(196, 151, 82, 0.45);
}

.menu-review-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 0.45rem;
  padding: 0.12rem 0.42rem;
  color: var(--green-700);
  background: rgba(196, 151, 82, 0.09);
  border: 1px solid rgba(196, 151, 82, 0.45);
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}

.menu-html-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  padding-top: 0.25rem;
}

.menu-html-reserve {
  color: var(--cream);
  background: var(--green-950);
  border-color: rgba(9, 32, 25, 0.32);
}

.menu-html-reserve:hover,
.menu-html-reserve:focus-visible {
  color: var(--cream);
  background: var(--green-700);
}

@media (max-width: 520px) {
  .menu-drawer {
    padding: 0;
  }

  .menu-drawer-panel {
    width: 100vw;
    max-height: 100vh;
    max-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto;
    align-content: start;
    border-radius: 0;
    padding:
      calc(env(safe-area-inset-top, 0px) + 1rem)
      clamp(1rem, 4vw, 1.15rem)
      calc(env(safe-area-inset-bottom, 0px) + 1rem);
    gap: 0.55rem;
  }

  .menu-html-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .menu-html-price {
    justify-self: start;
  }

  .menu-html-row-multi {
    grid-template-columns: 1fr;
  }

  .menu-html-price-list {
    justify-content: flex-start;
  }

  .menu-html-price-list span {
    min-width: calc(33.333% - 0.4rem);
  }

  .menu-drawer-panel .menu-html-actions,
  .menu-drawer-panel .menu-drawer-actions,
  .menu-drawer-panel .menu-drawer-footer {
    gap: 0.75rem;
    align-items: stretch;
  }

  .menu-drawer-actions {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    flex-direction: column;
    padding-top: 0.7rem;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 0.45rem);
    background:
      linear-gradient(180deg, rgba(245, 241, 234, 0.78), rgba(245, 241, 234, 0.98));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(9, 32, 25, 0.12);
  }

  .menu-drawer-panel .menu-html-actions a,
  .menu-drawer-panel .menu-html-actions button,
  .menu-drawer-panel .menu-drawer-actions a,
  .menu-drawer-panel .menu-drawer-actions button,
  .menu-drawer-panel .menu-drawer-footer a,
  .menu-drawer-panel .menu-drawer-footer button {
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
    min-height: 44px;
    max-height: 52px;
    padding: 0.78rem 1rem;
  }
}

@media (max-width: 767px) {
  .menu-drawer:not([hidden]) {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    isolation: isolate !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
  }

  .menu-drawer-backdrop {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: auto !important;
  }

  .menu-drawer-panel {
    position: fixed !important;
    inset: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
    transform: none !important;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) auto !important;
    overflow: hidden !important;
    padding:
      calc(env(safe-area-inset-top, 0px) + 1rem)
      clamp(1rem, 4vw, 1.15rem)
      0 !important;
    box-sizing: border-box !important;
    background: #F4EFE3 !important;
    background-image: none !important;
    box-shadow: none !important;
    z-index: 2 !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
  }

  .menu-drawer-header {
    position: relative !important;
    display: block !important;
    z-index: 3 !important;
    flex-shrink: 0 !important;
    padding: 1rem 4rem 0.85rem 1rem !important;
    border-bottom: 1px solid rgba(6, 38, 27, 0.12) !important;
    background: #F4EFE3 !important;
    color: #06261B !important;
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal !important;
    transform: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  .menu-drawer-header .menu-drawer-kicker {
    display: block !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    color: #0D3729 !important;
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal !important;
    text-shadow: none !important;
  }

  .menu-drawer-header [data-menu-drawer-title] {
    position: static !important;
    display: block !important;
    transform: none !important;
    margin: 0.35rem 0 0.55rem !important;
    padding: 0 !important;
    line-height: 1.05 !important;
    clear: both !important;
    min-height: auto !important;
    color: #06261B !important;
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal !important;
    text-shadow: none !important;
    font-weight: 700 !important;
  }

  .menu-drawer-header [data-menu-drawer-desc] {
    position: static !important;
    display: block !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.45 !important;
    clear: both !important;
    min-height: auto !important;
    color: rgba(6, 38, 27, 0.82) !important;
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal !important;
    text-shadow: none !important;
  }

  .menu-drawer-close {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    z-index: 10 !important;
    background: #E8E4DA !important;
    color: #06261B !important;
    border: 1px solid rgba(6, 38, 27, 0.18) !important;
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal !important;
  }

  [dir="rtl"] .menu-drawer-close {
    right: auto !important;
    left: 1rem !important;
  }

  .menu-drawer-content,
  [data-menu-drawer-content] {
    position: relative !important;
    z-index: 3 !important;
    min-height: 0 !important;
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    max-height: none !important;
    margin-top: 0 !important;
    padding-bottom: 1rem !important;
    box-sizing: border-box !important;
  }

  .menu-drawer-actions {
    position: relative !important;
    z-index: 3 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
    flex-shrink: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0.75rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
    background: #F4EFE3 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-top: 1px solid rgba(6, 38, 27, 0.14) !important;
    box-sizing: border-box !important;
  }

  .menu-drawer-actions .menu-drawer-pdf,
  .menu-drawer-actions .menu-drawer-reserve,
  .menu-drawer-actions a,
  .menu-drawer-actions button {
    width: 100% !important;
    min-height: 46px !important;
    max-height: 52px !important;
    height: auto !important;
    aspect-ratio: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.75rem 1rem !important;
    border-radius: 999px !important;
    line-height: 1.1 !important;
    box-sizing: border-box !important;
  }

  .menu-drawer::before,
  .menu-drawer::after,
  .menu-drawer-panel::before,
  .menu-drawer-panel::after,
  .menu-drawer-header::before,
  .menu-drawer-header::after {
    content: none !important;
    display: none !important;
  }
}

.menu-drawer[hidden] {
  display: none !important;
}
