/* Palazoo Garden Resort — Artcaffe-inspired layout, Palazoo palette */
:root {
  --pz-red: #e60012;
  --pz-red-hover: #c4000f;
  --pz-ink: #0a0a0a;
  --pz-green: #5e896c;
  --pz-green-soft: #306136c1;
  --pz-panel: #121212;
  --pz-cream: #f4f1ec;
  --pz-white: #ffffff;
  --pz-muted: rgba(255, 255, 255, 0.78);
  --pz-body: #222222;
  --pz-line: rgba(0, 0, 0, 0.08);
  --font-sans: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --page-max: 1200px;
  --radius: 8px;
  --radius-pill: 30px;
  --header-h: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html.js body {
  opacity: 1;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--pz-body);
  background: var(--pz-white);
  min-height: 100vh;
}

/* Booking page — garden + soft vignette; paths relative to css/ */
body.page-booking {
  background-color: #0d1210;
  background-image: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(94, 137, 108, 0.18), transparent 55%),
    linear-gradient(165deg, rgba(6, 10, 8, 0.88) 0%, rgba(8, 12, 10, 0.82) 45%, rgba(5, 8, 7, 0.92) 100%),
    url("../GARDEN/DSC_0191.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}


body.page-booking .booking-panel {
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 1rem 1.5rem;
  background: var(--pz-red);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.page-width {
  width: min(100% - 3.2rem, var(--page-max));
  margin-inline: auto;
}

/* —— Announcement bar (Artcaffe utility bar) —— */
.utility-bar {
  background: var(--pz-panel);
  color: var(--pz-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.3rem;
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.6rem 1.6rem;
  text-align: center;
}

.utility-bar a {
  color: var(--pz-white);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.utility-bar a:hover {
  color: var(--pz-red);
}

.utility-bar svg {
  width: 14px;
  height: 10px;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--pz-green-soft);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.header__inner {
  display: grid;
  /* minmax(0, 1fr) lets the logo column shrink so it cannot spill over the CTA column */
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  min-height: var(--header-h);
  padding: 0.8rem 0;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  max-width: 100%;
}

.header__logo .brand-mark {
  display: block;
  height: clamp(48px, 12vw, 88px);
  width: auto;
  max-width: min(340px, 56vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 2px rgba(0, 0, 0, 0.35));
}

@media (max-width: 959px) {
  .header__inner {
    gap: 0.65rem;
    column-gap: 0.55rem;
  }

  .header__logo .brand-mark {
    max-width: 100%;
    height: clamp(40px, 10vw, 72px);
  }

  .header__cta {
    flex-shrink: 0;
    gap: 0.35rem;
  }

  .header__cta .btn {
    padding: 0.62rem 0.85rem;
    font-size: 1.02rem;
    letter-spacing: 0.04em;
  }
}

/* Narrow phones: full-width actions row so logo never fights two CTAs */
@media (max-width: 420px) {
  .header__inner {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    row-gap: 0.55rem;
    align-items: center;
  }

  .nav-toggle {
    grid-column: 1;
    grid-row: 1;
  }

  .header__logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
  }

  .header__cta {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: stretch;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0.45rem;
  }

  .header__cta .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 0.58rem 0.5rem;
    font-size: 0.95rem;
    text-align: center;
  }
}

@media (min-width: 960px) {
  .header__logo .brand-mark {
    max-width: min(400px, 38vw);
    height: clamp(56px, 7vw, 92px);
  }
}

.menu-drawer__brand {
  padding: 0.4rem 3.5rem 1.6rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--pz-line);
}

.menu-drawer__brand a {
  display: inline-block;
  text-decoration: none;
}

.menu-drawer__brand .brand-mark {
  display: block;
  height: clamp(56px, 22vw, 104px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.form-card__brand {
  text-align: center;
  margin: 0 0 1.8rem;
}

.form-card__brand .brand-mark {
  height: clamp(64px, 18vw, 120px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.12));
}

.footer-brand {
  display: inline-block;
  text-decoration: none;
}

.footer-brand:hover {
  text-decoration: none;
}

.footer-brand .brand-mark--footer {
  display: block;
  height: clamp(52px, 10vw, 96px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35)) brightness(1.08);
}

.footer-brand--invite .brand-mark--footer {
  height: clamp(56px, 11vw, 104px);
  width: auto;
  max-width: min(100%, 340px);
  margin: 0;
  filter: contrast(1.14) saturate(1.08) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.98)) drop-shadow(0 3px 14px rgba(255, 255, 255, 0.55))
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.08));
}

.header__wordmark {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #fff;
}

.header__wordmark span {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--pz-red);
  outline-offset: 2px;
}

.nav-toggle svg {
  width: 22px;
  height: 18px;
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }
}

.nav-primary {
  display: none;
  justify-content: center;
}

@media (min-width: 960px) {
  .nav-primary {
    display: flex;
  }
}

.nav-primary > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2.4rem;
  align-items: center;
}

.nav-primary > ul > li > a {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.6rem 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.nav-primary > ul > li > a:hover,
.nav-primary > ul > li > a.is-active,
.nav-primary__has-dropdown:hover > .nav-primary__parent,
.nav-primary__has-dropdown:focus-within > .nav-primary__parent {
  border-color: var(--pz-red);
  color: #fff;
}

.nav-primary > ul > li > a[aria-current="page"] {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.nav-primary__parent[aria-current="page"] {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.nav-primary__has-dropdown {
  position: relative;
}

.nav-primary__parent span {
  font-size: 0.75em;
  opacity: 0.85;
  margin-left: 0.15em;
}

.nav-primary__sub {
  position: absolute;
  left: 0;
  top: calc(100% + 0.4rem);
  min-width: 22rem;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(18, 18, 18, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.nav-primary__has-dropdown:hover .nav-primary__sub,
.nav-primary__has-dropdown:focus-within .nav-primary__sub {
  display: flex;
}

.nav-primary__sub a {
  display: block;
  padding: 0.75rem 1.6rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 0;
  text-decoration: none;
}

.nav-primary__sub a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-primary__sub a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 3px 0 0 var(--pz-red);
}

.header__cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.header__cta .btn {
  padding: 0.85rem 1.4rem;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
}

@media (min-width: 1200px) {
  .header__cta .btn {
    padding: 1rem 2.2rem;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--pz-red);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--pz-red);
  color: #fff;
  border-color: var(--pz-red);
}

.btn--primary:hover {
  background: var(--pz-green);
  border-color: var(--pz-green);
  color: #fff;
  text-decoration: none;
}

.site-header .btn--primary:hover,
.hero-banner .btn--primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--pz-red);
}

.btn--primary:active {
  background: #4a6d55;
  border-color: #4a6d55;
  color: #fff;
}

.site-header .btn--primary:active,
.hero-banner .btn--primary:active {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--pz-red-hover);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.btn--ghost:active {
  background: rgba(255, 255, 255, 0.2);
}

/* Opaque ghost for green header (e.g. Book an event) */
.btn--ghost-solid {
  background: var(--pz-ink);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost-solid:hover {
  background: #fff;
  color: var(--pz-green);
  border-color: #fff;
  text-decoration: none;
}

.btn--ghost-solid:active {
  background: rgba(255, 255, 255, 0.92);
  color: #3d5a47;
}

.btn--dark {
  background: var(--pz-ink);
  color: #fff;
  border-color: var(--pz-ink);
}

.btn--dark:hover {
  background: #1a1a1a;
  text-decoration: none;
}

.btn--outline-dark {
  background: #fff;
  color: var(--pz-green-soft);
  border-color: var(--pz-green-soft);
}

.btn--outline-dark:hover {
  background: var(--pz-green-soft);
  color: #fff;
  text-decoration: none;
}

/* Visible from tablet/desktop only */
.small-hide {
  display: none;
}

@media (min-width: 960px) {
  .small-hide {
    display: inline-flex;
  }
}

/* Mobile drawer */
.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.menu-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.menu-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.menu-drawer.is-open .menu-drawer__backdrop {
  opacity: 1;
}

.menu-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(100%, 360px);
  height: 100%;
  background: #fff;
  color: var(--pz-body);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  padding: 2.4rem 2rem;
  overflow-y: auto;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.15);
}

.menu-drawer.is-open .menu-drawer__panel {
  transform: translateX(0);
}

.menu-drawer__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--pz-ink);
}

.menu-drawer nav > ul {
  list-style: none;
  margin: 3.6rem 0 0;
  padding: 0;
}

.menu-drawer nav a {
  display: block;
  padding: 1.2rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  border-bottom: 1px solid var(--pz-line);
  text-decoration: none;
}

.menu-drawer nav a:hover {
  color: var(--pz-red);
}

.menu-drawer__details {
  margin: 0;
  border-bottom: 1px solid var(--pz-line);
}

.menu-drawer__details summary {
  padding: 1.2rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
  color: var(--pz-ink);
  cursor: pointer;
  list-style: none;
}

.menu-drawer__details summary::-webkit-details-marker {
  display: none;
}

.menu-drawer__details > ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0 0 0 0.8rem;
}

.menu-drawer__details > ul a {
  padding: 0.85rem 0;
  font-size: 1.3rem;
  font-weight: 600;
  border-bottom: 0;
  border-top: 1px solid var(--pz-line);
}

.menu-drawer__details > ul li:first-child a {
  border-top: 0;
}

.menu-drawer__details a[aria-current="page"] {
  color: var(--pz-red);
}

/* —— Hero: fading / Ken Burns slides —— */
/* Fills one viewport below utility + header so the hero is fully visible */
.hero-banner {
  --hero-top-chrome: 136px;
  /* Ken Burns zoom-out duration — JS advances slides after this */
  --hero-kenburns: 10s;
  position: relative;
  min-height: calc(100vh - var(--hero-top-chrome));
  min-height: calc(100svh - var(--hero-top-chrome));
  height: calc(100vh - var(--hero-top-chrome));
  height: calc(100svh - var(--hero-top-chrome));
  max-height: calc(100svh - var(--hero-top-chrome));
  overflow: hidden;
  background: #0d0d0d;
}

@media (max-width: 959px) {
  .hero-banner {
    --hero-top-chrome: 148px;
  }
}

body.page-home .hero-banner {
  --hero-top-chrome: 98px;
}

@media (max-width: 959px) {
  body.page-home .hero-banner {
    --hero-top-chrome: 110px;
  }
}

.hero-banner__slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #140808;
  background-image: linear-gradient(
    160deg,
    #0a0606 0%,
    #1a0a0c 45%,
    #0d1a12 100%
  );
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  /* Instant transform reset when inactive so each activation starts a fresh zoom-out */
  transition:
    opacity 1.35s ease,
    transform 0ms linear;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 1.35s ease,
    transform var(--hero-kenburns, 10s) linear;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

.hero-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  height: 100%;
  padding: 2rem 1.6rem 4.8rem;
}

.hero-box {
  text-align: center;
  max-width: 720px;
  color: #fff;
  transform: translateY(-5vh);
}

.hero-box h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}

.hero-box p {
  margin: 0 0 2.4rem;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.hero-dots {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.8rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hero-dots button[aria-current="true"] {
  background: var(--pz-red);
  border-color: var(--pz-red);
}

/* —— Rich text band —— */
.section-rich {
  padding: 3rem 0;
  background: var(--pz-white);
}

.section-rich--tint {
  background: #eef1ee;
}

.section-rich__inner {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.section-rich h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4vw, 4.2rem);
  color: var(--pz-red);
  margin: 0 0 1.6rem;
  line-height: 1.1;
}

.section-rich p {
  margin: 0;
  font-size: 1.7rem;
  color: #333;
}

/* —— Signature grid (Artcaffe “our signature”) —— */
.section-grid-head {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--pz-green-soft);
  margin: 0 0 2rem;
  text-align: center;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

@media (min-width: 900px) {
  .signature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sig-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #ddd;
}

a.sig-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.sig-card--link:focus-visible {
  outline: 2px solid var(--pz-red);
  outline-offset: 3px;
}

.sig-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.sig-card:hover .sig-card__img {
  transform: scale(1.05);
}

.sig-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
  pointer-events: none;
}

.sig-card h3 {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  right: 1rem;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.section-pad {
  padding: 4rem 0;
}

.anchor-section {
  scroll-margin-top: calc(var(--header-h) + 1.6rem);
}

.split-showcase {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split-showcase {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.2rem;
  }
}

.split-showcase__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4vw, 4.2rem);
  color: var(--pz-red);
  margin: 0 0 1.6rem;
  line-height: 1.1;
}

.split-showcase__copy p {
  margin: 0;
  font-size: 1.7rem;
  color: #333;
  max-width: 44ch;
}

.split-showcase__visual {
  min-height: 22rem;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Home — foods & drinks promo strip (ad-style) */
.foods-teaser-ad {
  display: grid;
  max-width: 960px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #faf8f5 0%, #f0ebe3 48%, #e8e4dc 100%);
  box-shadow:
    0 24px 60px rgba(42, 48, 42, 0.1),
    0 0 0 1px rgba(74, 109, 85, 0.1);
}

@media (min-width: 720px) {
  .foods-teaser-ad {
    grid-template-columns: 1fr minmax(280px, 42%);
    align-items: stretch;
    min-height: 260px;
  }
}

@media (max-width: 719px) {
  .foods-teaser-ad__visual {
    order: -1;
    min-height: 200px;
  }
}

.foods-teaser-ad__copy {
  padding: 2.6rem 2.4rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

@media (min-width: 720px) {
  .foods-teaser-ad__copy {
    padding: 2.8rem 2.8rem 3rem 3.2rem;
  }
}

.foods-teaser-ad__text {
  margin: 0;
  font-size: clamp(1.65rem, 2.3vw, 2rem);
  line-height: 1.55;
  color: #353530;
  font-weight: 500;
  letter-spacing: 0.02em;
  max-width: 32ch;
}

.foods-teaser-ad__btn {
  margin: 0;
  flex-shrink: 0;
}

.foods-teaser-ad__visual {
  position: relative;
  min-height: 220px;
  background: #dfe5df;
}

.foods-teaser-ad__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .split-showcase__visual {
    min-height: 28rem;
  }
}

.activities-lead {
  text-align: center;
  max-width: 52ch;
  margin: -0.8rem auto 2.8rem;
  font-size: 1.65rem;
  color: #444;
}

.activity-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}

@media (min-width: 1100px) {
  .activity-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.activity-card {
  background: var(--pz-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--pz-line);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

a.activity-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

a.activity-card--link:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

a.activity-card--link:hover .activity-card__cta {
  color: var(--pz-red);
}

a.activity-card--link:focus-visible {
  outline: 2px solid var(--pz-red);
  outline-offset: 3px;
}

.activity-card__cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pz-green-soft);
}

.activity-card__img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.activity-card__body {
  padding: 1.6rem 1.8rem 2rem;
}

.activity-card__body h3 {
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pz-green-soft);
}

.activity-card__body p {
  margin: 0;
  font-size: 1.45rem;
  color: #444;
  line-height: 1.5;
}

/* —— Standalone activity pages (soothing layout) —— */
body.page-activity {
  background: #f4f1ec;
  color: #3d3d3a;
}

.activity-hero {
  position: relative;
  min-height: min(44vh, 340px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #dde5df;
}

.activity-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) brightness(1.04);
}

.activity-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(230, 234, 228, 0.2) 0%, rgba(72, 88, 74, 0.55) 100%);
  pointer-events: none;
}

.activity-hero__inner {
  position: relative;
  z-index: 1;
  padding: 2.4rem 0 3.2rem;
  color: #fff;
}

.activity-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 1rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

.activity-hero__tagline {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(1.5rem, 1.9vw, 1.75rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.55;
}

.activity-page {
  padding: 3.6rem 0 5.2rem;
  background: linear-gradient(180deg, #f4f1ec 0%, #efeae3 100%);
}

.activity-page__lead {
  font-size: clamp(1.65rem, 2vw, 1.85rem);
  color: #4a4a46;
  font-weight: 400;
  line-height: 1.65;
  max-width: 58ch;
  margin: 0 auto 3rem;
  text-align: center;
}

.activity-gallery {
  margin: 0 0 3.2rem;
}

.activity-gallery__heading {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.4vw, 2.2rem);
  font-weight: 500;
  color: #4d6b56;
  text-align: center;
  margin: 0 0 1.6rem;
  letter-spacing: 0.02em;
}

.activity-gallery__grid {
  display: grid;
  gap: 1.2rem;
}

.activity-gallery__grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .activity-gallery__grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.activity-gallery__grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .activity-gallery__grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.activity-gallery__figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e4e8e4;
  box-shadow: 0 8px 28px rgba(42, 48, 42, 0.08);
}

.activity-gallery__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activity-highlights {
  list-style: none;
  margin: 0 0 3.2rem;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 720px) {
  .activity-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
}

.activity-highlights li {
  background: #faf8f5;
  border-radius: 12px;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(94, 137, 108, 0.14);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.activity-highlights strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.03em;
  color: #4d6b56;
  margin-bottom: 0.55rem;
}

.activity-highlights p {
  margin: 0;
  font-size: 1.45rem;
  color: #555;
  line-height: 1.55;
}

.activity-story {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .activity-story {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.activity-story__block h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 2.35rem);
  font-weight: 500;
  color: #4d6b56;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.activity-story__block p {
  margin: 0 0 1.2rem;
  font-size: 1.55rem;
  color: #525250;
  line-height: 1.62;
}

.activity-story__block p:last-child {
  margin-bottom: 0;
}

.activity-page__footer-cta {
  margin-top: 3.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
}

body.page-activity .btn--primary {
  background: #5a7260;
  border-color: #5a7260;
}

body.page-activity .btn--primary:hover {
  background: #4a5f50;
  border-color: #4a5f50;
  color: #fff;
}

/* —— Activities hub (calm landing) —— */
body.page-activities-hub {
  background: #f0ebe4;
  color: #3d3d3a;
}

.activities-hub-intro {
  padding: 4.8rem 1.6rem 2.4rem;
  text-align: center;
  background: linear-gradient(180deg, #ebe6de 0%, #f0ebe4 100%);
}

.activities-hub-intro__inner {
  max-width: 40rem;
  margin-inline: auto;
}

.activities-hub-intro__eyebrow {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6d8574;
  font-weight: 600;
}

.activities-hub-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 4.2rem);
  font-weight: 500;
  margin: 0 0 1.4rem;
  color: #2f3d32;
  letter-spacing: 0.02em;
}

.activities-hub-intro__text {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.65;
  color: #5c5c58;
  font-weight: 400;
}

.activities-hub-grid-wrap {
  padding: 1.2rem 0 4.8rem;
}

.activities-hub-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .activities-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .activities-hub-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
  }
}

.activities-hub-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #faf8f5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 36px rgba(42, 48, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.activities-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(42, 48, 42, 0.12);
}

.activities-hub-card:focus-visible {
  outline: 2px solid #6d8574;
  outline-offset: 3px;
}

.activities-hub-card__media {
  aspect-ratio: 4 / 3;
  background: #e0e6e1;
  overflow: hidden;
}

.activities-hub-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.93) brightness(1.02);
  transition: transform 0.45s ease;
}

.activities-hub-card:hover .activities-hub-card__media img {
  transform: scale(1.04);
}

.activities-hub-card__label {
  display: block;
  padding: 1.4rem 1.6rem 0.4rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: #2f3d32;
}

.activities-hub-card__hint {
  display: block;
  padding: 0 1.6rem 1.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a8f80;
  font-weight: 600;
}

.activities-hub-foot {
  text-align: center;
  padding-top: 3rem;
}

body.page-activities-hub .activities-hub-foot .default-btn {
  border-color: rgba(77, 107, 86, 0.45);
  color: #4d6b56;
  font-weight: 600;
}

body.page-activities-hub .activities-hub-foot .default-btn:hover {
  background: #5a7260;
  border-color: #5a7260;
  color: #fff;
}

/* —— Foods & drinks: lead band (six FOODS/*.jpg mosaic + scrim) —— */
.page-foods-drinks .fd-lead-band {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: clamp(300px, 52vw, 520px);
}

.page-foods-drinks .fd-lead-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-foods-drinks .fd-lead-band__tiles {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-foods-drinks .fd-lead-band__tile {
  min-height: 0;
  overflow: hidden;
}

.page-foods-drinks .fd-lead-band__pic {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
}

.page-foods-drinks .fd-lead-band__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Soft “studio” pools for type; mid band lets photos breathe beside the words */
  background:
    radial-gradient(ellipse 95% 125% at 14% 48%, rgba(252, 249, 244, 0.97) 0%, rgba(252, 249, 244, 0.55) 42%, transparent 68%),
    radial-gradient(ellipse 70% 85% at 0% 100%, rgba(245, 240, 232, 0.45), transparent 55%),
    linear-gradient(102deg, rgba(244, 241, 236, 0.22) 0%, rgba(239, 234, 227, 0.38) 45%, rgba(244, 241, 236, 0.62) 100%);
}

@media (min-width: 880px) {
  .page-foods-drinks .fd-lead-band__scrim {
    background:
      radial-gradient(ellipse 90% 130% at 16% 50%, rgba(252, 249, 244, 0.96) 0%, rgba(252, 249, 244, 0.42) 48%, transparent 72%),
      radial-gradient(ellipse 55% 70% at 8% 12%, rgba(250, 246, 239, 0.5), transparent 60%),
      linear-gradient(98deg, rgba(244, 241, 236, 0.18) 0%, rgba(239, 234, 227, 0.32) 44%, rgba(244, 241, 236, 0.58) 100%);
  }
}

.page-foods-drinks .fd-lead-band__content {
  position: relative;
  z-index: 2;
  padding: 2.75rem 0 3.35rem;
  isolation: isolate;
}

.page-foods-drinks .fd-lead-split__main {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  max-width: 56ch;
  border-left: 3px solid rgba(90, 114, 96, 0.28);
  background: linear-gradient(90deg, rgba(252, 250, 246, 0.42) 0%, rgba(252, 250, 246, 0.08) 72%, transparent 100%);
}

/* —— Foods & drinks: lead (left) + “Easy at Palazoo” panel (right) —— */
.page-foods-drinks .fd-lead-split {
  display: grid;
  gap: 2.2rem;
  margin: 0;
  align-items: start;
}

@media (min-width: 880px) {
  .page-foods-drinks .fd-lead-split {
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
    gap: 2.6rem 3rem;
  }
}

.page-foods-drinks .fd-lead-split__lead {
  margin: 0;
  text-align: left;
}

.page-foods-drinks .fd-lead-split__lead-opener {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.35vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1.42;
  color: #32342e;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.85),
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 0 40px rgba(252, 250, 246, 0.95),
    0 0 80px rgba(252, 250, 246, 0.65);
}

.page-foods-drinks .fd-lead-split__lead-mood {
  display: block;
  margin-top: 1.35rem;
  padding-top: 0.15rem;
  font-family: inherit;
  font-size: clamp(1.48rem, 1.75vw, 1.68rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.015em;
  line-height: 1.62;
  color: #454840;
  max-width: 48ch;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.75),
    0 0 28px rgba(252, 250, 246, 0.9);
}

.page-foods-drinks .fd-lead-split__lead-mood::before {
  content: "";
  display: block;
  width: 3.2rem;
  height: 2px;
  margin-bottom: 1rem;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(90, 114, 96, 0.65), rgba(230, 0, 18, 0.35), transparent);
}

@keyframes fd-selling-ring {
  to {
    transform: rotate(1turn);
  }
}

@keyframes fd-selling-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.95) inset,
      0 10px 32px rgba(32, 40, 32, 0.16),
      0 0 40px rgba(230, 0, 18, 0.22),
      0 0 72px rgba(255, 200, 90, 0.14),
      0 0 120px rgba(230, 0, 18, 0.08);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.95) inset,
      0 14px 40px rgba(32, 40, 32, 0.18),
      0 0 56px rgba(230, 0, 18, 0.38),
      0 0 100px rgba(255, 210, 120, 0.28),
      0 0 140px rgba(230, 0, 18, 0.14);
  }
}

@keyframes fd-selling-streak {
  0%,
  72%,
  100% {
    transform: skewX(-16deg) translateX(-130%);
    opacity: 0;
  }
  74% {
    opacity: 1;
  }
  88% {
    transform: skewX(-16deg) translateX(130%);
    opacity: 0.9;
  }
  92% {
    opacity: 0;
  }
}

@keyframes fd-selling-star {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.page-foods-drinks .fd-lead-split__panel {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
  background: #3d3834;
}

.page-foods-drinks .fd-lead-split__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: conic-gradient(
    from 200deg,
    #e60012,
    #ffd54f,
    #fff9e6,
    #5a7260,
    #b8d4b8,
    #ff9a8b,
    #e60012
  );
  animation: fd-selling-ring 9s linear infinite;
}

.page-foods-drinks .fd-lead-split__panel-inner {
  position: relative;
  z-index: 1;
  margin: 5px;
  padding: 2.3rem 2.05rem 2.45rem;
  border-radius: 18px;
  background: linear-gradient(158deg, #fffef9 0%, #faf5eb 42%, #f0e8dc 100%);
  border: 2px solid rgba(255, 255, 255, 0.95);
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.95) inset,
    0 10px 32px rgba(32, 40, 32, 0.16),
    0 0 40px rgba(230, 0, 18, 0.22),
    0 0 72px rgba(255, 200, 90, 0.14),
    0 0 120px rgba(230, 0, 18, 0.08);
  animation: fd-selling-pulse 2.8s ease-in-out infinite;
}

.page-foods-drinks .fd-lead-split__panel-inner::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -35%;
  width: 55%;
  height: 160%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    102deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0) 44%,
    rgba(255, 252, 235, 0.92) 50.5%,
    rgba(255, 255, 255, 0) 57%,
    transparent 100%
  );
  filter: blur(0.5px);
  mix-blend-mode: soft-light;
  animation: fd-selling-streak 5.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .page-foods-drinks .fd-lead-split__panel::before {
    animation: none !important;
  }

  .page-foods-drinks .fd-lead-split__panel-inner {
    animation: none !important;
  }

  .page-foods-drinks .fd-lead-split__panel-inner::after {
    animation: none !important;
    opacity: 0;
  }
}

.page-foods-drinks .fd-lead-split__eyebrow {
  position: relative;
  z-index: 5;
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.55rem 1.15rem 0.5rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  background: linear-gradient(105deg, #3d5238 0%, #5a7260 40%, #6d4c3d 100%);
  box-shadow: 0 4px 16px rgba(45, 60, 45, 0.35), 0 0 24px rgba(230, 0, 18, 0.2);
}

.page-foods-drinks .fd-lead-split__title {
  position: relative;
  z-index: 5;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 3.15rem);
  font-weight: 600;
  color: #1e221e;
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 28px rgba(255, 220, 150, 0.55),
    0 0 48px rgba(230, 0, 18, 0.12);
}

.page-foods-drinks .fd-lead-split__title::after {
  content: "✦";
  display: inline-block;
  margin-left: 0.35em;
  font-size: 0.55em;
  vertical-align: super;
  color: var(--pz-red);
  text-shadow: 0 0 12px rgba(230, 0, 18, 0.55);
  animation: fd-selling-star 1.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .page-foods-drinks .fd-lead-split__title::after {
    animation: none;
  }
}

.page-foods-drinks .fd-lead-split__deck {
  position: relative;
  z-index: 5;
  margin: 0 0 1.35rem;
  padding: 1.1rem 1.05rem;
  font-size: 1.48rem;
  line-height: 1.58;
  font-weight: 500;
  color: #32352e;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 114, 96, 0.2);
  box-shadow: 0 6px 20px rgba(42, 48, 42, 0.06);
}

.page-foods-drinks .fd-lead-split__ticks {
  position: relative;
  z-index: 5;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 1.38rem;
  font-weight: 700;
  color: #2f3d2f;
}

.page-foods-drinks .fd-lead-split__ticks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255, 252, 246, 0.95), rgba(255, 248, 235, 0.75));
  border: 1px solid rgba(230, 0, 18, 0.18);
  box-shadow: 0 2px 10px rgba(230, 0, 18, 0.06);
}

.page-foods-drinks .fd-lead-split__ticks li::before {
  content: "✦";
  font-size: 1.05rem;
  line-height: 1;
  color: var(--pz-red);
  text-shadow: 0 0 10px rgba(230, 0, 18, 0.45);
  flex-shrink: 0;
}

/* —— Foods & drinks page: mosaic gallery (ACTIVITIES / FOOD AND DRINKS *.png) —— */
.page-foods-drinks .fd-gallery {
  margin: 1.25rem 0 3.2rem;
}

.page-foods-drinks .fd-gallery__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.4vw, 2.25rem);
  font-weight: 500;
  color: #4d6b56;
  text-align: center;
  margin: 0 0 1.75rem;
  letter-spacing: 0.02em;
}

.page-foods-drinks .fd-mosaic {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

.page-foods-drinks .fd-mosaic__cell {
  border-radius: 14px;
  overflow: hidden;
  background: #e4e8e2;
  box-shadow: 0 10px 36px rgba(42, 48, 42, 0.08);
}

.page-foods-drinks .fd-mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

@media (min-width: 720px) {
  .page-foods-drinks .fd-mosaic {
    grid-template-columns: 1.12fr 1fr;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) minmax(200px, 28vw);
    min-height: min(58vh, 580px);
  }

  .page-foods-drinks .fd-mosaic__cell {
    min-height: 0;
    display: flex;
  }

  .page-foods-drinks .fd-mosaic__cell--tall {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .page-foods-drinks .fd-mosaic__cell--a {
    grid-column: 2;
    grid-row: 1;
  }

  .page-foods-drinks .fd-mosaic__cell--b {
    grid-column: 2;
    grid-row: 2;
  }

  .page-foods-drinks .fd-mosaic__cell--wide {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .page-foods-drinks .fd-mosaic__cell img {
    flex: 1;
    min-height: 0;
    object-fit: cover;
  }
}

.default-btn-wrap {
  text-align: center;
  margin-top: 2.4rem;
}

.default-btn {
  display: inline-block;
  padding: 1.2rem 3.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--pz-green-soft);
  color: var(--pz-green-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.4rem;
  text-decoration: none;
}

.default-btn:hover {
  background: var(--pz-green-soft);
  color: #fff;
  text-decoration: none;
}

/* —— Mid CTA banner —— */
.home-banner {
  padding: 0 0 4rem;
}

.home-banner__wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2.4rem;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
}

.home-banner__wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.55) 20%, rgba(0, 0, 0, 0.05) 65%);
  pointer-events: none;
}

.home-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 360px;
  text-align: center;
  color: #fff;
}

.home-banner__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  line-height: 1.05;
}

.home-banner__inner p {
  margin: 0 0 2rem;
  font-size: 1.5rem;
  opacity: 0.95;
}

.rooms-section-intro {
  text-align: center;
  max-width: 52rem;
  margin: -0.8rem auto 2rem;
  font-size: 1.5rem;
  color: #444;
}

.rooms-section-intro a {
  font-weight: 700;
  color: #2d5a38;
  text-decoration: underline;
}

.rooms-section-intro a:hover {
  color: var(--pz-red);
}

/* —— Room cards row —— */
.room-row {
  display: grid;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .room-row:not(.room-row--scroll) {
    grid-template-columns: repeat(auto-fill, minmax(26rem, 1fr));
  }
}

/* Home: one horizontal row + scroll + arrows */
.room-scroller {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.room-scroller__track {
  flex: 1;
  min-width: 0;
}

.room-row--scroll {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.6rem;
  margin: 0;
  padding: 0.4rem 0 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.room-row--scroll::-webkit-scrollbar {
  height: 7px;
}

.room-row--scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.22);
  border-radius: 999px;
}

.room-row--scroll .room-card {
  flex: 0 0 clamp(26rem, 72vw, 34rem);
  width: clamp(26rem, 72vw, 34rem);
  max-width: none;
  scroll-snap-align: start;
  min-height: 0;
}

.room-scroller__arrow {
  flex: 0 0 4.4rem;
  width: 4.4rem;
  align-self: center;
  height: 4.4rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 400;
  color: var(--pz-ink);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.room-scroller__arrow:hover:not(:disabled) {
  border-color: #2d5a38;
  color: #2d5a38;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.room-scroller__arrow:focus-visible {
  outline: 2px solid var(--pz-red);
  outline-offset: 3px;
}

.room-scroller__arrow:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 520px) {
  .room-scroller__arrow {
    flex-basis: 3.8rem;
    width: 3.8rem;
    height: 3.8rem;
    font-size: 2.4rem;
  }

  .room-row--scroll .room-card {
    flex-basis: min(26rem, 88vw);
    width: min(26rem, 88vw);
  }
}

.room-card {
  background: #f1f3f0;
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.room-card__img {
  height: 180px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.2rem;
  background-color: #ccc;
}

.room-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
  color: var(--pz-green-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.room-card p {
  margin: 0 0 1.2rem;
  flex: 1;
  font-size: 1.45rem;
  color: #333;
}

.room-card__price {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
  color: #444;
  line-height: 1.3;
}

.room-card__price .price-tag {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--pz-red);
  letter-spacing: 0.02em;
}

.room-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: auto;
}

.room-card__actions .btn {
  flex: 1 1 auto;
  min-width: 12rem;
  text-align: center;
}

.room-card__more {
  flex: 1 1 100%;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--pz-green);
  text-decoration: underline;
  text-align: center;
}

.room-card__more:hover {
  color: var(--pz-red);
}

/* —— Rooms detail page —— */
.page-rooms .activities-hub-intro {
  background: linear-gradient(180deg, #f4f1ec 0%, #eef1ee 100%);
  padding-inline: clamp(1.2rem, 4vw, 3.2rem);
}

.page-rooms .activities-hub-intro__inner {
  max-width: none;
  width: 100%;
}

@media (min-width: 900px) {
  .page-rooms .activities-hub-intro__text {
    font-size: clamp(1.75rem, 1.9vw, 2.15rem);
    line-height: 1.7;
  }
}

.room-detail-section {
  padding: 3.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.room-detail-section:last-of-type {
  border-bottom: 0;
}

.room-detail {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

.room-detail__media {
  min-height: 240px;
  border-radius: 16px;
  background-color: #d8dcd8;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.room-detail__body h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  margin: 0 0 0.8rem;
  color: var(--pz-ink);
  line-height: 1.15;
}

.room-detail__lede {
  font-size: 1.55rem;
  line-height: 1.55;
  color: #444;
  margin: 0 0 1.2rem;
}

.room-detail__list {
  margin: 0 0 1.6rem;
  padding-left: 1.4rem;
  font-size: 1.45rem;
  line-height: 1.55;
  color: #333;
}

.room-detail__list li {
  margin-bottom: 0.5rem;
}

.room-detail__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem 1.2rem;
  margin-bottom: 1.6rem;
}

.room-detail__price-row .price-tag {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--pz-red);
}

.room-detail__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.page-rooms .room-detail__cta .btn--ghost {
  color: var(--pz-ink);
  border-color: rgba(0, 0, 0, 0.28);
}

.page-rooms .room-detail__cta .btn--ghost:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.45);
  color: var(--pz-ink);
  text-decoration: none;
}

.page-rooms .room-detail__cta .btn--ghost:active {
  background: rgba(0, 0, 0, 0.1);
}

@media (min-width: 880px) {
  .room-detail {
    flex-direction: row;
    align-items: center;
    gap: 3.2rem;
  }

  .room-detail__media,
  .room-detail__body {
    flex: 1 1 50%;
    min-width: 0;
  }

  .room-detail__media {
    min-height: 380px;
  }

  .room-detail--reverse {
    flex-direction: row-reverse;
  }
}

/* —— Newsletter —— */
.newsletter-band {
  background: linear-gradient(135deg, #eef1ee 0%, #e0e6e0 100%);
  padding: 4rem 0;
  margin-bottom: 0;
}

.newsletter-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter-copy h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  color: var(--pz-green-soft);
  text-transform: uppercase;
}

.newsletter-copy p {
  margin: 0;
  max-width: 420px;
}

.newsletter-form {
  flex: 1;
  min-width: 260px;
  max-width: 480px;
}

.newsletter-form .field {
  display: flex;
  border: 1px solid #d8e1d3;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.newsletter-form input[type="email"] {
  flex: 1;
  border: 0;
  padding: 1.4rem 1.2rem;
  font-size: 1.6rem;
  font-family: var(--font-sans);
  min-width: 0;
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(230, 0, 18, 0.25);
}

.newsletter-form button {
  border: 0;
  background: var(--pz-green-soft);
  color: #fff;
  padding: 0 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--pz-ink);
}

/* —— Footer (single band: image | story + inline links + legal) —— */
.site-footer {
  position: relative;
  margin-top: 0;
  color: #1a2822;
  background: linear-gradient(
    90deg,
    #1e2a24 0%,
    #2a3d32 18%,
    #3d5a48 38%,
    #6d9078 62%,
    #a8c9b4 82%,
    #dceee4 94%,
    #eef6f1 100%
  );
  overflow: hidden;
}

.site-footer__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 100% 45%, rgba(255, 255, 255, 0.42), transparent 58%),
    radial-gradient(ellipse 50% 55% at 0% 60%, rgba(30, 48, 38, 0.35), transparent 55%),
    radial-gradient(ellipse 40% 45% at 72% 0%, rgba(94, 137, 108, 0.2), transparent 50%);
  opacity: 1;
}

.site-footer__ambient::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(94, 137, 108, 0.75), rgba(230, 0, 18, 0.45), rgba(255, 248, 235, 0.65), transparent);
  opacity: 0.95;
}

.site-footer__showcase {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

@media (max-width: 719px) {
  .site-footer {
    background: linear-gradient(180deg, #1e2a24 0%, #3d5a48 28%, #7aa892 58%, #dceee4 88%, #f2faf6 100%);
  }

  .site-footer__invitation {
    background: linear-gradient(180deg, #f6fcf9 0%, #e4f2ea 32%, #c5e0d0 100%);
  }

  .site-footer__invitation-title {
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.65), 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  .site-footer__invitation::after {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.72) 22%, rgba(255, 255, 255, 0.2) 45%, transparent 62%),
      linear-gradient(180deg, transparent 0%, transparent 68%, rgba(255, 255, 255, 0.22) 100%),
      url("../SITTING%20AREA/DSC_0207.jpg");
    background-position: 0 0, 0 0, 50% 92%;
    background-size: 100% 100%, 100% 100%, 165% auto;
    animation: none;
    opacity: 0.94;
  }
}

@media (min-width: 720px) {
  .site-footer__showcase {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: clamp(200px, 34vw, 380px);
  }
}

.site-footer__image {
  min-height: clamp(140px, 34vw, 220px);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  position: relative;
}

@media (min-width: 720px) {
  .site-footer__image {
    min-height: 0;
  }
}

.site-footer__image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 10, 8, 0.05) 0%, rgba(8, 12, 10, 0.55) 100%);
}

@media (min-width: 720px) {
  .site-footer__image::after {
    background: linear-gradient(90deg, rgba(8, 12, 10, 0.05) 0%, rgba(8, 12, 10, 0.1) 40%, rgba(46, 72, 58, 0.35) 78%, rgba(94, 137, 108, 0.22) 100%),
      linear-gradient(180deg, transparent 50%, rgba(6, 10, 8, 0.38) 100%);
  }
}

.site-footer__image--soft::after {
  background: linear-gradient(180deg, rgba(10, 14, 12, 0.35) 0%, rgba(8, 12, 10, 0.72) 100%);
}

@media (min-width: 720px) {
  .site-footer__image--soft::after {
    background: linear-gradient(90deg, rgba(10, 14, 12, 0.25) 0%, rgba(12, 18, 16, 0.88) 100%),
      linear-gradient(180deg, transparent 45%, rgba(6, 10, 8, 0.55) 100%);
  }
}

@keyframes site-footer-hotel-reveal {
  from {
    opacity: 0.55;
    background-size: 100% 100%, 100% 100%, 215% auto;
  }

  to {
    opacity: 0.98;
    background-size: 100% 100%, 100% 100%, 138% auto;
  }
}

.site-footer__invitation {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  padding: clamp(1.5rem, 3.2vw, 2.35rem) clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.2rem, 2.2vw, 1.75rem);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    90deg,
    rgba(42, 62, 52, 0.97) 0%,
    rgba(74, 108, 88, 0.95) 28%,
    rgba(140, 184, 160, 0.92) 62%,
    rgba(220, 238, 228, 0.98) 88%,
    #f0faf4 100%
  );
  border-top: 1px solid rgba(30, 55, 42, 0.12);
}

/* White mist (left) lifts toward the right; Palazoo photo emerges as if drawing nearer */
.site-footer__invitation::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.94) 12%,
      rgba(252, 253, 252, 0.62) 32%,
      rgba(244, 250, 246, 0.18) 52%,
      transparent 68%
    ),
    linear-gradient(90deg, transparent 0%, transparent 72%, rgba(255, 255, 255, 0.12) 88%, rgba(255, 255, 255, 0.28) 100%),
    url("../SITTING%20AREA/DSC_0207.jpg");
  background-repeat: no-repeat;
  background-position: 0 0, 0 0, 92% 45%;
  background-size: 100% 100%, 100% 100%, 138% auto;
  opacity: 0.98;
  transform: translateZ(0);
  animation: site-footer-hotel-reveal 2.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-footer__invitation > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 720px) {
  .site-footer__invitation {
    border-top: 0;
    border-left: 1px solid rgba(30, 55, 42, 0.14);
    padding-left: clamp(1.85rem, 3.2vw, 2.85rem);
    gap: 0.45rem;
  }

  .site-footer__invitation::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    z-index: 3;
    width: 4px;
    border-radius: 3px;
    background: linear-gradient(
      180deg,
      rgba(94, 137, 108, 0.5) 0%,
      rgba(230, 0, 18, 0.85) 45%,
      rgba(94, 137, 108, 0.45) 100%
    );
    box-shadow: 0 0 18px rgba(94, 137, 108, 0.35);
  }
}

.site-footer--admin .site-footer__invitation::after {
  opacity: 0.88;
  animation-duration: 2s;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__invitation::after {
    animation: none;
    opacity: 0.92;
    background-size: 100% 100%, 100% 100%, 138% auto;
  }
}

.site-footer__invitation-title {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0.02em;
  color: #0f1814;
  text-wrap: balance;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.75), 0 1px 0 rgba(255, 255, 255, 0.55), 0 2px 12px rgba(255, 255, 255, 0.45);
}

.site-footer__invitation-text {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(1.22rem, 1.35vw, 1.4rem);
  line-height: 1.45;
  color: rgba(28, 42, 34, 0.88);
}

.site-footer--admin .site-footer__invitation-title {
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
}

.site-footer--admin .site-footer__invitation-text {
  max-width: 48ch;
  color: rgba(28, 42, 34, 0.82);
}

.site-footer__shell {
  position: relative;
  z-index: 1;
  padding: 0 0 0.25rem;
}

.site-footer__links {
  margin-top: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(20, 45, 32, 0.12);
}

.site-footer__links-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(36, 78, 58, 0.72);
}

.site-footer__links-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.site-footer__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  color: #14221c;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(30, 70, 50, 0.18);
  box-shadow: 0 2px 10px rgba(20, 40, 30, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.site-footer__pill:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(94, 137, 108, 0.45);
  color: #0a1210;
  transform: translateY(-1px);
}

.site-footer__pill--cta {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, #c4000f 0%, var(--pz-red) 50%, #ff5050 100%);
  border-color: rgba(255, 180, 160, 0.35);
  box-shadow: 0 4px 22px rgba(230, 0, 18, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.site-footer__pill--cta:hover {
  background: linear-gradient(135deg, #a8000d 0%, #d40812 55%, #ff6a6a 100%);
  color: #fff;
}

.site-footer__pill--ghost {
  background: rgba(255, 255, 255, 0.25);
  border-style: dashed;
  border-color: rgba(50, 95, 72, 0.35);
  font-weight: 600;
}

.site-footer__links-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.18rem;
  line-height: 1.45;
}

.site-footer__links-list li {
  display: inline-flex;
  align-items: center;
}

.site-footer__links-list li:not(:last-child)::after {
  content: "·";
  margin-left: 0.65rem;
  color: rgba(40, 75, 58, 0.28);
  font-weight: 400;
  pointer-events: none;
}

.site-footer__links-list a {
  color: rgba(18, 36, 28, 0.88);
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__links-list a:hover {
  color: var(--pz-red);
  border-bottom-color: rgba(230, 0, 18, 0.45);
}

.site-footer__links-list a[aria-current="page"] {
  color: #0a1210;
  font-weight: 700;
}

.site-footer__legal {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  line-height: 1.45;
  color: rgba(38, 58, 48, 0.62);
}

.site-footer__credit {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
  line-height: 1.4;
  color: rgba(38, 58, 48, 0.55);
  letter-spacing: 0.02em;
}

.site-footer__legal small {
  font-size: inherit;
  color: inherit;
}

.site-footer__legal--admin {
  text-align: left;
}

@media (max-width: 719px) {
  .site-footer__links-list li:not(:last-child)::after {
    margin-left: 0.5rem;
  }

  .site-footer__links-pills .site-footer__pill {
    flex: 1 1 auto;
    min-width: calc(33.333% - 0.35rem);
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .site-footer__links-pills .site-footer__pill {
    min-width: calc(50% - 0.25rem);
  }
}

/* —— Forms (booking / admin) —— */
.form-page {
  padding: 3rem 0 5rem;
}

/* —— Booking page: stay (left) + event (right) —— */
.form-page--booking {
  padding-top: 2rem;
  padding-bottom: 6rem;
}

.booking-page__intro {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 3rem;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

.booking-page__eyebrow {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 0.6rem;
}

.booking-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.15;
  color: #fff;
}

.booking-page__note {
  font-size: 1.45rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.booking-mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 0 auto 1.8rem;
  max-width: 52rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-mode-tabs__tab {
  flex: 1 1 auto;
  min-width: 10rem;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font: inherit;
  font-weight: 600;
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.booking-mode-tabs__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.booking-mode-tabs__tab.is-active {
  color: var(--pz-ink);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: stretch;
}

.booking-split--tabs {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .booking-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.booking-payment-fieldset {
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 1rem 1.2rem 1.2rem;
  margin: 0;
}

.booking-payment-fieldset__legend {
  font-weight: 700;
  font-size: 1.45rem;
  padding: 0 0.35rem;
  color: var(--pz-ink);
}

.booking-payment-fieldset__help {
  margin: 0.4rem 0 1rem;
  font-size: 1.32rem;
  color: #666;
  line-height: 1.45;
}

.booking-payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  align-items: start;
  padding: 0.65rem 0;
  border-top: 1px solid #eee;
  cursor: pointer;
  font-size: 1.4rem;
  color: #333;
}

.booking-payment-option:first-of-type {
  border-top: 0;
  padding-top: 0.25rem;
}

.booking-payment-option input {
  margin-top: 0.35rem;
}

.booking-payment-option span:first-of-type {
  font-weight: 600;
}

.booking-payment-option__hint {
  grid-column: 2;
  font-size: 1.25rem;
  font-weight: 400;
  color: #666;
}

.booking-panel {
  background: var(--pz-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* [hidden] alone is overridden by display:flex above — must hide inactive tab panels */
.booking-panel[hidden] {
  display: none !important;
}

.booking-panel__banner {
  flex: 0 0 auto;
  height: clamp(120px, 22vw, 168px);
  background-size: cover;
  background-position: center;
  position: relative;
}

.booking-panel__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 58%);
  pointer-events: none;
}

.booking-panel__banner--stay {
  background-image: linear-gradient(135deg, rgba(48, 97, 54, 0.42), rgba(8, 12, 10, 0.12)),
    url("../../ACTIVITIES/GARDEN%20WALK%203.png");
}

.booking-panel__banner--event {
  background-image: linear-gradient(135deg, rgba(90, 42, 30, 0.4), rgba(8, 10, 12, 0.18)),
    url("../../ACTIVITIES/FOOD%20AND%20DRINKS%204.png");
}

.booking-panel__body {
  padding: 2rem 2.4rem 2.6rem;
  flex: 1 1 auto;
}

.booking-panel__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin: 0 0 0.6rem;
  color: var(--pz-ink);
  line-height: 1.2;
}

.booking-panel__lede {
  font-size: 1.45rem;
  line-height: 1.5;
  color: #555;
  margin: 0 0 1.6rem;
}

.booking-panel__mailto {
  margin: 1.2rem 0 0;
  font-size: 1.35rem;
  color: #666;
  text-align: center;
}

.booking-panel__mailto a {
  color: #2d5a38;
  font-weight: 600;
  text-decoration: underline;
}

.booking-panel__mailto a:hover {
  color: var(--pz-red);
}

body.page-booking .booking-panel__body .form-note a {
  color: #2d5a38;
  font-weight: 600;
  text-decoration: underline;
}

body.page-booking .booking-panel__body .form-note a:hover {
  color: var(--pz-red);
}

.booking-panel:target {
  outline: 3px solid rgba(230, 0, 18, 0.45);
  outline-offset: 4px;
  border-radius: 16px;
}

#private-events.booking-panel,
#stay-booking.booking-panel {
  scroll-margin-top: calc(var(--header-h) + 1.2rem);
}

.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--pz-line);
  border-radius: 12px;
  padding: 2.4rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.form-card h1 {
  font-family: var(--font-display);
  margin-top: 0;
}

.form-card__h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  margin: 0 0 1.2rem;
  line-height: 1.2;
}

.form-page .page-width > .form-card + .form-card {
  margin-top: 2.4rem;
}

.field-group {
  margin-bottom: 1.4rem;
}

.field-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #c8c8c8;
  border-radius: 6px;
  font: inherit;
}

.field-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  font-size: 1.35rem;
  color: #555;
}

.booking-stay-date-hint {
  margin: -0.35rem 0 1.1rem;
  max-width: 42rem;
}

.alert {
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.2rem;
}

.alert--ok {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #1b5e20;
}

/* Admin */
.admin-wrap {
  overflow-x: auto;
}

table.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
}

.admin-table th,
.admin-table td {
  border: 1px solid var(--pz-line);
  padding: 0.8rem 1rem;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: #f5f5f5;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.badge--paid {
  background: #e8f5e9;
  color: #1b5e20;
}

.badge--pending {
  background: #fff3e0;
  color: #e65100;
}

.toggle-pay {
  margin-top: 0.4rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--pz-red);
  text-decoration: underline;
  background: none;
  border: 0;
  padding: 0;
}

.badge--confirmed {
  background: #e3f2fd;
  color: #0d47a1;
}

.badge--awaiting {
  background: #fff8e1;
  color: #e65100;
}

.admin-main-shell {
  padding: 2rem 0 4rem;
  min-height: 55vh;
  background: #ececea;
}

.admin-app {
  display: grid;
  grid-template-columns: minmax(15rem, 22rem) minmax(0, 1fr);
  gap: 0;
  max-width: calc(var(--page-max) + 4rem);
  margin: 0 auto;
  padding: 0 1.6rem;
  align-items: start;
}

@media (max-width: 800px) {
  .admin-app {
    grid-template-columns: 1fr;
  }
}

.admin-sidebar {
  background: linear-gradient(165deg, #1c1c1c 0%, #121212 100%);
  color: #eee;
  border-radius: 14px;
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 801px) {
  .admin-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

.admin-sidebar__eyebrow {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.admin-sidebar__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}

.admin-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.admin-sidebar__link {
  display: block;
  padding: 1rem 1.15rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.admin-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  text-decoration: none;
}

.admin-sidebar__link.is-active {
  background: rgba(230, 0, 18, 0.18);
  border-color: rgba(230, 0, 18, 0.55);
  color: #fff;
}

.admin-sidebar__footer {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar__outlink {
  font-size: 1.32rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
}

.admin-sidebar__outlink:hover {
  color: #fff;
}

.admin-workspace {
  padding: 0 0 2rem 2rem;
  min-width: 0;
}

@media (max-width: 800px) {
  .admin-workspace {
    padding: 1.4rem 0 0 0;
  }
}

.admin-workspace__intro {
  margin-bottom: 1.8rem;
}

.admin-workspace__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--pz-ink);
}

.admin-workspace__lede {
  margin: 0;
  max-width: 52rem;
}

.admin-view__title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #333;
}

.admin-view > .admin-workspace__lede {
  margin-bottom: 1.25rem;
}

.admin-view[hidden] {
  display: none !important;
}

.admin-report-pdf {
  margin-bottom: 1.6rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border: 1px solid var(--pz-line);
  border-radius: 12px;
}

.admin-report-pdf__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.4rem;
}

.admin-report-pdf__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-report-pdf__label {
  font-weight: 600;
  font-size: 1.3rem;
  color: #333;
}

.admin-report-pdf__input {
  font: inherit;
  font-size: 1.4rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  min-width: 12rem;
}

.admin-report-pdf__btn {
  align-self: end;
}

.admin-report-pdf__presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.admin-report-pdf__preset {
  font-size: 1.32rem;
  padding: 0.45rem 0.85rem;
}

.admin-report-pdf__hint {
  margin: 0.85rem 0 0;
  max-width: 52rem;
}

.admin-arrival {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  background: #f4f7fb;
  border: 1px solid #c5d4e8;
}

.admin-arrival__title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 1.4rem;
  color: #1a365d;
}

.admin-arrival__hint {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
  color: #555;
}

.admin-booking__plan,
.admin-booking__arrival-badge {
  font-size: 1.15rem;
  font-weight: 600;
  color: #555;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: #f0f0ee;
}

.admin-booking__arrival-badge {
  background: #e8f4fd;
  color: #0d47a1;
}

.admin-toolbar--tight {
  gap: 0.5rem;
}

.admin-section {
  margin-bottom: 3.2rem;
}

.admin-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 600;
  margin: 0 0 1.2rem;
  color: var(--pz-ink);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.admin-section__empty {
  margin: 0;
}

.admin-booking {
  border: 1px solid var(--pz-line);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 1rem;
  overflow: hidden;
}

.admin-booking__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.2rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.5rem;
}

.admin-booking__summary::-webkit-details-marker {
  display: none;
}

.admin-booking__who {
  font-weight: 700;
  color: var(--pz-ink);
}

.admin-booking__hint {
  flex: 1 1 auto;
  color: #555;
  font-size: 1.4rem;
}

.admin-booking__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.admin-booking__body {
  padding: 0 1.4rem 1.4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-booking__id {
  margin: 1rem 0;
  font-size: 1.35rem;
  color: #666;
}

.admin-dl {
  display: grid;
  gap: 0.9rem 0;
  margin: 0 0 1.2rem;
}

.admin-dl > div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0.6rem 1rem;
  font-size: 1.45rem;
  align-items: start;
}

@media (max-width: 520px) {
  .admin-dl > div {
    grid-template-columns: 1fr;
  }
}

.admin-dl dt {
  margin: 0;
  font-weight: 700;
  color: #444;
}

.admin-dl dd {
  margin: 0;
  color: #222;
}

.admin-dd-block {
  white-space: pre-wrap;
  line-height: 1.5;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.page-admin .admin-toolbar .btn--ghost {
  color: var(--pz-ink);
  border-color: rgba(0, 0, 0, 0.22);
}

.page-admin .admin-toolbar .btn--ghost:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--pz-ink);
  text-decoration: none;
}

.admin-staff-note {
  padding-top: 0.4rem;
}

.admin-staff-note__label {
  display: block;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: #444;
}

.admin-staff-note__field {
  width: 100%;
  margin-bottom: 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  font: inherit;
  font-size: 1.4rem;
  resize: vertical;
  min-height: 7rem;
}

/* —— Admin: full-width + fill viewport (edge to edge below header) —— */
body.page-admin {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.page-admin .site-header .page-width {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-inline: clamp(1rem, 2.4vw, 2.5rem);
}

body.page-admin .admin-main-shell {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
}

body.page-admin .admin-app {
  flex: 1 1 auto;
  min-height: 0;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  align-items: stretch;
  grid-template-columns: minmax(16rem, 22vw) minmax(0, 1fr);
}

body.page-admin .admin-sidebar {
  border-radius: 0;
}

@media (min-width: 801px) {
  body.page-admin .admin-sidebar {
    top: var(--header-h);
    min-height: calc(100vh - var(--header-h));
    align-self: stretch;
  }
}

@media (max-width: 800px) {
  body.page-admin .admin-app {
    padding: 0 clamp(1rem, 3vw, 1.2rem) 2rem;
  }
}

body.page-admin .admin-workspace {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 1.25rem clamp(0.75rem, 1.8vw, 1.5rem) 2.5rem clamp(0.75rem, 1.8vw, 1.5rem);
}

body.page-admin .admin-workspace__intro,
body.page-admin .admin-view {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

body.page-admin .admin-workspace__lede,
body.page-admin .admin-workspace__intro .admin-workspace__lede {
  max-width: none;
}

body.page-admin .admin-report-pdf {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

body.page-admin .admin-report-pdf__hint {
  max-width: none;
}

@media (max-width: 800px) {
  body.page-admin .admin-workspace {
    padding: 1.25rem clamp(0.65rem, 2.5vw, 1rem) 2rem clamp(0.65rem, 2.5vw, 1rem);
  }
}
