:root {
  /* Text tokens: choose by surface. These carry readable content. */
  --text-on-light: #211c16;
  --text-muted-on-light: #4d4438;
  --text-soft-on-light: #5f5547;
  --text-on-dark: #fff8eb;
  --text-muted-on-dark: rgba(255, 248, 235, .9);

  /* Accent tokens: decorative is for borders/fills/rules; readable is for text. */
  --accent-decorative: #b9874f;
  --accent-decorative-muted: #e7d4b9;
  --accent-decorative-wash: rgba(185, 135, 79, .18);
  --accent-readable: #5f3b1e;

  /* Surface tokens: keep Nyime's existing warm lodge palette. */
  --surface-light: #fbf7ee;
  --surface-warm: #f3eadb;
  --surface-dark: #172119;
  --surface-dark-soft: #26392b;
  --line-on-light: hsl(100 18% 26% / .2);
  --line-on-light-strong: hsl(96 18% 24% / .34);
  --heading-on-light: #203326;
  --link-on-light: #213d2a;

  --ivory: var(--surface-light);
  --ivory-deep: var(--surface-warm);
  --sand: var(--accent-decorative-muted);
  --sand-strong: var(--accent-decorative);
  --clay: #8f5f35;
  --green: var(--heading-on-light);
  --green-soft: #3f5a43;
  --green-dark: var(--surface-dark);
  --brown: var(--accent-readable);
  --charcoal: var(--text-on-light);
  --muted: var(--text-muted-on-light);
  --line: var(--line-on-light);
  --line-strong: var(--line-on-light-strong);
  --shadow-color: 38 28% 38%;
  --shadow-soft:
    0 1px 1px hsl(var(--shadow-color) / .06),
    0 2px 2px hsl(var(--shadow-color) / .06),
    0 4px 4px hsl(var(--shadow-color) / .055),
    0 8px 8px hsl(var(--shadow-color) / .05),
    0 16px 18px hsl(var(--shadow-color) / .045);
  --shadow-lift:
    0 2px 2px hsl(var(--shadow-color) / .065),
    0 4px 5px hsl(var(--shadow-color) / .06),
    0 8px 10px hsl(var(--shadow-color) / .055),
    0 18px 22px hsl(var(--shadow-color) / .05),
    0 32px 42px hsl(var(--shadow-color) / .045);
  --radius: 8px;
  --max: 1180px;
  --section-space: clamp(4rem, 8vw, 7rem);
  --header-height: 94px;
  font-family: "Aptos", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

/* WordPress integration: preserve the approved Astro presentation. */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  background: #fff;
  color: #10261a;
}

body.admin-bar .site-header {
  top: 32px;
}

.nav a[aria-current="page"],
.mobile-panel a[aria-current="page"] {
  color: var(--green);
}

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

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 700;
}

.form-status--success {
  border: 1px solid #4f735a;
  background: #edf5ee;
  color: #173923;
}

.form-status--error {
  border: 1px solid #a04a3d;
  background: #fff0ed;
  color: #70271d;
}

.form-required-note {
  margin-top: 0;
  font-size: 0.85rem;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 2.5rem;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
}

.nyime-focal-desktop--center-center { object-position: center center !important; }
.nyime-focal-desktop--center-top { object-position: center top !important; }
.nyime-focal-desktop--center-bottom { object-position: center bottom !important; }
.nyime-focal-desktop--left-center { object-position: left center !important; }
.nyime-focal-desktop--right-center { object-position: right center !important; }

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .nyime-focal-mobile--center-center { object-position: center center !important; }
  .nyime-focal-mobile--center-top { object-position: center top !important; }
  .nyime-focal-mobile--center-bottom { object-position: center bottom !important; }
  .nyime-focal-mobile--left-center { object-position: left center !important; }
  .nyime-focal-mobile--right-center { object-position: right center !important; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at top left, rgba(201, 170, 122, .2), transparent 34rem),
    linear-gradient(180deg, var(--ivory), #f8f1e5 44rem, var(--ivory));
  color: var(--text-on-light);
  font-size: 16px;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(90deg, rgba(38, 57, 43, .055) 1px, transparent 1px),
    linear-gradient(rgba(38, 57, 43, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 14rem, black 70%, transparent);
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading-on-light);
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: min(100%, 13.5ch);
  font-size: clamp(2.85rem, 6.6vw, 6.1rem);
  line-height: .98;
}

h2 {
  max-width: min(100%, 19ch);
  font-size: clamp(1.95rem, 3.5vw, 3.45rem);
  line-height: 1.06;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.12;
}

p {
  margin: 0;
  overflow-wrap: break-word;
}

:focus-visible {
  outline: 3px solid rgba(185, 135, 79, .72);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  min-height: 78px;
  padding: .7rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(38, 57, 43, .12);
  background: rgba(251, 247, 238, .9);
  box-shadow: 0 8px 22px rgba(35, 30, 22, .06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
}

.brand img {
  width: clamp(145px, 16vw, 190px);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(.65rem, 1.4vw, 1.35rem);
  font-size: .9rem;
}

.nav a,
.footer a,
.text-link,
.mobile-panel a {
  text-decoration: none;
}

.nav a {
  position: relative;
  padding: .7rem .1rem;
  color: var(--text-muted-on-light);
  font-weight: 650;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .42rem;
  left: 0;
  height: 1px;
  background: var(--accent-decorative);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(.22, 1, .36, 1);
}

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

.nav a:hover,
.nav a:focus-visible {
  color: var(--text-on-light);
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: .86rem 1.15rem;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--text-on-dark);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform .18s cubic-bezier(.22, 1, .36, 1),
    background-color .18s ease-out,
    border-color .18s ease-out,
    box-shadow .18s ease-out;
  box-shadow: 0 8px 18px hsl(105 18% 18% / .14);
}

.button:hover,
.button:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px hsl(105 18% 18% / .12);
}

.button-small {
  min-height: 42px;
  padding: .62rem 1rem;
}

.button-ghost {
  background: rgba(251, 247, 238, .1);
  border-color: rgba(255, 248, 235, .82);
  color: var(--text-on-dark);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(251, 247, 238, .2);
  border-color: var(--text-on-dark);
}

.button-light {
  background: var(--surface-light);
  border-color: var(--line-strong);
  color: var(--heading-on-light);
  box-shadow: var(--shadow-soft);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--surface-warm);
  border-color: var(--accent-decorative);
  color: var(--heading-on-light);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100dvh - 78px));
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--surface-dark);
  padding: clamp(6rem, 13vw, 10rem) clamp(1rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position-desktop, center 50%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(19, 27, 20, .82) 0%, rgba(19, 27, 20, .55) 43%, rgba(19, 27, 20, .14) 100%),
    linear-gradient(0deg, rgba(19, 27, 20, .74), transparent 46%);
}

.hero[data-overlay="bright"]::before {
  background:
    linear-gradient(90deg, rgba(13, 20, 15, .92) 0%, rgba(18, 27, 20, .74) 42%, rgba(18, 27, 20, .36) 72%, rgba(18, 27, 20, .2) 100%),
    linear-gradient(0deg, rgba(13, 20, 15, .88) 0%, rgba(13, 20, 15, .58) 48%, rgba(13, 20, 15, .18) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(19, 27, 20, .62));
}

.hero[data-overlay="bright"]::after {
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(13, 20, 15, .82));
}

.hero-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 920px);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
}

.hero-content {
  min-width: 0;
  max-width: 920px;
  color: var(--text-on-dark);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .42);
}

.hero h1 {
  color: var(--text-on-dark);
}

.hero p:not(.eyebrow) {
  max-width: 72ch;
  margin-top: 1.15rem;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.58;
}

.eyebrow,
.meta {
  color: var(--accent-readable);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--text-on-dark);
  margin-bottom: .9rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}

.home-hero-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(1rem, 2.4vw, 2rem) clamp(.75rem, 2vw, 1rem) clamp(2.6rem, 6vw, 4.8rem);
}

.home-hero-panel {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(520px, 68dvh, 720px);
  overflow: hidden;
  isolation: isolate;
  border-radius: clamp(18px, 2vw, 28px);
  background: var(--surface-dark);
  box-shadow:
    0 1px 1px hsl(var(--shadow-color) / .07),
    0 4px 6px hsl(var(--shadow-color) / .06),
    0 14px 22px hsl(var(--shadow-color) / .055),
    0 30px 54px hsl(var(--shadow-color) / .06);
}

.home-hero-panel::before,
.home-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.home-hero-panel::before {
  background:
    linear-gradient(90deg, rgba(18, 27, 20, .82) 0%, rgba(18, 27, 20, .58) 40%, rgba(18, 27, 20, .24) 72%, rgba(18, 27, 20, .1) 100%),
    linear-gradient(0deg, rgba(18, 27, 20, .74) 0%, rgba(18, 27, 20, .38) 44%, rgba(18, 27, 20, .08) 100%);
}

.home-hero-panel[data-overlay="bright"]::before {
  background:
    linear-gradient(90deg, rgba(13, 20, 15, .9) 0%, rgba(18, 27, 20, .72) 42%, rgba(18, 27, 20, .42) 72%, rgba(18, 27, 20, .22) 100%),
    linear-gradient(0deg, rgba(13, 20, 15, .84) 0%, rgba(13, 20, 15, .52) 48%, rgba(13, 20, 15, .16) 100%);
}

.home-hero-panel::after {
  opacity: .2;
  background-image:
    linear-gradient(90deg, rgba(255, 248, 235, .14) 1px, transparent 1px),
    linear-gradient(rgba(255, 248, 235, .08) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.home-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--home-hero-position-desktop, center 50%);
}

.home-hero-content {
  width: min(820px, 100%);
  padding: clamp(2rem, 7vw, 4.5rem);
  color: var(--text-on-dark);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .4);
}

.home-hero-content .eyebrow {
  color: var(--text-on-dark);
  margin-bottom: .85rem;
}

.home-hero-content h1 {
  max-width: min(100%, 13.6ch);
  color: var(--text-on-dark);
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: .99;
}

.home-hero-content p:not(.eyebrow) {
  max-width: 60ch;
  margin-top: 1.1rem;
  color: var(--text-muted-on-dark);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  line-height: 1.58;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem;
  margin-top: 1.55rem;
}

.home-hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: .65rem .2rem;
  color: var(--text-on-dark);
  font-weight: 900;
  text-decoration-color: rgba(255, 248, 235, .62);
  text-underline-offset: .28em;
}

.home-hero-link:hover,
.home-hero-link:focus-visible {
  text-decoration-color: var(--text-on-dark);
}

.hero-review-badges {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .55rem;
  max-width: min(520px, calc(100% - 2rem));
}

.review-badge {
  display: flex;
  align-items: center;
  gap: .62rem;
  min-height: 52px;
  padding: .55rem .75rem;
  border: 1px solid rgba(255, 248, 235, .22);
  border-radius: 999px;
  background: rgba(18, 27, 20, .62);
  color: var(--text-on-dark);
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(13, 20, 15, .16);
  backdrop-filter: blur(14px);
}

.review-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 248, 235, .92);
  color: var(--surface-dark);
  font-size: .72rem;
  font-weight: 950;
}

.review-copy {
  display: grid;
  gap: .04rem;
  min-width: 0;
}

.review-source {
  color: var(--text-muted-on-dark);
  font-size: .76rem;
  font-weight: 850;
  line-height: 1.1;
}

.review-rating {
  color: var(--text-on-dark);
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.15;
  white-space: nowrap;
}

.review-rating strong {
  font-weight: 950;
}

.review-rating span {
  color: var(--text-muted-on-dark);
}

.review-badge:hover,
.review-badge:focus-visible {
  border-color: rgba(255, 248, 235, .48);
  background: rgba(18, 27, 20, .76);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.7rem;
}

.section,
.page-intro,
.split,
.footer,
.cta-band {
  width: min(var(--max), calc(100% - clamp(2rem, 6vw, 4rem)));
  margin-inline: auto;
}

.section,
.page-intro,
.split {
  padding: var(--section-space) 0;
}

.section-tight {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.section-heading {
  max-width: 960px;
  margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.section-heading p:not(.eyebrow),
.page-intro p {
  max-width: 72ch;
  margin-top: .9rem;
  color: var(--text-muted-on-light);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.section-heading-wide {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: end;
  max-width: none;
}

.section-heading-wide h2 {
  max-width: min(100%, 18ch);
}

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

.grid > *,
.split > *,
.section-heading-wide > *,
.hero-inner > * {
  min-width: 0;
}

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

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .54);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.card > div {
  padding: clamp(1.1rem, 2vw, 1.6rem);
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: var(--media-position-desktop, center 50%);
}

.media-card h3 {
  max-width: 24ch;
  margin-top: .5rem;
  color: var(--heading-on-light);
}

.media-card p:not(.meta) {
  max-width: 58ch;
  margin-top: .7rem;
  color: var(--text-muted-on-light);
}

.media-card {
  transition:
    transform .24s cubic-bezier(.22, 1, .36, 1),
    border-color .24s ease-out,
    box-shadow .24s ease-out;
}

.media-card:hover,
.media-card:focus-within {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 44px;
  margin-top: .9rem;
  color: var(--link-on-light);
  font-weight: 900;
}

.text-link::after {
  content: "->";
  color: var(--accent-readable);
  transition: transform .2s cubic-bezier(.22, 1, .36, 1);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(3px);
}

.accommodation-showcase,
.experience-showcase {
  align-items: stretch;
}

.accommodation-showcase .media-card:first-child,
.experience-showcase .media-card:first-child {
  grid-column: span 2;
}

.accommodation-showcase .media-card:first-child img,
.experience-showcase .media-card:first-child img {
  aspect-ratio: 16 / 9;
}

.feature-band {
  background:
    linear-gradient(135deg, rgba(23, 33, 25, .98), rgba(38, 57, 43, .96)),
    var(--green);
  color: var(--text-on-dark);
  padding: var(--section-space) 0;
}

.feature-band .section {
  padding: 0;
}

.feature-band h2,
.feature-band h3 {
  color: var(--text-on-dark);
}

.feature-band .section-heading p,
.feature-band .media-card p:not(.meta) {
  color: var(--text-muted-on-dark);
}

.feature-band .card {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(251, 247, 238, .11);
  color: var(--text-on-dark);
  box-shadow: none;
}

.feature-band .meta {
  color: var(--text-on-dark);
}

.feature-band .text-link {
  color: var(--text-on-dark);
  text-decoration: underline;
  text-decoration-color: rgba(255, 248, 235, .72);
  text-underline-offset: .28em;
}

.feature-band .text-link::after {
  color: var(--text-on-dark);
}

.feature-band .text-link:hover,
.feature-band .text-link:focus-visible {
  color: var(--text-on-dark);
  text-decoration-color: var(--text-on-dark);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split p:not(.eyebrow, .notice) {
  max-width: 72ch;
  margin-top: 1rem;
  color: var(--text-muted-on-light);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
}

.split img,
.editorial-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: var(--media-position-desktop, center 50%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}

.list {
  display: grid;
  gap: .65rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.list li {
  padding: .78rem .95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-on-light);
  background: rgba(255, 255, 255, .58);
}

.menu-overview {
  padding-bottom: clamp(1.8rem, 4vw, 3rem);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding-bottom: 0;
}

.drinks-overview {
  margin-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.menu-downloads {
  flex-wrap: wrap;
}

.drinks-menu-grid .menu-card:first-child {
  grid-row: span 2;
}

.menu-overview .section-heading-wide {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .75fr);
}

.menu-notes {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 0;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  list-style: none;
}

.menu-notes li {
  min-height: 40px;
  padding: .62rem .82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  color: var(--text-muted-on-light);
  font-size: .92rem;
  font-weight: 750;
}

.menu-sections {
  padding-top: 0;
}

.packed-meals-section {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.packed-meals-panel {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.2rem, 4vw, 2.25rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(38, 57, 43, .98), rgba(63, 78, 55, .96)),
    var(--surface-dark);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-soft);
}

.packed-meals-heading {
  display: grid;
  gap: .7rem;
  max-width: 780px;
}

.packed-meals-heading h2,
.packed-meals-heading .eyebrow {
  color: var(--text-on-dark);
}

.packed-meals-heading p:not(.eyebrow) {
  color: var(--text-muted-on-dark);
}

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

.packed-meal-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid rgba(251, 247, 238, .22);
  border-radius: var(--radius);
  background: rgba(251, 247, 238, .1);
}

.packed-meal-card header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(251, 247, 238, .18);
}

.packed-meal-card h3,
.packed-meal-card header strong {
  color: var(--text-on-dark);
}

.packed-meal-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.packed-meal-card header p,
.packed-meal-card li {
  color: var(--text-muted-on-dark);
}

.packed-meal-card header p {
  margin-top: .35rem;
}

.packed-meal-card header > strong {
  font-size: 1.1rem;
  white-space: nowrap;
}

.packed-meal-label {
  color: var(--text-on-dark);
  font-weight: 850;
}

.packed-meal-card ul {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding-left: 1.2rem;
}

.packed-meal-card li::marker {
  color: var(--accent-decorative-muted);
}

.packed-meal-vegetarian {
  padding-top: .85rem;
  border-top: 1px solid rgba(251, 247, 238, .18);
  color: var(--text-muted-on-dark);
}

.packed-meal-vegetarian strong {
  color: var(--text-on-dark);
}

.packed-meals-note {
  padding: .85rem 1rem;
  border-left: 4px solid var(--accent-decorative-muted);
  background: rgba(251, 247, 238, .1);
  color: var(--text-on-dark);
  font-size: .94rem;
}

.packed-meals-downloads {
  padding-top: .2rem;
  border-top: 1px solid rgba(251, 247, 238, .18);
}

.menu-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.menu-card {
  display: grid;
  align-content: start;
  gap: 1.1rem;
  padding: clamp(1.05rem, 2vw, 1.45rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .48)),
    var(--surface-light);
  box-shadow: var(--shadow-soft);
}

.menu-card header {
  display: grid;
  gap: .4rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--line);
}

.menu-card h2 {
  max-width: none;
  color: var(--heading-on-light);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  overflow-wrap: anywhere;
}

.menu-card header p,
.menu-item p {
  max-width: 64ch;
  color: var(--text-muted-on-light);
}

.menu-items {
  display: grid;
  gap: .85rem;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .85rem;
  align-items: start;
  padding-bottom: .85rem;
  border-bottom: 1px solid rgba(38, 57, 43, .1);
}

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

.menu-item h3 {
  max-width: none;
  color: var(--text-on-light);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.menu-item p {
  margin-top: .25rem;
  font-size: .94rem;
  line-height: 1.45;
}

.menu-item .meta {
  color: var(--accent-readable);
  font-size: .76rem;
}

.menu-item strong {
  color: var(--text-on-light);
  font-size: .98rem;
  line-height: 1.25;
  white-space: nowrap;
}

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

.fact-list li {
  background: var(--ivory-deep);
}

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

.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: var(--radius);
}

.rate-table th,
.rate-table td {
  padding: .9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.rate-table tr:last-child td {
  border-bottom: 0;
}

.rate-table th,
.rate-table td:last-child {
  color: var(--heading-on-light);
  font-weight: 800;
}

.rate-table td {
  color: var(--text-on-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(.75rem, 1.5vw, 1rem);
}

.gallery-grid img {
  width: 100%;
  min-height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: var(--media-position-desktop, center 50%);
  border-radius: var(--radius);
  box-shadow: 0 1px 1px hsl(var(--shadow-color) / .04), 0 8px 18px hsl(var(--shadow-color) / .055);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(7n) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img:nth-child(4n) {
  aspect-ratio: 3 / 4;
}

.gallery-section {
  padding-top: clamp(2.6rem, 5vw, 4.5rem);
}

.activity-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.activity-video-grid figure {
  margin: 0;
}

.activity-video-grid video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--surface-dark);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.activity-video-grid figcaption {
  margin-top: .6rem;
  color: var(--text-muted-on-light);
  font-size: .92rem;
}

.gallery-section + .gallery-section {
  border-top: 1px solid var(--line);
}

.notice {
  margin-top: 1rem;
  padding: .88rem 1rem;
  border-left: 4px solid var(--accent-decorative);
  background: var(--accent-decorative-wash);
  color: var(--text-on-light);
  font-weight: 750;
}

.rate-alert {
  margin: 1rem 0 clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid var(--line-strong);
  border-left: 5px solid var(--accent-decorative);
  border-radius: var(--radius);
  background: var(--surface-warm);
  color: var(--text-on-light);
  box-shadow: var(--shadow-soft);
}

.rate-alert p:not(.eyebrow) {
  max-width: 76ch;
  margin-top: .4rem;
  color: var(--text-on-light);
  font-weight: 750;
}

.park-fees-section {
  padding-top: 0;
}

.park-fees-panel {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.2rem, 4vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(251, 247, 238, .96), rgba(243, 234, 219, .98)),
    var(--surface-light);
  color: var(--text-on-light);
  box-shadow: var(--shadow-soft);
}

.park-fees-intro {
  display: grid;
  gap: .85rem;
  max-width: 920px;
}

.park-fees-intro h2 {
  color: var(--heading-on-light);
}

.park-fees-intro p:not(.eyebrow, .meta) {
  color: var(--text-muted-on-light);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.park-fees-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.park-fee-card {
  display: grid;
  gap: .45rem;
  align-content: start;
  min-height: 132px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
}

.park-fee-card p {
  color: var(--text-muted-on-light);
  font-weight: 800;
  line-height: 1.35;
}

.park-fee-card strong {
  color: var(--heading-on-light);
  font-size: 1.05rem;
}

.park-fee-card span {
  color: var(--text-muted-on-light);
  font-size: .94rem;
}

.park-fees-notes {
  display: grid;
  gap: .8rem;
  padding-top: clamp(.8rem, 2vw, 1.2rem);
  border-top: 1px solid var(--line);
}

.park-fees-notes h3 {
  color: var(--heading-on-light);
}

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

.booking-panel {
  padding-top: clamp(2rem, 5vw, 4rem);
}

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

label {
  display: grid;
  gap: .38rem;
  font-weight: 800;
  color: var(--heading-on-light);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: .82rem .9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  color: var(--text-on-light);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-decorative);
  outline: 3px solid rgba(185, 135, 79, .24);
}

::placeholder {
  color: var(--text-soft-on-light);
  opacity: 1;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  max-width: 72ch;
  margin-top: 1rem;
  color: var(--text-muted-on-light);
  font-size: .95rem;
  line-height: 1.55;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 320px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: stretch;
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border: 1px solid rgba(251, 247, 238, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(38, 57, 43, .96), rgba(109, 74, 45, .9)),
    var(--green);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lift);
}

.cta-copy {
  padding: clamp(.9rem, 2.6vw, 2rem);
}

.cta-band h2 {
  color: var(--text-on-dark);
}

.cta-band p:not(.eyebrow, .notice) {
  max-width: 70ch;
  margin-top: .85rem;
  color: var(--text-muted-on-dark);
}

.cta-band .eyebrow {
  color: var(--text-on-dark);
}

.cta-band .notice {
  border-left-color: var(--accent-decorative-muted);
  background: rgba(251, 247, 238, .1);
  color: var(--text-on-dark);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.25rem;
}

.cta-media {
  min-height: 260px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: var(--media-position-desktop, center 50%);
}

.review-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, 1fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  padding: clamp(1.2rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(251, 247, 238, .96), rgba(243, 234, 219, .98)),
    var(--surface-light);
  box-shadow: var(--shadow-soft);
}

.review-panel p:not(.eyebrow) {
  margin-top: .9rem;
  color: var(--text-muted-on-light);
}

.testimonial-grid {
  display: grid;
  gap: .85rem;
}

.testimonial-card {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .62);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--text-on-light);
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.42;
}

.testimonial-card figcaption {
  display: grid;
  gap: .15rem;
  margin-top: .8rem;
  color: var(--text-muted-on-light);
  font-weight: 800;
}

.testimonial-card small {
  color: var(--text-soft-on-light);
  font: inherit;
  font-size: .9rem;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: .85rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 1px 1px hsl(var(--shadow-color) / .035), 0 6px 14px hsl(var(--shadow-color) / .04);
}

.faq-item summary {
  min-height: 56px;
  padding: 1rem 3rem 1rem 1rem;
  color: var(--heading-on-light);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--accent-readable);
  transform: translateY(-50%);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 72ch;
  padding: 0 1rem 1rem;
  color: var(--text-muted-on-light);
}

.map-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-warm);
  box-shadow: var(--shadow-soft);
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: clamp(320px, 48vw, 520px);
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 27;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(20, 88, 47, .3);
  transition:
    transform .18s cubic-bezier(.22, 1, .36, 1),
    background-color .18s ease-out,
    box-shadow .18s ease-out;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #20bd5a;
  box-shadow: 0 17px 36px rgba(20, 88, 47, .38);
  transform: translateY(-2px) scale(1.03);
}

.footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 3rem 0 6rem;
  border-top: 1px solid var(--line);
  color: var(--text-muted-on-light);
}

.footer h2 {
  margin-bottom: .7rem;
  font-size: 1.15rem;
}

.footer a {
  display: block;
  min-height: 32px;
  margin-top: .25rem;
  color: var(--text-on-light);
}

.footer a:hover,
.text-link:hover,
.mobile-panel a:hover {
  color: var(--accent-readable);
}

.mobile-booking-bar {
  display: none;
}

@media (max-width: 980px) {
  :root {
    --header-height: 84px;
  }

  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    flex: 0 0 auto;
    justify-self: end;
    margin-left: auto;
  }

  .mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    gap: .55rem;
    padding: .55rem .7rem;
    border: 1.5px solid #4b5947;
    border-radius: var(--radius);
    background: rgba(241, 232, 214, .96);
    color: #142219;
    box-shadow: 0 4px 12px rgba(20, 34, 25, .14);
    cursor: pointer;
    list-style: none;
    transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  }

  .mobile-menu summary:hover,
  .mobile-menu summary:focus-visible {
    border-color: #1d3023;
    background: #fffaf0;
    color: #0d1710;
    box-shadow: 0 6px 16px rgba(20, 34, 25, .2);
  }

  .mobile-menu[open] summary {
    border-color: #1d3023;
    background: #26392b;
    color: #fffaf0;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .menu-icon {
    display: grid;
    gap: 3px;
    width: 20px;
  }

  .menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
  }

  .menu-label {
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .02em;
  }

  .mobile-panel {
    position: absolute;
    top: calc(100% + 1px);
    right: clamp(1rem, 4vw, 3rem);
    left: clamp(1rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .25rem;
    padding: .8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(251, 247, 238, .98);
    box-shadow: var(--shadow-lift);
  }

  .mobile-panel a {
    min-height: 44px;
    padding: .75rem .85rem;
    border-radius: calc(var(--radius) - 2px);
    color: var(--heading-on-light);
    font-weight: 800;
  }

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
  background: rgba(231, 212, 185, .45);
  color: var(--text-on-light);
}

  .hero-inner,
  .section-heading-wide,
  .grid,
  .grid-two,
  .split,
  .footer,
  .cta-band,
  .review-panel,
  .faq-list {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    max-width: min(100%, 18ch);
  }

  .accommodation-showcase .media-card:first-child,
  .experience-showcase .media-card:first-child {
    grid-column: auto;
  }

  .fact-list,
  .amenity-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .packed-meals-grid {
    grid-template-columns: 1fr;
  }

  .drinks-menu-grid .menu-card:first-child {
    grid-row: auto;
  }

  .site-header > .button-small {
    display: none;
  }

  .mobile-booking-bar {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 28;
    display: flex;
    min-height: 52px;
    box-shadow: 0 16px 36px rgba(23, 33, 25, .24);
  }

  .mobile-booking-bar .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 5.4rem;
  }
}

@media (max-width: 640px) {
  .activity-video-grid {
    grid-template-columns: 1fr;
  }

  :root {
    --header-height: 74px;
  }

  body {
    padding-bottom: 74px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.25rem);
    line-height: 1.02;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 7.8vw, 2.65rem);
    line-height: 1.08;
  }

  .hero-content,
  .section-heading,
  .section-heading-wide > div,
  .split > div,
  .cta-copy,
  .card > div {
    width: 100%;
    max-width: 100%;
  }

  .hero p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .page-intro p,
  .split p:not(.eyebrow, .notice) {
    width: 100%;
    max-width: 100%;
  }

  .hero p:not(.eyebrow) {
    max-width: min(100%, 31ch);
  }

  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: 138px;
  }

  .hero {
    min-height: min(760px, calc(100dvh - 70px));
    padding-inline: 1.5rem;
    padding-top: 5.5rem;
  }

  .home-hero-shell {
    padding: .75rem .75rem clamp(2.8rem, 10vw, 4rem);
  }

  .home-hero-panel {
    min-height: min(720px, calc(100dvh - 96px));
    border-radius: 18px;
  }

  .home-hero-panel::before {
    background:
      linear-gradient(90deg, rgba(18, 27, 20, .82) 0%, rgba(18, 27, 20, .66) 58%, rgba(18, 27, 20, .42) 100%),
      linear-gradient(0deg, rgba(18, 27, 20, .86) 0%, rgba(18, 27, 20, .56) 52%, rgba(18, 27, 20, .12) 100%);
  }

  .home-hero-panel[data-overlay="bright"]::before {
    background:
      linear-gradient(90deg, rgba(13, 20, 15, .9) 0%, rgba(13, 20, 15, .76) 58%, rgba(13, 20, 15, .5) 100%),
      linear-gradient(0deg, rgba(13, 20, 15, .9) 0%, rgba(13, 20, 15, .62) 54%, rgba(13, 20, 15, .18) 100%);
  }

  .home-hero-image {
    object-position: var(--home-hero-position-mobile, var(--home-hero-position-desktop, center 50%));
  }

  .home-hero-content {
    padding: clamp(1.35rem, 7vw, 2rem);
  }

  .home-hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.35rem);
    line-height: 1.02;
  }

  .home-hero-content p:not(.eyebrow) {
    max-width: min(100%, 34ch);
    font-size: 1.02rem;
  }

  .home-hero-actions {
    display: grid;
    gap: .75rem;
  }

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

  .home-hero-link {
    justify-content: center;
  }

  .hero-review-badges {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
    margin-top: 1rem;
    gap: .55rem;
  }

  .review-badge {
    min-width: 0;
    width: 100%;
    border-radius: var(--radius);
    padding: .62rem .68rem;
  }

  .review-rating {
    white-space: normal;
  }

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

  .menu-overview .section-heading-wide {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-overview .section-heading-wide h2 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .menu-notes li {
    border-radius: var(--radius);
  }

  .menu-card {
    padding: 1rem;
  }

  .menu-item {
    grid-template-columns: minmax(0, 1fr);
    gap: .35rem;
  }

  .menu-item strong {
    justify-self: start;
    white-space: normal;
  }

  .packed-meal-card header {
    grid-template-columns: minmax(0, 1fr);
    gap: .45rem;
  }

  .hero-image {
    object-position: var(--hero-position-mobile, var(--hero-position-desktop, center 50%));
  }

  .hero[data-overlay="bright"]::before {
    background:
      linear-gradient(90deg, rgba(13, 20, 15, .9) 0%, rgba(13, 20, 15, .76) 58%, rgba(13, 20, 15, .48) 100%),
      linear-gradient(0deg, rgba(13, 20, 15, .9) 0%, rgba(13, 20, 15, .62) 54%, rgba(13, 20, 15, .16) 100%);
  }

  .media-card img,
  .split img,
  .editorial-image,
  .gallery-grid img,
  .cta-media {
    object-position: var(--media-position-mobile, var(--media-position-desktop, center 50%));
  }

  .hero-inner {
    width: min(100%, calc(100vw - 3rem));
    max-width: calc(100vw - 3rem);
    gap: 1.25rem;
  }

  .hero-content {
    max-width: calc(100vw - 3rem);
  }

  .actions {
    display: grid;
    width: 100%;
    max-width: calc(100vw - 3rem);
  }

  .actions .button,
  .cta-actions .button,
  .mobile-booking-bar .button {
    width: 100%;
  }

  .section,
  .page-intro,
  .split {
    padding: clamp(3.4rem, 14vw, 5rem) 0;
  }

  .section,
  .page-intro,
  .split,
  .footer,
  .cta-band {
    width: min(var(--max), calc(100% - 2rem));
  }

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

  .park-fees-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(7n) {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16 / 11;
  }

  .cta-media {
    min-height: 210px;
  }
}

@media (max-width: 420px) {
  .mobile-panel {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    gap: .65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
