/* ═══════════════════════════════════════════════════════════════
   Madeira Beach Yacht Club Vacations
   Yacht-club-by-the-water · navy, sand, gulf teal
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #f6f3ed;
  --bg-elevated: #fffcf7;
  --bg-subtle: #ebe6dc;
  --bg-dark: #0a2a3c;
  --bg-dark-2: #0d3549;
  --bg-ink: #071c28;

  --fg: #0c1a24;
  --fg-muted: #4a5c68;
  --fg-subtle: #6b7c88;
  --fg-on-dark: #f3efe6;
  --fg-on-dark-muted: #b8c5ce;

  --accent: #1a7a8c;
  --accent-hover: #156676;
  --accent-soft: #d4ebef;
  --accent-fg: #ffffff;

  --gold: #c4a574;
  --gold-soft: #e8dcc8;
  --gold-muted: #a88b5c;
  --gold-deep: #8c6e3f;

  --border: color-mix(in srgb, var(--fg) 12%, transparent);
  --border-strong: color-mix(in srgb, var(--fg) 28%, transparent);
  --border-dark: color-mix(in srgb, var(--fg-on-dark) 14%, transparent);
  --shadow: 0 12px 40px color-mix(in srgb, var(--bg-ink) 10%, transparent);
  --shadow-sm: 0 4px 16px color-mix(in srgb, var(--bg-ink) 6%, transparent);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  --text-xl: clamp(1.375rem, 1.15rem + 0.9vw, 1.75rem);
  --text-2xl: clamp(1.85rem, 1.35rem + 1.9vw, 2.65rem);
  --text-3xl: clamp(2.4rem, 1.55rem + 3.2vw, 3.75rem);
  --text-hero: clamp(2.9rem, 1.9rem + 4.8vw, 5rem);

  --leading-tight: 1.12;
  --leading-snug: 1.28;
  --leading-normal: 1.55;
  --tracking-display: -0.02em;
  --tracking-wide: 0.12em;

  --motion-quick: 150ms;
  --motion-fast: 250ms;
  --motion-slow: 400ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 72px;
  --max: 1120px;
  --max-wide: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-normal);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
.install-zip-banner {
  background: #0a2a3c;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
}
.install-zip-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.install-zip-banner a:hover { color: #d4ebef; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  margin: 0 0 var(--space-4);
  color: var(--fg);
}
p { margin: 0 0 var(--space-4); }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
button:disabled { cursor: not-allowed; opacity: 0.55; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  padding: var(--space-3) var(--space-4);
  z-index: 100;
}
.skip-link:focus { left: var(--space-4); top: var(--space-4); }

.container {
  width: min(100% - var(--space-5) * 2, var(--max));
  margin-inline: auto;
}
.container-wide {
  width: min(100% - var(--space-5) * 2, var(--max-wide));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.eyebrow-light { color: var(--accent-soft); }

.section { padding: clamp(4.25rem, 7vw, 6.5rem) 0; }
.section-lg { padding: clamp(5.5rem, 9vw, 8rem) 0; }
.section-dark {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
}
.section-dark h2, .section-dark h3 { color: var(--fg-on-dark); }
.section-dark p { color: var(--fg-on-dark-muted); }
.section-sand { background: var(--bg-subtle); }

.section-head {
  max-width: 36rem;
  margin-bottom: var(--space-7);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}
.section-head p {
  color: var(--fg-muted);
  font-size: var(--text-lg);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 0 var(--space-5);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--motion-fast) var(--ease-out),
              color var(--motion-fast) var(--ease-out),
              border-color var(--motion-fast) var(--ease-out),
              transform var(--motion-quick) var(--ease-out);
}
.btn:active { transform: scale(0.98); }
.btn-sm { min-height: 40px; padding: 0 var(--space-4); font-size: var(--text-xs); }
.btn-lg { min-height: 54px; padding: 0 var(--space-6); font-size: var(--text-base); }

.btn-primary {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  border-color: var(--bg-dark);
  box-shadow: inset 0 -2px 0 var(--gold);
}
.btn-primary:hover {
  background: var(--bg-ink);
  color: var(--fg-on-dark);
  border-color: var(--bg-ink);
}

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background: var(--bg-elevated);
  color: var(--fg);
  border-color: var(--fg);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-on-dark);
  border-color: var(--border-dark);
}
.btn-ghost:hover {
  background: color-mix(in srgb, var(--fg-on-dark) 8%, transparent);
  color: var(--fg-on-dark);
}

.btn-on-dark {
  background: var(--fg-on-dark);
  color: var(--bg-dark);
  border-color: var(--fg-on-dark);
}
.btn-on-dark:hover {
  background: #fff;
  color: var(--bg-ink);
}

/* ── Header & responsive nav ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--motion-fast) var(--ease-out),
              box-shadow var(--motion-fast) var(--ease-out);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg-elevated) 96%, transparent);
  box-shadow: var(--shadow-sm);
}
.site-header.is-nav-open {
  background: var(--bg-elevated);
}
.header-inner {
  height: 100%;
  width: min(100% - var(--space-5) * 2, var(--max-wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  position: relative;
  z-index: 60;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--fg);
  flex-shrink: 1;
  min-width: 0;
}
.brand:hover { color: var(--fg); }
.brand-mark {
  object-fit: contain;
  flex-shrink: 0;
  width: 40px;
  height: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-sub {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 400px) {
  .brand { gap: var(--space-3); }
  .brand-mark { width: 48px; }
  .brand-sub { font-size: 0.68rem; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: var(--radius-xs);
  transition: color var(--motion-quick) var(--ease-out),
              background var(--motion-quick) var(--ease-out);
}
.nav-link:hover,
.nav-link.is-active { color: var(--fg); }
.nav-link.is-active { font-weight: 500; }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
  flex-shrink: 0;
}
.header-cta { display: none; }

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--fg);
  transition: background var(--motion-quick) var(--ease-out),
              border-color var(--motion-quick) var(--ease-out);
}
.nav-toggle:hover {
  background: var(--bg-subtle);
  border-color: var(--border-strong);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.nav-toggle-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}
.nav-toggle-box span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transform-origin: center;
  transition: transform var(--motion-fast) var(--ease-out),
              opacity var(--motion-quick) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: color-mix(in srgb, var(--bg-ink) 45%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-fast) var(--ease-out);
}
.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.nav-backdrop[hidden] { display: none; }

.nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 55;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding:
    var(--space-4)
    max(var(--space-5), env(safe-area-inset-right))
    max(var(--space-6), env(safe-area-inset-bottom))
    max(var(--space-5), env(safe-area-inset-left));
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--motion-fast) var(--ease-out),
    opacity var(--motion-fast) var(--ease-out);
}
.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile[hidden] { display: none; }

.nav-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: var(--max);
  margin-inline: auto;
}
.nav-mobile-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin: 0 0 var(--space-2);
  padding: 0 var(--space-3);
}
.nav-mobile .nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: var(--space-3) var(--space-3);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--fg);
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.nav-mobile .nav-link:hover,
.nav-mobile .nav-link:focus-visible {
  background: var(--bg-subtle);
  color: var(--fg);
  outline: none;
}
.nav-mobile .nav-link.is-active {
  background: var(--accent-soft);
  color: var(--bg-dark);
  font-weight: 500;
}
.nav-mobile-cta {
  margin-top: var(--space-4);
  width: 100%;
  min-height: 48px;
}
.nav-mobile-meta {
  margin: var(--space-4) 0 0;
  padding: 0 var(--space-3);
  font-size: var(--text-xs);
  color: var(--fg-subtle);
  letter-spacing: 0.04em;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

@media (min-width: 960px) {
  .nav-desktop { display: flex; margin-left: auto; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
  .header-actions { margin-left: var(--space-4); gap: var(--space-3); }
  .nav-mobile,
  .nav-backdrop { display: none !important; }
  body.nav-open { overflow: auto; touch-action: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-mobile,
  .nav-backdrop,
  .nav-toggle-box span {
    transition: none;
  }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  color: var(--fg-on-dark);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img,
.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--bg-ink) 35%, transparent) 0%,
    color-mix(in srgb, var(--bg-ink) 55%, transparent) 45%,
    color-mix(in srgb, var(--bg-ink) 88%, transparent) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - var(--space-5) * 2, var(--max));
  margin-inline: auto;
  padding: var(--space-8) 0 var(--space-8);
}
.hero h1 {
  font-size: var(--text-hero);
  color: var(--fg-on-dark);
  max-width: 14ch;
  margin-bottom: var(--space-4);
  font-weight: 500;
}
.hero-lead {
  font-size: var(--text-lg);
  color: var(--fg-on-dark-muted);
  max-width: 36rem;
  margin-bottom: var(--space-6);
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  max-width: 520px;
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-dark);
}
@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--fg-on-dark);
  line-height: 1.2;
}
.hero-stat span {
  font-size: var(--text-xs);
  color: var(--fg-on-dark-muted);
  letter-spacing: 0.04em;
}

.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: var(--fg-on-dark);
  overflow: hidden;
}
.page-hero .hero-media,
.page-hero .hero-overlay { position: absolute; inset: 0; }
.page-hero .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - var(--space-5) * 2, var(--max));
  margin-inline: auto;
  padding: var(--space-8) 0 var(--space-7);
}
.page-hero h1 {
  font-size: var(--text-3xl);
  color: var(--fg-on-dark);
  margin-bottom: var(--space-2);
}
.page-hero p {
  color: var(--fg-on-dark-muted);
  max-width: 36rem;
  margin: 0;
  font-size: var(--text-lg);
  font-weight: 300;
}

.feature-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: transform var(--motion-fast) var(--ease-out),
              box-shadow var(--motion-fast) var(--ease-out);
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.feature-card .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
}
.feature-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.feature-card p {
  color: var(--fg-muted);
  font-size: var(--text-sm);
  margin: 0;
}
.feature-card-media {
  margin: calc(-1 * var(--space-5));
  margin-bottom: var(--space-4);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .split.reverse > :first-child { order: 2; }
}
.split-copy h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}
.split-copy p { color: var(--fg-muted); }
.split-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin: var(--space-5) 0 0;
}
.amenity-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--fg-muted);
  padding: var(--space-2) 0;
}
.amenity-list li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (min-width: 720px) {
  .stats-strip { grid-template-columns: repeat(4, 1fr); }
}
.stat-cell {
  background: var(--bg-elevated);
  padding: var(--space-5) var(--space-4);
  text-align: center;
}
.stat-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--bg-dark);
  line-height: 1.1;
}
.stat-cell span {
  font-size: var(--text-xs);
  color: var(--fg-subtle);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: var(--bg-subtle);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.wide { grid-column: span 2; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg-ink) 92%, transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  max-width: min(92vw, 1100px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-cap {
  color: var(--gold-soft);
  margin: var(--space-4) 0 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  letter-spacing: 0.01em;
  max-width: 40rem;
  text-align: center;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--fg-on-dark);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--fg-on-dark) 8%, transparent);
}
.lightbox-close { top: var(--space-4); right: var(--space-4); font-size: 1.75rem; }
.lightbox-prev { left: var(--space-3); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: var(--space-3); top: 50%; transform: translateY(-50%); }

.explore-grid {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 720px) {
  .explore-grid { grid-template-columns: 1fr 1fr; }
}
.explore-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.explore-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.explore-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.explore-card-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.explore-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.explore-card p {
  color: var(--fg-muted);
  font-size: var(--text-sm);
  flex: 1;
}

.cta-band {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  border-radius: var(--radius-2xl);
  padding: var(--space-7) var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, color-mix(in srgb, var(--accent) 25%, transparent), transparent),
    radial-gradient(ellipse 50% 60% at 10% 90%, color-mix(in srgb, var(--accent) 12%, transparent), transparent);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 {
  font-size: var(--text-2xl);
  color: var(--fg-on-dark);
  margin-bottom: var(--space-3);
}
.cta-band p {
  color: var(--fg-on-dark-muted);
  max-width: 32rem;
  margin: 0 auto var(--space-5);
}
.cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.form-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) {
  .form-card { padding: var(--space-6); }
}

.form-grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}

.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--fg);
}
.field .hint {
  font-size: var(--text-xs);
  color: var(--fg-subtle);
  margin: 0;
}
.field input,
.field select,
.field textarea {
  min-height: 48px;
  padding: 0 var(--space-4);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color var(--motion-quick), box-shadow var(--motion-quick);
  width: 100%;
}
.field textarea {
  min-height: 120px;
  padding: var(--space-3) var(--space-4);
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-2);
}
.form-note {
  font-size: var(--text-xs);
  color: var(--fg-subtle);
  margin: 0;
}

.alert {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
  border: 1px solid;
}
.alert-success {
  background: #e8f5ef;
  border-color: #b7ddc8;
  color: #1a4d35;
}
.alert-error {
  background: #fceeed;
  border-color: #efc5c1;
  color: #6b241c;
}
.alert-info {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 30%, transparent);
  color: var(--bg-dark);
}

.book-layout {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 900px) {
  .book-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}
.book-aside {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  position: sticky;
  top: calc(var(--header-h) + var(--space-4));
}
.book-aside h3 {
  color: var(--fg-on-dark);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}
.book-aside dl {
  margin: 0;
  display: grid;
  gap: var(--space-3);
}
.book-aside dt {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-on-dark-muted);
  margin: 0;
}
.book-aside dd {
  margin: var(--space-1) 0 0;
  font-size: var(--text-base);
  color: var(--fg-on-dark);
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--fg-on-dark-muted);
  border-bottom: 1px solid var(--border-dark);
}
.price-row.total {
  border: none;
  padding-top: var(--space-3);
  font-size: var(--text-lg);
  color: var(--fg-on-dark);
  font-weight: 500;
}
.price-row.total span:last-child {
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin: var(--space-4) 0;
  font-size: var(--text-xs);
  color: var(--fg-muted);
}
.cal-legend span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.swatch {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid var(--border);
}
.swatch-open { background: var(--bg-elevated); }
.swatch-pending { background: #e8d9a8; }
.swatch-booked { background: #c9a4a0; }
.swatch-blocked { background: #c5cdd3; }

.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: var(--space-4);
}
.month-grid .dow {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  padding: var(--space-1);
}
.day-cell {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: var(--text-xs);
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  background: var(--bg);
  color: var(--fg-muted);
}
.day-cell.open { background: var(--bg-elevated); border-color: var(--border); color: var(--fg); }
.day-cell.pending { background: var(--gold); color: #2a2110; font-weight: 600; }
.day-cell.confirmed,
.day-cell.booked { background: #5c3e3c; color: #f3efe6; font-weight: 600; text-decoration: line-through; text-decoration-thickness: 1px; }
.day-cell.blocked { background: #6e7a82; color: #f3efe6; font-weight: 600; }
.day-cell.empty { background: transparent; }
.day-cell.sat { font-weight: 600; }

.month-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin: var(--space-4) 0 var(--space-3);
}

.quote-block {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  font-weight: 400;
  line-height: var(--leading-snug);
  color: var(--fg);
  margin: 0 0 var(--space-4);
}
.quote-block cite {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--fg-muted);
}
.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-4);
  color: var(--gold);
}

.site-footer {
  background: var(--bg-ink);
  color: var(--fg-on-dark-muted);
  padding: var(--space-8) 0 var(--space-5);
  margin-top: var(--space-8);
}
.footer-inner {
  width: min(100% - var(--space-5) * 2, var(--max-wide));
  margin-inline: auto;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}
.footer-logo { margin-bottom: var(--space-3); filter: brightness(1.1); }
.footer-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--fg-on-dark);
  margin: 0 0 var(--space-2);
}
.footer-tag {
  font-size: var(--text-sm);
  margin: 0;
  max-width: 22ch;
}
.footer-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--fg-on-dark);
  margin: 0 0 var(--space-3);
}
.footer-links li,
.footer-meta li {
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
}
.footer-links a,
.footer-meta a {
  color: var(--fg-on-dark-muted);
  text-decoration: none;
}
.footer-links a:hover,
.footer-meta a:hover { color: var(--fg-on-dark); }

.footer-bottom {
  width: min(100% - var(--space-5) * 2, var(--max-wide));
  margin: var(--space-7) auto 0;
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-xs);
}
.footer-bottom p { margin: 0; }
.footer-note { opacity: 0.7; max-width: 50ch; }

.room-grid {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 720px) {
  .room-grid { grid-template-columns: 1fr 1fr; }
}
.room-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.room-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.room-card-body { padding: var(--space-5); }
.room-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.room-card p {
  color: var(--fg-muted);
  font-size: var(--text-sm);
  margin: 0;
}

.policy-list {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 720px) {
  .policy-list { grid-template-columns: 1fr 1fr; }
}
.policy-item {
  padding: var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.policy-item h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.policy-item p {
  color: var(--fg-muted);
  font-size: var(--text-sm);
  margin: 0;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.admin-table th,
.admin-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.admin-table th {
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  background: var(--bg-subtle);
}
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-pending { background: #e8d9a8; color: #4a3c12; }
.badge-confirmed { background: #b7ddc8; color: #1a4d35; }
.badge-declined,
.badge-cancelled { background: #efc5c1; color: #6b241c; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--fg-muted);
}

.two-col-text {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 720px) {
  .two-col-text { grid-template-columns: 1fr 1fr; gap: var(--space-7); }
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--fg-on-dark) 12%, transparent);
  border: 1px solid var(--border-dark);
  font-size: var(--text-xs);
  color: var(--fg-on-dark);
  margin-bottom: var(--space-4);
}
.rating-chip strong { font-weight: 600; }

/* ── Admin workspace + year-layout calendar ── */
.admin-page {
  --header-h: 56px;
  background: #f6f3ed;
  min-height: 100vh;
  color: #0c1a24;
}
.admin-page .admin-section { padding: 24px 0 48px; }
#yc-apply-btn.btn-primary {
  width: 100%;
  margin: 8px 0 0;
  min-height: 40px;
  background: #0a2a3c;
  border-color: #0a2a3c;
  color: #fff;
}
#yc-apply-btn.btn-primary:hover:not(:disabled) {
  background: #071c28;
  border-color: #071c28;
}
.admin-wrap {
  width: min(100% - 32px, 1480px);
  margin-inline: auto;
}

.admin-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid #e4ddd2;
  min-height: var(--header-h);
}
.admin-bar-inner {
  min-height: var(--header-h);
  width: min(100% - 24px, 1480px);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 8px 0;
}
.admin-bar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0a2a3c;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.admin-bar-brand img { display: block; }
.admin-bar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-bar-link {
  font-size: 13px;
  color: #5a6a75;
  text-decoration: none;
}
.admin-bar-link:hover { color: #0a2a3c; }

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  background: #f7f3ec;
  border: 1px solid #e4ddd2;
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  max-width: 100%;
}
.admin-tabs a {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #5a6a75;
  text-decoration: none;
}
.admin-tabs a.is-active {
  background: #0a2a3c;
  color: #fff;
}

.admin-login {
  max-width: 400px;
  margin: 48px auto;
}
.admin-login h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.admin-requests h1 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  margin: 0 0 16px;
}
.admin-requests h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin: 28px 0 12px;
}

.yc-layout {
  display: grid;
  gap: 20px;
}
@media (min-width: 1100px) {
  .yc-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: 24px;
    align-items: start;
  }
}
.yc-board {
  background: #fff;
  border: 1px solid #e4ddd2;
  border-radius: 12px;
  padding: 16px 16px 20px;
  box-shadow: 0 4px 16px color-mix(in srgb, #071c28 6%, transparent);
  min-width: 0;
}
.yc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ebe6dc;
}
.yc-toolbar h2 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #0a2a3c;
  text-align: center;
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}
.yc-nav {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #4a5c68;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  border: 1px solid #e4ddd2;
  background: #fffcf7;
}
.yc-nav:hover { background: #f7f3ec; color: #0a2a3c; border-color: #cfc6b8; }

.yc-year {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
}
@media (min-width: 760px) {
  .yc-year { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 16px; }
}
@media (min-width: 1100px) {
  .yc-year { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px 18px; }
}
.yc-month {
  min-width: 0;
}
.yc-month-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 8px;
  color: #0a2a3c;
}
.yc-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}
.yc-dow {
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #6b7c88;
  font-weight: 600;
  padding: 0 0 4px;
}
.yc-day {
  aspect-ratio: 1;
  border: 1px solid #ebe6dc;
  background: #fff;
  color: #5a6a75;
  font-size: 11px;
  font-family: inherit;
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  min-width: 0;
  width: 100%;
}
.yc-day.is-empty {
  border: none;
  background: transparent;
  pointer-events: none;
}
.yc-day.is-available { background: #fffcf7; color: #4a5c68; }
.yc-day.is-unavailable { background: #ebe6dc; color: #6b7c88; }
.yc-day.is-past {
  background: repeating-linear-gradient(-45deg, #f6f3ed, #f6f3ed 3px, #ebe6dc 3px, #ebe6dc 6px);
  color: #a8b4bc;
  cursor: pointer;
}
.yc-day.is-pending { background: #c4a574; color: #0a2a3c; border-color: #a88b5c; }
.yc-day.is-booked { background: #0a2a3c; color: #f3efe6; border-color: #071c28; }
.yc-day.is-partial { background: #1a7a8c; color: #fff; border-color: #156676; }
.yc-day.is-today { box-shadow: inset 0 0 0 2px #0a2a3c; }
.yc-day.is-selected {
  outline: 2px solid #1a7a8c;
  outline-offset: -1px;
  z-index: 1;
  position: relative;
}
.yc-day:hover:not(.is-empty) {
  filter: brightness(0.97);
}

.yc-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
@media (min-width: 1100px) {
  .yc-side { position: sticky; top: calc(var(--header-h) + 16px); }
}
.yc-card {
  background: #fff;
  border: 1px solid #e4ddd2;
  border-radius: 12px;
  padding: 0 0 14px;
  box-shadow: 0 4px 16px color-mix(in srgb, #071c28 6%, transparent);
  overflow: hidden;
}
.yc-card h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  padding: 12px 16px;
  border-bottom: 1px solid #ebe6dc;
  color: #0a2a3c;
  background: #fffcf7;
}
.yc-card form,
.yc-legend {
  padding: 12px 16px 0;
}
.yc-card-pad {
  padding: 12px 16px 0;
  margin: 0;
}
.yc-kpi {
  margin: 0;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 14px 16px 4px !important;
  background: transparent !important;
  box-shadow: none !important;
}
.yc-kpi strong {
  font-size: 1.75rem;
  line-height: 1.1;
}
.yc-kpi span {
  display: block;
  margin-top: 4px;
  line-height: 1.35;
}
.yc-upcoming {
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
}
.yc-upcoming li {
  padding: 10px 16px;
  border-bottom: 1px solid #ebe6dc;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.yc-upcoming li:last-child { border-bottom: 0; }
.yc-upcoming strong {
  font-size: 14px;
  font-weight: 600;
  color: #0a2a3c;
}
.yc-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 14px;
  margin-bottom: 8px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #e4ddd2;
  border-radius: 8px;
  background: #fff;
  position: relative;
}
.yc-radio:has(input:checked) {
  border-color: #a8b4bc;
  background: #fffcf7;
}
.yc-bar {
  width: 3px;
  height: 22px;
  border-radius: 1px;
  position: absolute;
  left: 0;
  top: 6px;
}
.yc-bar-open { background: #1a7a8c; }
.yc-bar-off { background: #a88b5c; }
.yc-radio input { margin-left: 6px; }
.yc-legend {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.yc-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4a5c68;
}
.yc-legend-rule {
  height: 1px;
  background: #ebe6dc;
  margin: 2px 0;
  padding: 0 !important;
}
.yc-swatch {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  border: 1px solid #e4ddd2;
  flex-shrink: 0;
}
.yc-swatch.is-available { background: #fffcf7; }
.yc-swatch.is-unavailable { background: #ebe6dc; }
.yc-swatch.is-past {
  background: repeating-linear-gradient(-45deg, #f6f3ed, #f6f3ed 3px, #ebe6dc 3px, #ebe6dc 6px);
}
.yc-swatch.is-pending { background: #c4a574; }
.yc-swatch.is-booked { background: #0a2a3c; }
.yc-swatch.is-partial { background: #1a7a8c; }
#yc-apply-btn {
  width: 100%;
  margin: 8px 0 0;
  background: #0a2a3c;
  border-color: #0a2a3c;
  color: #fff;
}
#yc-apply-btn:hover:not(:disabled) {
  background: #071c28;
  border-color: #071c28;
}
.yc-selected {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: #5a6a75;
}
.yc-clear {
  display: block;
  width: 100%;
  margin: 6px 0 0;
  font-size: 12px;
  color: #5a6a75;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.yc-clear:hover { color: #0a2a3c; }
.yc-note {
  font-size: 12px;
  color: #6b7c88;
  margin: 14px 16px 0;
  line-height: 1.45;
}

.admin-page .alert { margin-bottom: 14px; }

.header-phone {
  display: none;
  color: var(--fg);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 1180px) {
  .header-phone { display: inline; }
}
.header-phone:hover { color: var(--accent); }
.nav-mobile-phone {
  display: block;
  margin-top: var(--space-4);
  color: var(--fg-muted);
  text-decoration: none;
  font-size: var(--text-sm);
}

.explore-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out);
}
.explore-card-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: inherit;
}
.explore-card-link .text-link {
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 500;
}
@media (min-width: 960px) {
  .explore-grid-hub { grid-template-columns: repeat(3, 1fr); }
  .explore-grid-hub .explore-card { grid-column: auto; }
}
@media (min-width: 720px) {
  .explore-grid-5 { grid-template-columns: 1fr 1fr; }
}

.faq-list { display: grid; gap: var(--space-3); }
.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 var(--space-4);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  padding: var(--space-4) 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--fg-subtle); font-size: 1.25rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 var(--space-4); color: var(--fg-muted); font-size: var(--text-sm); }

.status-dl { display: grid; gap: 10px; margin: var(--space-4) 0; }
.status-dl dt { font-size: var(--text-xs); letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-subtle); }
.status-dl dd { margin: 0; }


@media (max-width: 639px) {
  .admin-bar-inner { gap: 8px; }
  .admin-bar-brand span { display: none; }
  .admin-tabs a { padding: 6px 10px; font-size: 12px; }
  .yc-day { font-size: 10px; }
  .yc-year { gap: 14px 8px; }
  .yc-board { padding: 12px; }
  .yc-toolbar h2 { font-size: 13px; }
  .admin-wrap { width: min(100% - 16px, 1480px); }
  .admin-page .admin-section { padding: 12px 0 28px; }
}


/* ── Explore guides ─────────────────────────────────────────── */
.page-hero.guide-hero { min-height: min(72vh, 640px); }
.page-hero.guide-hero h1 { font-size: var(--text-hero); max-width: 18ch; }
.page-hero.guide-hero p { max-width: 40rem; }

.guide-subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  background: color-mix(in srgb, var(--bg-elevated) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.guide-subnav-inner {
  display: flex;
  gap: var(--space-1);
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}
.guide-subnav a {
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--fg-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.guide-subnav a:hover { color: var(--fg); background: var(--bg-subtle); }
.guide-subnav a.is-active {
  color: var(--fg-on-dark);
  background: var(--bg-dark);
}

.guide-lede {
  font-size: var(--text-lg);
  color: var(--fg-muted);
  max-width: 46rem;
}

.guide-toc {
  margin: var(--space-6) 0 0;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.guide-toc-label {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin: 0 0 var(--space-3);
}
.guide-toc ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}
.guide-toc li { counter-increment: toc; }
.guide-toc a {
  color: var(--fg);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
}
.guide-toc a::before {
  content: counter(toc) " · ";
  color: var(--accent);
  font-weight: 400;
}
.guide-toc a:hover { color: var(--accent); }

.dist-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
}
.dist-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 7.5rem;
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.dist-chip-k {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.dist-chip-v {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--fg);
}

.guide-mosaic {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 800px) {
  .guide-mosaic {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .guide-mosaic figure:first-child { grid-row: 1 / span 2; }
}
.guide-mosaic figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 160px;
}
.guide-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
}
.guide-mosaic figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, color-mix(in srgb, var(--bg-ink) 72%, transparent));
  color: var(--fg-on-dark);
  font-size: var(--text-xs);
}

.spot-grid {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 720px) {
  .spot-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1040px) {
  .spot-grid.spot-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.spot-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.spot-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.spot-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spot-card-body { padding: var(--space-5); }
.spot-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.spot-card p { color: var(--fg-muted); font-size: var(--text-sm); margin: 0 0 var(--space-3); }
.spot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.spot-meta span {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 8px;
  border-radius: 999px;
}

.week-plan { display: grid; gap: var(--space-4); }
@media (min-width: 800px) {
  .week-plan { grid-template-columns: 1fr 1fr; }
}
.week-day {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.week-day-label {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1.1;
}
.week-day-label small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-top: 4px;
}
.week-day p { margin: 0; color: var(--fg-muted); font-size: var(--text-sm); }

.note-callout {
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  color: var(--fg);
}
.note-callout p { margin: 0; font-size: var(--text-sm); }
.note-callout strong { display: block; margin-bottom: 6px; }

.split-media.wide { aspect-ratio: 16 / 10; }

@media (min-width: 960px) {
  /* Six Explore guides: 3 + 3 */
  .explore-grid-hub { grid-template-columns: repeat(6, 1fr); }
  .explore-grid-hub .explore-card { grid-column: span 2; }
}

.place-legend {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-5) 0 0;
}
@media (min-width: 720px) {
  .place-legend { grid-template-columns: 1fr 1fr 1fr; }
}
.place-legend-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.place-legend-item strong { display: block; font-size: var(--text-sm); margin-bottom: 4px; }
.place-legend-item span { color: var(--fg-muted); font-size: var(--text-sm); }

.place-group { margin-top: var(--space-8); }
.place-group:first-of-type { margin-top: 0; }

.place-grid {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 720px) {
  .place-grid { grid-template-columns: 1fr 1fr; }
}

.place-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
}
.place-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.place-badge {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}
.place-card-nearby .place-badge,
.place-card-distant .place-badge {
  background: color-mix(in srgb, var(--bg-dark) 10%, transparent);
  color: var(--fg);
}
.place-mins {
  font-size: var(--text-xs);
  color: var(--fg-subtle);
  white-space: nowrap;
}
.place-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-1);
}
.place-kind {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin: 0 0 var(--space-3);
}
.place-card p { color: var(--fg-muted); font-size: var(--text-sm); }
.place-addr {
  font-size: var(--text-xs) !important;
  color: var(--fg-subtle) !important;
  margin-top: auto !important;
}
.place-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-4);
}
.place-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  text-decoration: none;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg);
}
.place-link:hover { background: var(--bg-subtle); color: var(--fg); }
.place-link-map {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  border-color: var(--bg-dark);
}
.place-link-map:hover { background: var(--bg-dark-2); color: var(--fg-on-dark); }

.book-cal-card { margin-top: var(--space-6); }
.book-cal-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
}
.book-cal-toolbar h2 { font-size: var(--text-xl); margin: 0; }
.book-cal-nav { display: flex; align-items: center; gap: 12px; }
.book-cal-range {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  min-width: 10rem;
  text-align: center;
  white-space: nowrap;
  padding: 0 4px;
}
.book-cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--fg);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}
.book-cal-btn:hover:not(:disabled) {
  border-color: var(--fg);
  background: var(--bg-subtle);
}
.book-cal-btn:disabled { opacity: 0.4; cursor: not-allowed; }
@media (max-width: 639px) {
  .book-cal-toolbar { flex-direction: column; align-items: stretch; gap: var(--space-3); }
  .book-cal-nav { justify-content: space-between; }
  .book-cal-range { min-width: 0; flex: 1; }
}
.book-cal-months { display: grid; gap: var(--space-5); }
@media (min-width: 800px) {
  .book-cal-months { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-5); }
}
.book-cal-month {
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.book-cal-month .month-title { text-align: center; margin: 0 0 var(--space-3); }
.book-cal-month .month-grid { margin-bottom: 0; }


/* ═══════════════════════════════════════════════════════════════
   Premium stay update — gold, air, reveal, quote, sticky CTA
   ═══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-slide { transition: none; }
}

.sticky-book-bar {
  display: none;
}
@media (max-width: 959px) {
  .sticky-book-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: 10px max(16px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    background: color-mix(in srgb, var(--bg-ink) 94%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
    color: var(--fg-on-dark);
    box-shadow: 0 -8px 28px color-mix(in srgb, var(--bg-ink) 30%, transparent);
  }
  .sticky-book-bar p {
    margin: 0;
    font-size: var(--text-xs);
    color: var(--fg-on-dark-muted);
  }
  .sticky-book-bar strong {
    display: block;
    font-size: var(--text-sm);
    color: var(--fg-on-dark);
    font-weight: 500;
  }
  .sticky-book-bar .btn {
    flex-shrink: 0;
    min-height: 44px;
    background: var(--gold);
    color: var(--bg-ink);
    border-color: var(--gold);
    box-shadow: none;
  }
  .sticky-book-bar .btn:hover {
    background: var(--gold-soft);
    color: var(--bg-ink);
    border-color: var(--gold-soft);
  }
  body:not(.page-book):not(.page-thanks):not(.admin-page) {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
  body.page-book .sticky-book-bar,
  body.page-thanks .sticky-book-bar,
  body.admin-page .sticky-book-bar,
  body.nav-open .sticky-book-bar {
    display: none;
  }
}

.trust-strip {
  display: grid;
  gap: var(--space-6);
}
.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid color-mix(in srgb, var(--gold) 35%, var(--border));
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.trust-chip strong {
  font-weight: 600;
  color: var(--bg-dark);
  letter-spacing: 0;
  text-transform: none;
  font-size: var(--text-sm);
}
.trust-quotes {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 800px) {
  .trust-quotes { grid-template-columns: repeat(3, 1fr); }
}
.trust-quote {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.trust-quote blockquote {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  line-height: var(--leading-snug);
  color: var(--fg);
}
.trust-quote cite {
  display: block;
  font-style: normal;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.trust-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--fg-subtle);
  margin: 0;
}

.quote-strip {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-dark);
}
.quote-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.quote-season {
  margin: 0;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.quote-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.quote-badge.is-available {
  background: #b7ddc8;
  color: #1a4d35;
}
.quote-badge.is-held {
  background: var(--gold);
  color: #2a2110;
}
.quote-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 8px 0;
  font-size: var(--text-sm);
  color: var(--fg-on-dark-muted);
  border-bottom: 1px solid var(--border-dark);
}
.quote-row.total {
  border: none;
  padding-top: var(--space-3);
  color: var(--fg-on-dark);
  font-weight: 500;
  font-size: var(--text-base);
}
.quote-row.total span:last-child {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold-soft);
}
.quote-row.discount span:last-child { color: #b7ddc8; }
.quote-note {
  margin: var(--space-3) 0 0;
  font-size: var(--text-xs);
  color: var(--fg-on-dark-muted);
}
.quote-strip .form-note { color: var(--fg-on-dark-muted); }

.gallery-chapter {
  font-size: var(--text-2xl);
  margin: var(--space-8) 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 40%, var(--border));
}
.gallery-chapter:first-child { margin-top: 0; }
.gallery-chapter span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: var(--space-2);
}
.gallery-story + .gallery-story { margin-top: var(--space-7); }

.thanks-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  max-width: 40rem;
  margin-inline: auto;
}
.thanks-steps {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-5) 0 0;
  padding: 0;
  counter-reset: step;
}
.thanks-steps li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: var(--space-3);
  align-items: start;
  list-style: none;
}
.thanks-steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-size: var(--text-xs);
  font-weight: 600;
}
.thanks-ref {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--bg-dark);
  letter-spacing: 0.04em;
}

.cal-unavailable-note {
  font-size: var(--text-xs);
  color: var(--fg-muted);
  margin: 0 0 var(--space-4);
}
.swatch-booked { background: #5c3e3c; }
.swatch-pending { background: var(--gold); }
.swatch-blocked { background: #6e7a82; }

/* ── Theme parks guide ──────────────────────────────────────── */
.parks-map,
#theme-parks-map {
  height: 420px;
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-subtle);
  z-index: 0;
  overflow: hidden;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
  font-size: var(--text-sm);
  color: var(--fg-muted);
}
.map-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex: 0 0 auto;
  border: 2px solid var(--bg-elevated);
  box-shadow: 0 0 0 1px var(--border);
}
.map-legend-home { background: var(--gold); box-shadow: 0 0 0 1px var(--bg-dark); }
.map-legend-park { background: var(--bg-dark); }

.park-marker {
  background: transparent;
  border: none;
}
.park-marker span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #fff, 0 2px 8px color-mix(in srgb, var(--bg-ink) 35%, transparent);
}
.park-marker-home span {
  background: var(--gold);
  border: 2px solid var(--bg-dark);
}
.park-marker-park span {
  background: var(--bg-dark);
}

.park-cards {
  display: grid;
  gap: var(--space-5);
}
.park-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.park-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}
.park-card-head h3 {
  margin: 0;
  font-size: var(--text-xl);
}
.park-drive {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.park-card > p {
  margin: 0;
  color: var(--fg-muted);
  font-size: var(--text-sm);
}
.park-contact {
  margin: 0;
  display: grid;
  gap: 10px;
}
.park-contact > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: var(--space-3);
  align-items: start;
}
@media (max-width: 520px) {
  .park-contact > div { grid-template-columns: 1fr; gap: 2px; }
}
.park-contact dt {
  margin: 0;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  padding-top: 2px;
}
.park-contact dd {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--fg);
}
.park-note {
  color: var(--fg-subtle);
  font-size: var(--text-xs);
}
.deal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.deal-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}
.deal-links a:hover {
  color: var(--accent-hover);
  background: color-mix(in srgb, var(--accent-soft) 70%, var(--accent) 12%);
}
.park-foot {
  margin: 0;
  padding-top: var(--space-2);
  border-top: 1px solid var(--border);
  font-size: var(--text-sm);
  color: var(--fg-muted);
}


/* Ops feature pack: waitlist + quote share */
.waitlist-card {
  border: 1px solid #e8b4b4;
  box-shadow: 0 0 0 1px rgba(180, 40, 40, 0.06);
}
.waitlist-card.is-visible { display: block; }
.book-unavailable-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.quote-badge.is-held {
  background: #7f1d1d;
  color: #fff;
}
.quote-waitlist-cta { margin: 0.75rem 0 0; }
.quote-actions {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 0.55rem;
}
.quote-email-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.quote-email-row input[type="email"] {
  flex: 1 1 10rem;
  min-width: 0;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.2);
  color: inherit;
  padding: 0.4rem 0.55rem;
}
.quote-action-status {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.85;
}
