/* ==========================================================================
   Layout — containers, header/nav, hero, story, footer structure
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

section { position: relative; }

/* ---------------------------------------------------------------------- */
/* Site header                                                             */
/* ---------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  z-index: 500;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base), height var(--transition-base);
}

.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: var(--shadow-sm);
  height: 72px;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--color-ivory);
  transition: color var(--transition-base);
}

.is-scrolled .brand { color: var(--color-sage-dark); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-ivory);
  position: relative;
  padding-block: var(--space-3xs);
  transition: color var(--transition-base);
}

.is-scrolled .nav-link { color: var(--color-charcoal-soft); }

.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right var(--transition-base);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
}

.nav-link.is-active { color: var(--color-gold); }

.nav-link--logout {
  opacity: 0.75;
  font-size: var(--fs-xs);
  letter-spacing: 0.03em;
}

.nav-link--logout:hover { opacity: 1; }
.nav-link--logout::after { display: none; }


/* -- Mobile nav toggle -- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ivory);
  margin-inline: auto;
  transition: transform var(--transition-fast), opacity var(--transition-fast), background var(--transition-fast);
}

.is-scrolled .nav-toggle span { background: var(--color-sage-dark); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-toggle[aria-expanded="true"] span { background: var(--color-sage-dark); }

/* -- Mobile nav panel -- */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: var(--color-ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
  pointer-events: none;
}

.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-link {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--color-sage-dark);
}

.nav-mobile-cta {
  margin-top: var(--space-md);
  padding: var(--space-xs) var(--space-lg);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-pill);
  color: var(--color-gold);
  font-size: var(--fs-base);
}

.nav-mobile-link--logout {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--color-charcoal-mute);
  margin-top: var(--space-md);
}


/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-sage-dark) 0%, var(--color-sage) 55%, var(--color-sage-light) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(42,42,37,0.15) 0%, rgba(42,42,37,0.55) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 26px);
}

/* Real media (photo or looping video) dropped into .hero-media fills the
   entire hero, edge to edge, at any viewport size. Swap an <img> for a
   <video autoplay muted loop playsinline> with no CSS changes needed. */
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
}

.media-tag {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
  font-size: var(--fs-xs);
  letter-spacing: 0.03em;
  color: var(--color-ivory);
  background: rgba(42, 42, 37, 0.4);
  border: 1px solid rgba(255,255,255,0.25);
  padding: var(--space-3xs) var(--space-xs);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
}

.media-tag svg { width: 14px; height: 14px; flex-shrink: 0; }

.media-tag--hero {
  bottom: var(--space-md);
  right: var(--space-md);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(216,189,139,0.25) 0%, rgba(216,189,139,0) 70%);
  pointer-events: none;
}

.hero-icons {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-paw {
  position: absolute;
  color: rgba(255, 255, 255, 0.08);
  width: 90px;
  height: 90px;
}

.floating-paw--1 { top: 12%; left: 8%; }
.floating-paw--2 { bottom: 18%; right: 10%; width: 60px; height: 60px; }
.floating-paw--3 { top: 55%; left: 82%; width: 44px; height: 44px; }

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-ivory);
  padding-top: var(--header-height);
  padding-bottom: var(--space-3xl);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, var(--fs-3xl));
  line-height: 1;
  margin-block: var(--space-sm) var(--space-xs);
  letter-spacing: 0.01em;
}

.hero-date {
  font-size: var(--fs-md);
  letter-spacing: 0.04em;
  color: var(--color-gold-soft);
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
}

.hero-text {
  text-shadow: 0px 2px 18px rgba(0, 0, 0, 0.35);
}
.scroll-cue {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-ivory);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: bob 2.4s ease-in-out infinite;
}

.scroll-cue svg { width: 16px; height: 16px; }

/* ---------------------------------------------------------------------- */
/* Story section                                                          */
/* ---------------------------------------------------------------------- */

.story {
  padding-block: var(--space-3xl);
  background: var(--color-ivory);
}

.story-inner { text-align: center; }

.divider {
  display: flex;
  justify-content: center;
  color: var(--color-gold);
  margin-block: var(--space-lg);
}

.divider-icon { width: 70px; height: 28px; }

/* -- Story photo carousel -- */

.story-carousel {
  position: relative;
  margin-top: var(--space-xl);
}

.carousel-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;              /* Firefox */
  padding-inline: var(--container-pad);
  padding-block: var(--space-2xs);
}

.carousel-track::-webkit-scrollbar { display: none; } /* WebKit */

/* -- Column-based photo gallery --
   Each column spans two rows: a 'single' column is one tall photo; a
   'stacked' column is two photos, one per row. Column width interpolates
   ~600px at a 1600px viewport; height ~800px at a 1000px window. Captions
   overlay each photo with a blurred backdrop. Square corners for a classy,
   editorial feel. */

.gallery-track {
  display: flex;
  gap: clamp(0.75rem, 1vw, 1.25rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: var(--container-pad);
  padding-block: var(--space-2xs);
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-column {
  flex: 0 0 auto;
  /* ~600px wide at 1600px viewport, fluid down for smaller screens */
  width: clamp(280px, 37.5vw, 600px);
  /* ~800px tall at 1000px window height */
  height: clamp(440px, 80vh, 800px);
  scroll-snap-align: center;
  display: grid;
  gap: clamp(0.75rem, 1vw, 1.25rem);
}

.gallery-column--single { grid-template-rows: 1fr; }
.gallery-column--stacked { grid-template-rows: 1fr 1fr; }

.gallery-tile {
  position: relative;
  margin: 0;
  height: 100%;
  overflow: hidden;               /* square corners — no radius */
  background: var(--color-sage-mist);
  box-shadow: var(--shadow-md);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-base);
}

.gallery-tile:hover img { transform: scale(1.04); }

/* Caption sits in a compact frosted capsule so it reads clearly without
   masking the whole bottom of the photo */
.gallery-tile-caption {
  position: absolute;
  left: var(--space-md);
  bottom: var(--space-md);
  right: auto;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3xs);
  max-width: calc(100% - var(--space-md) * 2);
  padding: 0.35em 0.7em;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(28, 30, 26, 0.32);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
  backdrop-filter: blur(8px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.gallery-tile-icon {
  width: 13px;
  height: 13px;
  color: var(--color-gold-light, #e8c98f);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .gallery-column { width: min(82vw, 420px); }
}

/* Arrow controls (hidden on touch / small screens, shown on desktop) */
.carousel-arrow {
  position: absolute;
  top: calc(50% - var(--space-lg));
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-paper);
  color: var(--color-sage-dark);
  box-shadow: var(--shadow-md);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel-arrow svg { width: 22px; height: 22px; }
.carousel-arrow:hover { background: var(--color-ivory-deep); }
.carousel-arrow:active { transform: translateY(-50%) scale(0.94); }
.carousel-arrow[disabled] { opacity: 0.35; cursor: default; pointer-events: none; }

.carousel-arrow--prev { left: var(--space-md); }
.carousel-arrow--next { right: var(--space-md); }

@media (min-width: 861px) and (hover: hover) {
  .carousel-arrow { display: flex; }
}

/* ---------------------------------------------------------------------- */
/* Event sections (Wedding / Hangover)                                    */
/* ---------------------------------------------------------------------- */

.event {
  padding-block: var(--space-3xl);
  background: var(--color-ivory);
}

.event--alt {
  background: var(--color-ivory-deep);
}

/* -- Wedding section: floral decorations top & bottom -- */

/* -- Wedding section: floral decorations top & bottom --
   The section gets extra top/bottom padding so the header and schedule
   content always sits in the clear gap *between* the two floral accents,
   never underneath them. Flower width is kept modest so they read as an
   accent rather than a full-width band. */

.wedding-section {
  overflow: hidden;
  padding-top: calc(clamp(9rem, 4rem + 12vw, 13rem) - 20px);
  padding-bottom: clamp(9rem, 4rem + 12vw, 13rem);
}

.flower-decor {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 90vw);
  pointer-events: none;
  z-index: 0;
}

.flower-decor--top { top: 0; }
.flower-decor--bottom { bottom: 0; }

/* Content always stacks above the floral accents */
.wedding-section > .container {
  position: relative;
  z-index: 1;
}

/* -- The Finer Details — luxury detail grid for reception guests -- */

.finer-details {
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-line);
  text-align: center;
}

.finer-details-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-lg);
  color: var(--color-sage-dark);
  margin-bottom: var(--space-xl);
}

.finer-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.finer-detail {
  padding: var(--space-lg) var(--space-md);
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.finer-detail:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.finer-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-sm);
  border-radius: 50%;
  background: var(--color-gold-mist, var(--color-ivory-deep));
  color: var(--color-gold);
}

.finer-detail-icon svg { width: 26px; height: 26px; }

.finer-detail h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-md);
  color: var(--color-sage-dark);
  margin-bottom: var(--space-2xs);
}

.finer-detail p {
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: var(--color-charcoal-soft);
}

@media (max-width: 860px) {
  .finer-details-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .finer-details-grid { grid-template-columns: 1fr; }
}

.flower-decor-inner {
  position: relative;
  width: 100%;
}

/* PNG artwork on top */
.flower-png {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
}

/* Highlight SVG sits behind the PNG, exactly aligned (same frame size) */
.flower-highlight {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.flower-highlight svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* The gold ovals shimmer continuously at a gentle resting pace. */
.flower-highlight circle,
.flower-highlight ellipse {
  transform-box: fill-box;
  transform-origin: center;
  animation: shimmer 2.8s ease-in-out infinite;
}

/* Stagger each oval so they twinkle rather than pulse in unison */
.flower-highlight g > :nth-child(3n)   { animation-delay: -0.4s; }
.flower-highlight g > :nth-child(3n+1) { animation-delay: -1.1s; }
.flower-highlight g > :nth-child(3n+2) { animation-delay: -1.9s; }
.flower-highlight g > :nth-child(5n)   { animation-delay: -2.4s; }

.event-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.event-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.event-grid--reverse {
  grid-template-columns: 1fr 1.3fr;
}

.event-grid--reverse .venue-card { order: 1; }
.event-grid--reverse .event-copy { order: 2; }

.venue-card {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.venue-card-media {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.venue-card-icon {
  color: var(--color-gold);
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-sm);
}

.venue-card h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--color-sage-dark);
  margin-bottom: var(--space-3xs);
}

.venue-card > p:not(.venue-note) {
  font-size: var(--fs-sm);
  color: var(--color-gold);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-sm);
}

.venue-note {
  font-size: var(--fs-sm);
  color: var(--color-charcoal-soft);
}

/* ---------------------------------------------------------------------- */
/* Retreat grid                                                            */
/* ---------------------------------------------------------------------- */

/* -- Retreat section wrapper (no top padding: cover hero sits flush) -- */

.retreat {
  background: var(--color-ivory);
  padding-bottom: var(--space-3xl);
}

/* -- Full-bleed cover hero -- */

.retreat-cover {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: var(--space-3xl);
}

.retreat-cover-media {
  position: absolute;
  inset: 0;
  border: none;
}

.retreat-cover-media img,
.retreat-cover-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.retreat-cover-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,42,37,0.30) 0%, rgba(42,42,37,0.20) 45%, rgba(42,42,37,0.75) 100%);
}

.retreat-cover-inner {
  position: relative;
  z-index: 2;
  color: var(--color-ivory);
  max-width: 720px;
  padding-block: var(--space-2xl);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.retreat-cover-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: var(--lh-tight);
  color: var(--color-ivory);
  margin-block: var(--space-2xs) var(--space-md);
}

.badge--on-dark {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-ivory);
  border: 1px solid rgba(216, 189, 139, 0.6);
  backdrop-filter: blur(4px);
}

.retreat-cover-lede {
  font-size: var(--fs-md);
  line-height: var(--lh-base);
  color: rgba(250, 246, 239, 0.92);
  max-width: 56ch;
  margin-top: var(--space-md);
}

.retreat-cover-cue {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--color-ivory);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: bob 2.4s ease-in-out infinite;
}

.retreat-cover-cue svg { width: 16px; height: 16px; }

/* -- Vertical day-by-day agenda -- */

.retreat-days {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.retreat-day {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: var(--space-2xl);
}

.retreat-day--reverse .retreat-day-media { order: 2; }
.retreat-day--reverse .retreat-day-body { order: 1; }

.retreat-day-media {
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.retreat-day-media img,
.retreat-day-media {
  transition: transform var(--transition-slow);
}

.retreat-day:hover .retreat-day-media img {
  transform: scale(1.04);
}

.retreat-day-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-gold);
  padding-bottom: var(--space-2xs);
  border-bottom: 1px solid var(--color-gold-light);
  margin-bottom: var(--space-sm);
}

.retreat-day-date {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--color-charcoal-mute);
  margin-bottom: var(--space-2xs);
}

.retreat-day-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-xl);
  line-height: var(--lh-tight);
  color: var(--color-sage-dark);
  margin-bottom: var(--space-sm);
}

.retreat-day-copy {
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-charcoal-soft);
  margin-bottom: var(--space-md);
}

.retreat-day-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs) var(--space-md);
}

.retreat-day-highlights li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-sage-dark);
}

.retreat-day-highlights svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.retreat .cabin-included {
  margin-top: var(--space-3xl);
}

/* ---------------------------------------------------------------------- */
/* Retreat room pricing (Nutfield scenario)                               */
/* ---------------------------------------------------------------------- */

.retreat-pricing {
  margin-top: var(--space-3xl);
  text-align: center;
}

.retreat-pricing-sub {
  max-width: 60ch;
  margin: var(--space-sm) auto var(--space-xl);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-charcoal-soft);
}

.room-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.room-tier {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.room-tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.room-tier-media {
  aspect-ratio: 4 / 3;
  border-radius: 0;
}

.room-tier-body {
  padding: var(--space-lg) var(--space-md);
  text-align: left;
}

.room-tier-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-md);
  color: var(--color-sage-dark);
  margin-bottom: var(--space-xs);
}

.room-tier-price {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--color-gold);
  line-height: 1;
}

.room-tier-note {
  margin-top: var(--space-2xs);
  font-size: var(--fs-xs);
  letter-spacing: 0.02em;
  color: var(--color-charcoal-mute);
}

/* What each room includes — an enticing little list */
.room-tier-includes {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: var(--space-sm) 0 0;
  border-top: 1px solid var(--color-line);
  display: grid;
  gap: var(--space-2xs);
}

.room-tier-includes li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2xs);
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: var(--color-charcoal-soft);
}

.room-tier-includes svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}

.room-tier-desc {
  margin-top: var(--space-sm);
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: var(--color-charcoal-soft);
}

.retreat-pricing-foot {
  margin-top: var(--space-lg);
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--color-charcoal-mute);
}

/* Optional Denbies extra */
.retreat-extra {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: 620px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-gold-soft);
  border-radius: var(--radius-lg);
}

.retreat-extra-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-paper);
  color: var(--color-gold);
}

.retreat-extra-icon svg { width: 26px; height: 26px; }

.retreat-extra-copy h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-md);
  color: var(--color-sage-dark);
  margin-bottom: var(--space-3xs);
}

.retreat-extra-copy p {
  font-size: var(--fs-sm);
  color: var(--color-charcoal-soft);
}

@media (max-width: 700px) {
  .room-tier-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .retreat-extra { flex-direction: column; text-align: center; }
}

/* ---------------------------------------------------------------------- */
/* Cabin amenities — "Included in Your Cabin"                            */
/* ---------------------------------------------------------------------- */

.cabin-included {
  margin-top: var(--space-2xl);
  text-align: center;
}

.cabin-included-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-lg);
  color: var(--color-sage-dark);
  margin-bottom: var(--space-lg);
}

.amenity-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-xl) var(--space-lg);
  max-width: 780px;
  margin-inline: auto;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 108px;
}

.amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-sage-mist);
  color: var(--color-sage);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.amenity-icon svg {
  width: 30px;
  height: 30px;
}

.amenity:hover .amenity-icon {
  background: var(--color-gold-soft);
  color: var(--color-gold);
  transform: translateY(-4px);
}

.amenity-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-charcoal-soft);
  line-height: var(--lh-snug);
}

/* ---------------------------------------------------------------------- */
/* Breakfast buffet card (The Hangover)                                    */
/* ---------------------------------------------------------------------- */

/* -- Two feature cards (Your Breakfast / The Murder Mystery) -- */

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.feature-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(280px, 34vw, 380px);
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  color: #fff;
  background-color: var(--color-sage-dark); /* fallback while the image loads */
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

/* Photo fills the card, behind the tint overlay and body text */
.feature-card-img,
.feature-card > picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.feature-card > picture .feature-card-img,
.feature-card > .feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.5;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg, 0 24px 60px rgba(0,0,0,0.28));
}

.feature-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* A sage tint across the whole image, deepening toward the bottom so the
     text stays legible while the photo still reads through. */
  background:
    linear-gradient(180deg, rgba(28,30,26,0.05) 0%, rgba(28,30,26,0.35) 55%, rgba(28,30,26,0.78) 100%),
    rgba(74, 92, 74, 0.32);
  transition: background var(--transition-base);
}

.feature-card:hover .feature-card-overlay {
  background:
    linear-gradient(180deg, rgba(28,30,26,0.02) 0%, rgba(28,30,26,0.28) 55%, rgba(28,30,26,0.72) 100%),
    rgba(74, 92, 74, 0.18);
}

.feature-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-2xs);
  height: 100%;
  padding: clamp(var(--space-lg), 3vw, var(--space-2xl));
  justify-content: flex-end;
}

.feature-card-eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-light, #e8c98f);
}

.feature-card-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-xl);
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.feature-card-sub {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.9);
  max-width: 34ch;
}

.feature-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  margin-top: var(--space-sm);
  padding: var(--space-2xs) var(--space-md);
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.feature-card-cta svg { width: 15px; height: 15px; }
.feature-card:hover .feature-card-cta { background: rgba(255,255,255,0.16); border-color: #fff; }

/* Murder mystery — dark & spooky on the card; photo still reads through a
   deep purple-black wash. */
.feature-card--mystery .feature-card-overlay {
  background:
    linear-gradient(180deg, rgba(10,6,14,0.35) 0%, rgba(12,8,18,0.68) 55%, rgba(6,4,10,0.9) 100%),
    rgba(40, 16, 58, 0.42);
}
.feature-card--mystery:hover .feature-card-overlay {
  background:
    linear-gradient(180deg, rgba(10,6,14,0.28) 0%, rgba(12,8,18,0.6) 55%, rgba(6,4,10,0.85) 100%),
    rgba(40, 16, 58, 0.28);
}
.feature-card--mystery .feature-card-eyebrow { color: #b47bd6; }
.feature-card--mystery .feature-card-title { color: #f2ecfa; }
.feature-card--mystery:hover { box-shadow: 0 24px 60px rgba(40, 8, 55, 0.5); }

@media (max-width: 720px) {
  .feature-cards { grid-template-columns: 1fr; }
}

.breakfast-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  max-width: 780px;
  margin-inline: auto;
}

.breakfast-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.breakfast-item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-paper);
  border: 1px solid var(--color-gold-light);
  color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.breakfast-item-icon svg { width: 28px; height: 28px; }

.breakfast-item-copy h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-md);
  color: var(--color-sage-dark);
  margin-bottom: var(--space-3xs);
}

.breakfast-item-copy p {
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: var(--color-charcoal-soft);
}

@media (max-width: 640px) {
  .breakfast-menu {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ---------------------------------------------------------------------- */
/* Modal overlay (feature-card details)                                    */
/* ---------------------------------------------------------------------- */

.modal[hidden] { display: none; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 18, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: modalFade var(--transition-base) ease;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--color-paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: modalPop var(--transition-base) ease;
}

.modal-content {
  padding: clamp(var(--space-lg), 4vw, var(--space-2xl));
  text-align: center;
}

.modal-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-xl);
  color: var(--color-sage-dark);
  margin-block: var(--space-2xs) var(--space-sm);
}

.modal-lede {
  max-width: 52ch;
  margin: 0 auto var(--space-xl);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-charcoal-soft);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-charcoal);
  background: rgba(0, 0, 0, 0.06);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.modal-close svg { width: 20px; height: 20px; }
.modal-close:hover { background: rgba(0, 0, 0, 0.12); transform: rotate(90deg); }

@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

/* Murder-mystery modal — dark, spooky, intriguing */
.modal--mystery .modal-backdrop {
  background: rgba(8, 4, 14, 0.78);
}

.modal--mystery .modal-panel {
  background: radial-gradient(120% 90% at 50% 0%, #241633 0%, #150c22 55%, #0c0715 100%);
  border: 1px solid rgba(150, 100, 190, 0.35);
  box-shadow: 0 30px 90px rgba(30, 6, 45, 0.7), 0 0 60px rgba(120, 60, 170, 0.15) inset;
}

.modal--mystery .modal-title {
  color: #f2ecfa;
  text-shadow: 0 0 18px rgba(150, 90, 200, 0.4);
}

.modal--mystery .modal-lede { color: #cdbfe0; }
.modal--mystery .eyebrow--light { color: #b47bd6; }
.modal--mystery .modal-close { color: #e6dcf5; background: rgba(255,255,255,0.08); }
.modal--mystery .modal-close:hover { background: rgba(180,123,214,0.25); }

.mystery-menu {
  display: grid;
  gap: var(--space-lg);
  max-width: 520px;
  margin-inline: auto;
  text-align: left;
}

.mystery-course {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.mystery-course-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #d9b3f0;
  background: rgba(150, 90, 200, 0.14);
  border: 1px solid rgba(180, 123, 214, 0.4);
}

.mystery-course-icon svg { width: 26px; height: 26px; }

.mystery-course h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--fs-md);
  color: #f2ecfa;
  margin-bottom: var(--space-3xs);
}

.mystery-course p {
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: #bcaed2;
}

body.modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .modal-backdrop, .modal-panel { animation: none; }
  .modal-close:hover { transform: none; }
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.site-footer {
  background: var(--color-sage-dark);
  color: var(--color-ivory);
  padding-block: var(--space-xl);
  text-align: center;
}

.footer-inner > * + * { margin-top: var(--space-2xs); }

.footer-brand {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
}

.footer-tag {
  color: var(--color-gold-light);
  font-size: var(--fs-sm);
  letter-spacing: 0.03em;
}

.footer-hashtag {
  font-size: var(--fs-sm);
  color: var(--color-ivory);
  opacity: 0.8;
}

.footer-credit {
  font-size: var(--fs-xs);
  color: rgba(250, 246, 239, 0.55);
  margin-top: var(--space-md) !important;
}
