/* ==========================================================================
   Mammaloe’s Aruba — Boho Boutique Hotel & Retreat Venue
   Homepage Stylesheet
   ========================================================================== */

/* --- CSS Custom Properties & Design Tokens --- */
:root {
  /* Color Palette */
  --color-parchment-light: #fbf7ee;
  --color-parchment-base:  #f4ede0;
  --color-parchment-dark:  #e9decb;
  --color-parchment-mat:   #ede2d0;
  
  --color-olive-deep:      #344822;
  --color-olive-base:      #3d562b;
  --color-olive-light:     #496534;
  
  --color-mustard:         #e2a433;
  --color-mustard-hover:   #f0b343;
  --color-mustard-dark:    #c48b25;
  
  --color-card-purple:     #3f2456;
  --color-card-purple-hov: #52316e;
  --color-card-green:      #495e31;
  --color-card-green-hov:  #5a733e;
  --color-card-coral:      #be4430;
  --color-card-coral-hov:  #d3523c;
  --color-card-teal:       #19707e;
  --color-card-teal-hov:   #1f8899;
  --color-card-gold:       #bd8324;
  --color-card-gold-hov:   #d3942c;
  
  --color-text-dark:       #271912;
  --color-text-muted:      #5c4a40;
  --color-text-light:      #fdfbf7;
  --color-purple-script:   #6d4272;

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Caveat', cursive, sans-serif;
  --font-sans:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Transitions */
  --radius-pill:  9999px;
  --radius-card:  6px;
  --transition:   all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-soft:  0 6px 20px rgba(39, 25, 18, 0.08);
  --shadow-float: 0 14px 32px rgba(39, 25, 18, 0.16);
}

/* --- Global Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-color: var(--color-parchment-base);
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-size: 700px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 36px 0;
}

.header-container {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

/* Brand Logo */
.brand-logo {
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.brand-logo:hover {
  transform: translateY(-2px) scale(1.02);
}

.logo-img {
  width: clamp(210px, 20vw, 290px);
  height: auto;
}

/* Desktop Navigation Wrapper on Trimmed Torn Paper */
.nav-wrapper {
  position: relative;
  margin-top: 14px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.16));
}

.nav-torn-paper-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  z-index: 1;
}

.main-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 12px 28px 12px 34px;
  gap: clamp(14px, 2vw, 28px);
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 26px);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-text-dark);
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-mustard-dark);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--color-mustard-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-mustard-dark);
  font-weight: 800;
}

/* "BOOK NOW ♡" Button in Nav */
.btn-book-now {
  background-color: var(--color-mustard);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(196, 139, 37, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-book-now:hover {
  background-color: var(--color-mustard-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(196, 139, 37, 0.45);
}

.btn-book-now .btn-heart {
  font-size: 1.1rem;
  line-height: 1;
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background-color: var(--color-parchment-light);
  border: 1px solid var(--color-parchment-dark);
  border-radius: 8px;
  padding: 8px;
  margin-top: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 105;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--color-text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.mobile-drawer.is-active {
  visibility: visible;
}

.drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 17, 13, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer.is-active .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 85vw);
  height: 100%;
  background-color: var(--color-parchment-base);
  background-image: url('../assets/img/paper_texture.jpg');
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.25);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
}

.mobile-drawer.is-active .drawer-panel {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-text-dark);
  padding: 4px;
}

.drawer-brand {
  margin: 10px 0 25px;
  display: flex;
  justify-content: center;
}

.drawer-logo {
  max-width: 220px;
}

.drawer-nav {
  margin-bottom: 30px;
}

.drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-link {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-text-dark);
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid transparent;
}

.drawer-link:hover {
  background-color: rgba(226, 164, 51, 0.15);
  border-left-color: var(--color-mustard);
}

.drawer-cta {
  margin-top: auto;
}

.btn-book-now-drawer {
  background-color: var(--color-mustard);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(196, 139, 37, 0.4);
}

/* ==========================================================================
   HERO SECTION (Framed to match Home Page design.jpeg pool proportion)
   ========================================================================== */
.hero-section {
  position: relative;
  height: clamp(540px, 56vw, 680px);
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 40px;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.hero-overlay-scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(22, 16, 13, 0.32) 0%,
    rgba(22, 16, 13, 0.08) 40%,
    rgba(22, 16, 13, 0.28) 100%
  );
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Hero Title Block */
.hero-title-block {
  max-width: 580px;
  color: var(--color-text-light);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.hero-main-title {
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  margin-bottom: 20px;
}

.title-the {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.title-brand {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 6.4vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: -4px;
}

.title-script {
  font-family: var(--font-script);
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  font-weight: 600;
  font-style: italic;
  color: #fffaf0;
  margin-top: -10px;
  margin-left: 18px;
  letter-spacing: 0.02em;
}

/* "Stay somewhere with a story." Torn Paper Banner */
.hero-story-badge {
  margin-top: 10px;
  margin-bottom: 36px;
  max-width: 390px;
  transform: rotate(-1.5deg);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.hero-story-badge:hover {
  transform: rotate(0deg) scale(1.02);
}

.story-badge-img {
  width: 100%;
  height: auto;
}

/* "▶ WATCH OUR STORY" Button */
.hero-watch-story {
  display: flex;
  align-items: center;
  margin-top: 14px;
}

.btn-watch-story {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text-light);
  background: transparent;
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.btn-watch-story:hover {
  transform: scale(1.04);
}

.btn-watch-story:hover .play-circle {
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.play-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background-color: rgba(30, 20, 15, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.play-triangle {
  margin-left: 2px;
  color: #ffffff;
}

.watch-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Floating Purple "Close to nature..." Card */
.hero-floating-card-wrapper {
  flex-shrink: 0;
  max-width: 380px;
  width: 30vw;
  margin-top: -10px;
  transform: rotate(2.2deg);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.28));
  transition: transform 0.4s ease;
}

.hero-floating-card-wrapper:hover {
  transform: rotate(0.8deg) scale(1.03);
}

.floating-purple-card {
  position: relative;
}

.purple-card-img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   FOUNDER / WELCOME SECTION ("Bon bini! ♡")
   ========================================================================== */
.founder-section {
  position: relative;
  padding: 70px 24px 80px;
  background-color: var(--color-parchment-base);
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  overflow: hidden;
}

.founder-container {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.15fr;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

/* Left Polaroid */
.founder-polaroid-left {
  display: flex;
  justify-content: center;
}

.left-polaroid-frame {
  transform: rotate(-3.5deg);
  filter: drop-shadow(0 12px 24px rgba(45, 30, 20, 0.16));
  transition: transform 0.4s ease;
  max-width: 330px;
}

.left-polaroid-frame:hover {
  transform: rotate(-1.5deg) scale(1.03);
}

.polaroid-img {
  width: 100%;
  height: auto;
}

/* Center Text Story */
.founder-text-col {
  display: flex;
  justify-content: center;
  text-align: center;
}

.founder-story-card {
  max-width: 360px;
  padding: 10px 15px;
}

.founder-greeting {
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 4.2vw, 3.6rem);
  font-weight: 700;
  color: var(--color-purple-script);
  line-height: 1.1;
  margin-bottom: 20px;
}

.heart-doodle {
  display: inline-block;
  font-size: 0.88em;
  color: var(--color-purple-script);
  margin-left: 4px;
}

.founder-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.35;
  margin-bottom: 18px;
}

.founder-body {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 24px;
}

.founder-signoff {
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--color-purple-script);
  margin-bottom: 28px;
}

.founder-btn-wrap {
  display: flex;
  justify-content: center;
}

.btn-meet-willeke {
  background-color: var(--color-mustard);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(196, 139, 37, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-meet-willeke:hover {
  background-color: var(--color-mustard-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 16px rgba(196, 139, 37, 0.45);
}

.arrow-right {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.btn-meet-willeke:hover .arrow-right {
  transform: translateX(4px);
}

/* Right Video Polaroid */
.founder-polaroid-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.right-polaroid-frame {
  position: relative;
  transform: rotate(2.8deg);
  filter: drop-shadow(0 12px 26px rgba(45, 30, 20, 0.18));
  transition: transform 0.4s ease;
  max-width: 370px;
}

.right-polaroid-frame:hover {
  transform: rotate(1deg) scale(1.02);
}

/* Washi tape at top of right polaroid */
.polaroid-tape-top {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  width: 96px;
  height: 22px;
  background: rgba(246, 236, 212, 0.82);
  border: 1px solid rgba(215, 200, 172, 0.5);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 5;
  pointer-events: none;
}

.polaroid-photo-box {
  background: #ffffff;
  padding: 10px 10px 32px 10px;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.polaroid-photo {
  width: 100%;
  height: auto;
  border-radius: 2px;
  display: block;
}

/* Embedded HTML5 Video inside Polaroid Frame */
.polaroid-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  background: #000000;
  aspect-ratio: 420 / 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.polaroid-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* Custom Play Overlay Button (Matching Home Page design.jpeg) */
.video-custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.video-custom-play-btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.custom-play-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.95);
  background-color: rgba(35, 25, 20, 0.42);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.video-custom-play-btn:hover .custom-play-circle {
  background-color: rgba(226, 164, 51, 0.88);
  border-color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(196, 139, 37, 0.5);
}

.custom-play-icon {
  fill: #ffffff;
  margin-left: 4px;
}

/* Hand-drawn side doodle */
.hand-doodle-drip {
  position: absolute;
  top: 35%;
  right: -32px;
  pointer-events: none;
  opacity: 0.85;
}

/* ==========================================================================
   DISCOVER SECTION ("DISCOVER THE MAMMALOE EXPERIENCE")
   ========================================================================== */
.discover-section {
  position: relative;
  padding: 50px 24px 90px;
  background-color: var(--color-parchment-base);
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
}

.discover-container {
  max-width: 1360px;
  margin: 0 auto;
}

/* Section Header */
.discover-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
  text-align: center;
}

.decorative-line {
  flex: 1;
  max-width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8f7f6f, transparent);
  opacity: 0.7;
}

.discover-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  text-transform: uppercase;
  text-align: center;
}

/* Discover Mat Wrapper (Torn Paper Background Mat) */
.discover-mat-wrapper {
  position: relative;
  background-color: var(--color-parchment-mat);
  background-image: url('../assets/img/paper_texture.jpg');
  border-radius: 8px;
  padding: 36px 26px 45px;
  box-shadow: 0 10px 30px rgba(45, 30, 20, 0.08);
  border: 1px solid rgba(210, 195, 175, 0.4);
}

/* 5 Experience Cards Grid */
.discover-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  position: relative;
  z-index: 2;
}

/* Individual Experience Card */
.experience-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
}

.card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Photo Box */
.card-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.95;
  background: #f7f3eb;
  padding: 6px;
  border: 1px solid rgba(190, 175, 155, 0.5);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 34px; /* Space for overlapping badge */
}

.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

/* Watercolor Badge Overlapping Bottom Center */
.card-badge-overlap {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 66px;
  z-index: 5;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.experience-card:hover .card-badge-overlap {
  transform: translateX(-50%) scale(1.1) rotate(4deg);
}

.badge-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Card Content Area */
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  padding: 4px 6px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.25;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-description {
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 22px;
  flex-grow: 1;
}

/* Card Buttons */
.btn-card {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
  padding: 9px 16px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  width: 100%;
  max-width: 180px;
  display: inline-block;
}

.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

/* Card Button Color Variants */
.btn-card-purple {
  background-color: var(--color-card-purple);
}
.btn-card-purple:hover {
  background-color: var(--color-card-purple-hov);
}

.btn-card-green {
  background-color: var(--color-card-green);
}
.btn-card-green:hover {
  background-color: var(--color-card-green-hov);
}

.btn-card-coral {
  background-color: var(--color-card-coral);
}
.btn-card-coral:hover {
  background-color: var(--color-card-coral-hov);
}

.btn-card-teal {
  background-color: var(--color-card-teal);
}
.btn-card-teal:hover {
  background-color: var(--color-card-teal-hov);
}

.btn-card-gold {
  background-color: var(--color-card-gold);
}
.btn-card-gold:hover {
  background-color: var(--color-card-gold-hov);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: var(--color-olive-base);
  color: var(--color-text-light);
  padding: 55px 28px 40px;
  overflow: hidden;
}

/* Torn Edge Transition */
.footer-torn-edge {
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 18px;
  background-image: radial-gradient(circle at 10px -4px, transparent 11px, var(--color-olive-base) 12px);
  background-size: 24px 18px;
  background-repeat: repeat-x;
}

.footer-container {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.45fr;
  align-items: center;
  gap: clamp(24px, 3.5vw, 48px);
}

/* Left Column: "Slow mornings..." Note */
.footer-left-col {
  display: flex;
  justify-content: flex-start;
}

.slow-mornings-note-wrapper {
  max-width: 360px;
  transform: rotate(-3deg);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.slow-mornings-note-wrapper:hover {
  transform: rotate(-1deg) scale(1.02);
}

.slow-mornings-img {
  width: 100%;
  height: auto;
}

/* Center Column: "Ready to experience Mammaloe’s?" CTA */
.footer-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-cta-heading {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 700;
  color: #fffaf0;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-btn-sun-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-book-stay-cta {
  display: inline-block;
  max-width: 220px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

.btn-book-stay-cta:hover {
  transform: translateY(-2px) scale(1.04);
}

.btn-book-stay-img {
  width: 100%;
  height: auto;
}

.footer-sun-decoration {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  animation: gentlePulse 4s infinite ease-in-out;
}

.yellow-sun-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(6deg); }
}

/* Right Column: Newsletter & Contacts */
.footer-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.newsletter-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.newsletter-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.newsletter-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.newsletter-subheading {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #d8e5cd;
  margin-bottom: 4px;
}

/* Newsletter Input + Button Form */
.newsletter-form {
  width: 100%;
}

.newsletter-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.newsletter-input {
  flex: 1;
  background: #fdfaf4;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  padding: 11px 16px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--color-text-dark);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
  outline: none;
  transition: var(--transition);
}

.newsletter-input:focus {
  background: #ffffff;
  border-color: var(--color-mustard);
  box-shadow: 0 0 0 3px rgba(226, 164, 51, 0.35);
}

.btn-subscribe-cta {
  flex-shrink: 0;
  max-width: 135px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.btn-subscribe-cta:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn-subscribe-img {
  width: 100%;
  height: auto;
}

/* Footer Info Bar (WhatsApp, Email & Socials) */
.footer-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-links-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: #e5eedc;
}

.contact-item:hover {
  color: var(--color-mustard-hover);
}

.contact-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.social-links-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--color-mustard);
  color: var(--color-text-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   VIDEO MODAL
   ========================================================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 14, 10, 0.75);
  backdrop-filter: blur(6px);
}

.video-modal-dialog {
  position: relative;
  z-index: 10;
  max-width: 860px;
  width: 100%;
  background: #1a120c;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-modal.is-active .video-modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  z-index: 20;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
}

.modal-close-btn:hover {
  background: rgba(226, 164, 51, 0.8);
  color: var(--color-text-dark);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-player-mock {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.video-playing-state {
  position: absolute;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  background: rgba(25, 15, 10, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.video-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #e5eedc;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Desktop, Tablet, Mobile)
   ========================================================================== */

/* Laptop & Medium Screens (< 1200px) */
@media (max-width: 1200px) {
  .site-header {
    padding: 12px 20px 0;
  }
  
  .nav-wrapper {
    transform: scale(0.92);
    transform-origin: right center;
  }
  
  .main-nav {
    gap: 16px;
    padding: 10px 22px;
  }
  
  .discover-cards-grid {
    gap: 12px;
  }
  
  .card-photo-wrapper {
    margin-bottom: 26px;
  }
  
  .card-badge-overlap {
    width: 58px;
    height: 58px;
    bottom: -26px;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  
  .footer-left-col {
    grid-column: 1 / -1;
    justify-content: center;
  }
  
  .slow-mornings-note-wrapper {
    max-width: 420px;
  }
}

/* Tablet Screens (< 992px) */
@media (max-width: 992px) {
  .site-header {
    padding: 12px 20px 0;
  }

  .nav-wrapper {
    display: none; /* Switch to mobile drawer */
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-section {
    height: auto;
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .hero-content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 28px;
  }

  .hero-floating-card-wrapper {
    width: 100%;
    max-width: 360px;
    align-self: flex-end;
    margin-top: 10px;
  }

  .founder-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-polaroid-left,
  .founder-polaroid-right {
    justify-content: center;
  }

  .founder-story-card {
    max-width: 520px;
  }

  /* Discover Cards: 2 or 3 columns on tablet */
  .discover-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px 18px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .footer-center-col,
  .footer-right-col {
    align-items: center;
  }

  .newsletter-block {
    align-items: center;
  }

  .newsletter-form {
    max-width: 420px;
  }

  .footer-info-bar {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }

  .contact-links-group {
    justify-content: center;
  }
}

/* Mobile Screens (< 640px) */
@media (max-width: 640px) {
  .site-header {
    padding: 10px 16px 0;
    width: 100%;
    box-sizing: border-box;
  }

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

  .logo-img {
    width: clamp(160px, 48vw, 200px);
  }

  .mobile-menu-toggle {
    display: flex;
    margin-top: 0;
    flex-shrink: 0;
  }

  .hero-section {
    padding-top: 95px;
    padding-bottom: 40px;
  }

  .hero-content-wrapper {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  .hero-story-badge {
    margin-bottom: 24px;
    max-width: 290px;
  }

  .hero-floating-card-wrapper {
    max-width: 290px;
    align-self: center;
    transform: rotate(1deg);
  }

  .founder-section {
    padding: 45px 16px 55px;
  }

  .left-polaroid-frame {
    max-width: min(270px, 85vw);
    transform: rotate(-1.5deg);
  }

  .right-polaroid-frame {
    max-width: min(310px, 88vw);
    transform: rotate(1deg);
  }

  .founder-greeting {
    font-size: 2.6rem;
  }

  .discover-section {
    padding: 35px 14px 60px;
  }

  .discover-header-wrapper {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }

  .discover-title {
    font-size: 1.15rem;
    line-height: 1.35;
    letter-spacing: 0.04em;
    word-break: break-word;
    max-width: 100%;
  }

  .decorative-line {
    display: none;
  }

  .discover-mat-wrapper {
    padding: 24px 14px 34px;
  }

  /* Beautiful full-presence single column cards on mobile */
  .discover-cards-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
    gap: 36px;
  }

  .card-photo-wrapper {
    margin-bottom: 26px;
  }

  .card-badge-overlap {
    width: 62px;
    height: 62px;
    bottom: -26px;
  }

  .card-title {
    font-size: 1.05rem;
    min-height: auto;
  }

  .card-description {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }

  .btn-card {
    font-size: 0.8rem;
    padding: 9px 18px;
    width: 100%;
    max-width: 220px;
  }

  .site-footer {
    padding: 40px 16px 30px;
  }

  .slow-mornings-note-wrapper {
    max-width: 290px;
    margin: 0 auto;
  }

  .footer-cta-heading {
    font-size: clamp(1.8rem, 6vw, 2.3rem);
    word-break: break-word;
    max-width: 100%;
    text-align: center;
  }

  .footer-btn-sun-group {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .newsletter-input-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .newsletter-input {
    width: 100%;
    text-align: center;
  }

  .btn-subscribe-cta {
    width: 100%;
    max-width: 160px;
  }

  .footer-info-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .contact-links-group {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* ==========================================================================
   STAY PAGE STYLES
   ========================================================================== */

/* Header Relative Modifier for Interior Pages */
.site-header-relative {
  position: relative;
  background: transparent;
  padding-top: 20px;
  padding-bottom: 10px;
}

.stay-page {
  position: relative;
  min-height: 100vh;
}

/* Margin Floral Flourishes */
.stay-corner-flower-tl {
  position: absolute;
  top: 150px;
  left: 15px;
  width: clamp(65px, 6vw, 95px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
  filter: drop-shadow(0 6px 14px rgba(39, 25, 18, 0.15));
}

.stay-corner-flower-tr {
  position: absolute;
  top: 140px;
  right: 20px;
  width: clamp(70px, 6vw, 100px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
  filter: drop-shadow(0 6px 14px rgba(39, 25, 18, 0.15));
}

.stay-margin-heart-left {
  position: absolute;
  top: 240px;
  left: 20px;
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  opacity: 0.45;
  pointer-events: none;
}

.stay-margin-heart-left svg {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  display: block;
}

/* --- Stay Hero Section --- */
.stay-hero {
  position: relative;
  padding: 30px 24px 50px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stay-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--color-card-purple);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.15;
}

.stay-hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto 24px;
}

.stay-hero-divider .divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 36, 78, 0.4), transparent);
}

.stay-hero-divider .divider-heart {
  color: #c95679;
  font-size: 1.5rem;
  line-height: 1;
}

.stay-hero-banner-wrapper {
  margin: 0 auto 30px;
  max-width: 780px;
  filter: drop-shadow(0 8px 24px rgba(39, 25, 18, 0.14));
}

.stay-hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.stay-hero-intro {
  max-width: 860px;
  margin: 0 auto;
}

.stay-intro-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}

.stay-intro-body {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.stay-intro-tagline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  color: var(--color-card-purple);
  margin-top: 10px;
}

/* --- Stay Accommodation Showcase Rows --- */
.stay-showcase {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px 50px;
}

.stay-row {
  display: grid;
  grid-template-columns: minmax(360px, 460px) 1.2fr minmax(200px, 260px);
  gap: clamp(20px, 2.5vw, 36px);
  align-items: center;
  padding: clamp(34px, 3.5vw, 46px) 0;
  border-bottom: 1px dashed rgba(72, 36, 78, 0.22);
  position: relative;
}

.stay-row:last-of-type {
  border-bottom: none;
}

/* Visual Column (Polaroid / Photo Collages) */
.stay-col-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stay-collage-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 26px rgba(39, 25, 18, 0.16));
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.stay-col-visual:hover .stay-collage-img {
  transform: translateY(-4px) scale(1.02);
}

/* Middle Column: Room Info & Copy */
.stay-col-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.stay-badge-wrap {
  margin-bottom: 10px;
}

.stay-number-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #5a2e63, #3f2456);
  border: 2px solid rgba(226, 164, 51, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7e6c4;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(63, 36, 86, 0.35);
}

.stay-room-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--color-card-purple);
  line-height: 1.18;
  margin-bottom: 8px;
}

.stay-filigree {
  color: var(--color-mustard-dark);
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

.stay-room-tagline {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.stay-room-desc {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Specs & Pricing Pill Badges */
.stay-room-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(226, 164, 51, 0.12);
  border: 1px solid rgba(226, 164, 51, 0.45);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.meta-pill svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  color: var(--color-mustard-dark);
  flex-shrink: 0;
}

.meta-pill-block {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 16px;
  background: rgba(226, 164, 51, 0.12);
  border: 1px solid rgba(226, 164, 51, 0.45);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.meta-pill-block .meta-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Action Button */
.btn-stay-pill {
  background: linear-gradient(135deg, #f3be4d 0%, #e2a433 60%, #c98c25 100%);
  color: #3f2456;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(226, 164, 51, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-stay-pill .arrow {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.btn-stay-pill:hover {
  background: linear-gradient(135deg, #f7cb67 0%, #f0b343 60%, #d8992e 100%);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(226, 164, 51, 0.55);
}

.btn-stay-pill:hover .arrow {
  transform: translateX(4px);
}

/* Right Column: Purple Scrapbook Note */
.stay-col-note {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stay-note-wrap {
  position: relative;
  max-width: 250px;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 10px 22px rgba(39, 25, 18, 0.16));
}

.stay-note-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.stay-note-wrap:hover {
  transform: rotate(0deg) scale(1.03);
}

.stay-row:nth-child(odd) .stay-note-wrap {
  transform: rotate(-1.5deg);
}

.stay-row:nth-child(even) .stay-note-wrap {
  transform: rotate(1.5deg);
}

/* --- Private Group Buyout Section ("MAKE MAMMALOE’S YOURS") --- */
.stay-buyout-section {
  max-width: 1180px;
  margin: clamp(55px, 6vw, 85px) auto clamp(60px, 6vw, 85px);
  padding: 0 24px;
}

.stay-buyout-card {
  position: relative;
  background-color: #fdfbf7;
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-size: 500px;
  border-radius: 16px;
  border: 2px dashed rgba(226, 164, 51, 0.55);
  box-shadow: 0 16px 40px rgba(39, 25, 18, 0.12);
  padding: 68px 44px 52px;
  text-align: center;
}

.stay-buyout-washi {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(140px, 14vw, 165px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.stay-buyout-badge {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-mustard-dark);
  text-transform: uppercase;
  margin-top: 6px;
  margin-bottom: 12px;
}

.stay-buyout-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--color-card-purple);
  margin-bottom: 10px;
  line-height: 1.2;
}

.stay-buyout-subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.stay-buyout-desc {
  max-width: 820px;
  margin: 0 auto 30px;
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.stay-buyout-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 34px;
}

.buyout-feature-pill {
  background: rgba(226, 164, 51, 0.12);
  border: 1px solid rgba(226, 164, 51, 0.45);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 3px 10px rgba(226, 164, 51, 0.1);
}

.stay-buyout-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.btn-private-group-cta {
  background: linear-gradient(135deg, #f3be4d 0%, #e2a433 60%, #c98c25 100%);
  color: #3f2456;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(226, 164, 51, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-private-group-cta .arrow {
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.btn-private-group-cta:hover {
  background: linear-gradient(135deg, #f7cb67 0%, #f0b343 60%, #d8992e 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(226, 164, 51, 0.58);
}

.btn-private-group-cta:hover .arrow {
  transform: translateX(4px);
}

/* --- Section: GOOD TO KNOW (Compact List with 20–28px Icons) --- */
.stay-good-to-know {
  max-width: 1100px;
  margin: 0 auto 70px;
  padding: 0 24px;
}

.good-to-know-header {
  text-align: center;
  margin-bottom: 34px;
}

.good-to-know-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 700;
  color: var(--color-card-purple);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.good-to-know-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-muted);
}

.good-to-know-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 18px;
  margin-bottom: 38px;
  padding: 24px 28px;
  background: rgba(253, 251, 247, 0.92);
  border: 1px solid rgba(72, 36, 78, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(39, 25, 18, 0.06);
}

.good-to-know-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 164, 51, 0.28);
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.good-to-know-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(39, 25, 18, 0.08);
}

.gtk-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(226, 164, 51, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-card-purple);
  flex-shrink: 0;
}

.gtk-icon svg {
  width: 22px;
  height: 22px;
  max-width: 24px;
  max-height: 24px;
  display: block;
}

.gtk-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.35;
}

/* Santa Cruz Location Callout Card */
.location-callout-card {
  background: linear-gradient(135deg, rgba(226, 164, 51, 0.12) 0%, rgba(63, 36, 86, 0.08) 100%);
  border: 1px solid rgba(226, 164, 51, 0.4);
  border-radius: 14px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 38px;
  box-shadow: 0 8px 24px rgba(39, 25, 18, 0.07);
}

.location-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #e2a433;
  color: #3f2456;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(226, 164, 51, 0.4);
}

.location-icon-wrap svg {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  display: block;
}

.location-heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-card-purple);
  margin-bottom: 6px;
}

.location-text {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  line-height: 1.68;
}

/* Transition Callout */
.stay-transition-callout {
  text-align: center;
  padding: 24px 20px 10px;
}

.transition-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--color-card-purple);
  margin-bottom: 8px;
}

.transition-text {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

/* --- Pre-Footer Floating "BOOK YOUR STAY ♡" Strip --- */
.stay-footer-pre-banner {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -32px;
  padding: 0 20px;
}

.torn-banner-strip {
  background: #fdfbf7;
  background-image: url('../assets/img/paper_texture.jpg');
  background-size: 400px;
  border: 1px solid rgba(72, 36, 78, 0.2);
  border-radius: 8px;
  padding: 14px 42px;
  box-shadow: 0 10px 28px rgba(39, 25, 18, 0.16);
  display: flex;
  align-items: center;
  gap: 16px;
  transform: rotate(-0.5deg);
  transition: transform 0.3s ease;
}

.torn-banner-strip:hover {
  transform: rotate(0deg) scale(1.02);
}

.banner-flourish {
  color: var(--color-mustard-dark);
  font-size: 1.6rem;
  line-height: 1;
}

.banner-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--color-card-purple);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.banner-heart {
  color: #c95679;
  font-size: 1.4rem;
  line-height: 1;
}

/* ==================== ROOM LIGHTBOX MODAL ==================== */
.room-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.room-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 9, 24, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 960px;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  background-color: #fdfbf7;
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-size: 450px;
  border-radius: 18px;
  border: 1px solid rgba(226, 164, 51, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  transform: scale(0.96);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.room-lightbox-modal.active .lightbox-dialog {
  transform: scale(1);
}

/* Lightbox Header */
.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px dashed rgba(72, 36, 78, 0.2);
  background: rgba(253, 251, 247, 0.96);
}

.lightbox-header-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lightbox-room-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--color-card-purple);
  margin: 0;
}

.lightbox-counter {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-mustard-dark);
  background: rgba(226, 164, 51, 0.15);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.lightbox-close-btn {
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-card-purple);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.lightbox-close-btn:hover {
  background: rgba(201, 86, 121, 0.15);
  color: #c95679;
  transform: rotate(90deg);
}

/* Lightbox Main Stage */
.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: #190e20;
  min-height: 300px;
  max-height: 56vh;
  overflow: hidden;
}

.lightbox-main-img {
  max-width: 100%;
  max-height: 54vh;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: opacity 0.22s ease;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(253, 251, 247, 0.88);
  border: 1px solid rgba(226, 164, 51, 0.4);
  color: var(--color-card-purple);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-nav-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.lightbox-nav-prev {
  left: 14px;
}

.lightbox-nav-next {
  right: 14px;
}

/* Lightbox Caption */
.lightbox-caption-wrap {
  padding: 8px 24px;
  text-align: center;
  background: rgba(253, 251, 247, 0.96);
  border-top: 1px solid rgba(72, 36, 78, 0.1);
}

.lightbox-caption {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
}

/* Lightbox Thumbnails Strip */
.lightbox-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: #f5f0e6;
  overflow-x: auto;
}

.lightbox-thumb-btn {
  width: 60px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.lightbox-thumb-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.lightbox-thumb-btn.active {
  opacity: 1;
  border-color: var(--color-mustard-dark);
  box-shadow: 0 2px 8px rgba(226, 164, 51, 0.4);
}

.lightbox-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Lightbox Footer Bar (With prominent BOOK YOUR STAY CTA) */
.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: #ffffff;
  border-top: 1px solid rgba(72, 36, 78, 0.14);
}

.lightbox-footer-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.lightbox-footer-cta {
  background: linear-gradient(135deg, #f3be4d 0%, #e2a433 60%, #c98c25 100%);
  color: #3f2456;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(226, 164, 51, 0.4);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lightbox-footer-cta:hover {
  background: linear-gradient(135deg, #f7cb67 0%, #f0b343 60%, #d8992e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226, 164, 51, 0.6);
}

/* --- Responsive Breakpoints for Stay Page --- */
@media (max-width: 1100px) {
  .stay-row {
    grid-template-columns: 1.1fr 1.1fr 0.75fr;
    gap: 20px;
  }
  
  .good-to-know-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .stay-buyout-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .stay-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
    padding: 38px 0;
  }

  .stay-col-info {
    align-items: center;
    text-align: center;
    order: 2;
  }

  .stay-col-visual {
    order: 1;
  }

  .stay-col-note {
    order: 3;
    margin-top: 8px;
  }

  .stay-collage-img {
    max-width: 420px;
  }

  .stay-room-meta {
    justify-content: center;
  }

  .stay-corner-flower-tl,
  .stay-corner-flower-tr,
  .stay-margin-heart-left {
    display: none;
  }

  .stay-buyout-card {
    padding: 60px 24px 44px;
  }

  .location-callout-card {
    flex-direction: column;
    text-align: center;
    padding: 26px 20px;
  }
}

@media (max-width: 768px) {
  .good-to-know-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
  }

  .lightbox-dialog {
    width: 98%;
    max-height: 96vh;
  }

  .lightbox-stage {
    min-height: 240px;
    padding: 8px 12px;
  }

  .lightbox-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

@media (max-width: 640px) {
  .stay-hero {
    padding: 20px 16px 36px;
  }

  .stay-hero-title {
    font-size: 2.1rem;
  }

  .stay-room-title {
    font-size: 1.75rem;
  }

  .good-to-know-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stay-buyout-grid {
    grid-template-columns: 1fr;
  }

  .stay-note-wrap {
    max-width: 210px;
  }

  .btn-stay-pill {
    width: 100%;
    justify-content: center;
  }

  .torn-banner-strip {
    padding: 10px 20px;
    gap: 10px;
  }

  .banner-text {
    font-size: 1.05rem;
  }

  .lightbox-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

/* ==================== RETREATS & GATHERINGS PAGE ==================== */

.retreats-page {
  background-color: var(--color-warm-bg);
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-size: 500px;
}

/* Hero Section */
.retreats-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(34px, 4.5vw, 60px) 24px 20px;
}

.retreats-hero-palm-wrap {
  position: absolute;
  top: -20px;
  left: -20px;
  width: clamp(180px, 22vw, 320px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.92;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.1));
}

.retreats-hero-palm {
  width: 100%;
  height: auto;
  display: block;
}

.retreats-hero-flowers-wrap {
  position: absolute;
  top: 15px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.15));
}

.retreats-flower-yellow {
  width: clamp(55px, 6.5vw, 85px);
  height: auto;
  transform: rotate(-10deg);
}

.retreats-flower-purple {
  width: clamp(50px, 6vw, 75px);
  height: auto;
  transform: rotate(15deg);
}

.retreats-hero-container {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.retreats-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-card-purple);
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.retreats-hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-style: italic;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  line-height: 1.35;
}

.retreats-hero-tagline .heart-accent {
  color: #c95679;
  font-style: normal;
  font-size: 1.25em;
  margin-left: 4px;
}

.retreats-hero-desc {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.retreats-divider-wrap {
  max-width: 1080px;
  margin: 0 auto;
  line-height: 0;
  opacity: 0.95;
}

.retreats-dashed-divider {
  width: 100%;
  height: auto;
  display: block;
}

/* 4 Core Experiences Grid */
.retreats-grid-section {
  max-width: 1240px;
  margin: 0 auto 75px;
  padding: 0 24px;
}

.retreats-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.2vw, 26px);
}

.retreat-card {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.retreat-card:hover {
  transform: translateY(-6px);
}

.retreat-card-inner {
  position: relative;
  background-color: #fdfbf7;
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-size: 450px;
  border-radius: 16px;
  border: 1px solid rgba(226, 164, 51, 0.5);
  box-shadow: 0 12px 32px rgba(39, 25, 18, 0.12);
  padding: 34px 18px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.retreat-card-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
}

.retreat-flower-badge {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

.flower-top-left {
  top: -14px;
  left: -12px;
  width: 48px;
}

.flower-bottom-left {
  bottom: 12px;
  left: -16px;
  width: 48px;
}

.flower-top-center {
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
}

.flower-bottom-right {
  bottom: 12px;
  right: -16px;
  width: 48px;
}

.retreat-card-photo-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
  border: 4px solid #ffffff;
  margin-bottom: 18px;
  aspect-ratio: 16 / 11;
  background: #eedec3;
}

.retreat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.4s ease;
}

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

.retreat-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}

.retreat-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-card-purple);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.retreat-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}

.btn-retreat-pill {
  background: linear-gradient(135deg, #f3be4d 0%, #e2a433 60%, #c98c25 100%);
  color: #3f2456;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(226, 164, 51, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-decoration: none;
  margin-top: auto;
}

.btn-retreat-pill .arrow {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.btn-retreat-pill:hover {
  background: linear-gradient(135deg, #f7cb67 0%, #f0b343 60%, #d8992e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226, 164, 51, 0.55);
}

.btn-retreat-pill:hover .arrow {
  transform: translateX(4px);
}

/* Agenda Section ("WHAT'S HAPPENING AT MAMMALOE’S") */
.retreats-agenda-section {
  max-width: 1140px;
  margin: 0 auto 75px;
  padding: 0 24px;
}

.agenda-card {
  position: relative;
  background-color: #fdfbf7;
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-size: 450px;
  border-radius: 18px;
  border: 2px dashed rgba(226, 164, 51, 0.55);
  box-shadow: 0 14px 38px rgba(39, 25, 18, 0.1);
  padding: clamp(40px, 4.5vw, 56px) clamp(24px, 3.5vw, 44px);
  text-align: center;
  overflow: hidden;
}

.agenda-deco-left {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  width: clamp(55px, 6vw, 75px);
}

.agenda-flower-yellow,
.agenda-flower-purple {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.agenda-deco-right {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  pointer-events: none;
  width: clamp(110px, 14vw, 170px);
  opacity: 0.92;
}

.agenda-palm-frond {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.1));
}

.agenda-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.agenda-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 700;
  color: var(--color-card-purple);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.agenda-heart {
  color: #c95679;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.agenda-desc {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-bottom: 26px;
}

.btn-agenda-pill {
  background: linear-gradient(135deg, #f3be4d 0%, #e2a433 60%, #c98c25 100%);
  color: #3f2456;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 5px 16px rgba(226, 164, 51, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-agenda-pill .agenda-cal-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-agenda-pill .arrow {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.btn-agenda-pill:hover {
  background: linear-gradient(135deg, #f7cb67 0%, #f0b343 60%, #d8992e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(226, 164, 51, 0.58);
}

.btn-agenda-pill:hover .arrow {
  transform: translateX(4px);
}

/* Hosting & Space Rental (2 Panels) */
.retreats-rental-section {
  max-width: 1140px;
  margin: 0 auto 85px;
  padding: 0 24px;
}

.retreats-rental-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}

.rental-card {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.rental-card:hover {
  transform: translateY(-4px);
}

.rental-card-inner {
  position: relative;
  background-color: #fdfbf7;
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-size: 450px;
  border-radius: 16px;
  border: 1px solid rgba(72, 36, 78, 0.18);
  box-shadow: 0 10px 28px rgba(39, 25, 18, 0.08);
  padding: 38px 34px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rental-icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.rental-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rental-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.22rem, 1.8vw, 1.48rem);
  font-weight: 700;
  color: var(--color-card-purple);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.rental-card-desc {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
}

.rental-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.rental-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.rental-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.checklist-bullet {
  color: #e2a433;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.btn-rental-pill {
  background: linear-gradient(135deg, #f3be4d 0%, #e2a433 60%, #c98c25 100%);
  color: #3f2456;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(226, 164, 51, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  align-self: flex-start;
  margin-top: auto;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-rental-pill .arrow {
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.btn-rental-pill:hover {
  background: linear-gradient(135deg, #f7cb67 0%, #f0b343 60%, #d8992e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(226, 164, 51, 0.55);
}

.btn-rental-pill:hover .arrow {
  transform: translateX(4px);
}

.rental-corner-flower {
  position: absolute;
  bottom: -16px;
  right: -12px;
  width: 50px;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
}

/* ==================== RETREAT DETAIL & INQUIRY MODAL ==================== */
.retreat-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.retreat-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.retreat-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 9, 24, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.retreat-modal-dialog {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 820px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background-color: #fdfbf7;
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-size: 450px;
  border-radius: 18px;
  border: 1px solid rgba(226, 164, 51, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  transform: scale(0.96);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.retreat-modal.active .retreat-modal-dialog {
  transform: scale(1);
}

.retreat-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px dashed rgba(72, 36, 78, 0.2);
  background: rgba(253, 251, 247, 0.96);
}

.retreat-modal-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-card-purple);
  margin: 0;
}

.retreat-modal-close {
  background: none;
  border: none;
  color: var(--color-card-purple);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.retreat-modal-close:hover {
  color: var(--color-mustard-dark);
  transform: rotate(90deg);
}

.retreat-modal-body {
  padding: 24px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.retreat-modal-photo-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 4px solid #ffffff;
  aspect-ratio: 16 / 11;
  background: #eee0c8;
}

.retreat-modal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.retreat-modal-text-wrap {
  display: flex;
  flex-direction: column;
}

.retreat-modal-badge {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-mustard-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.retreat-modal-desc {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin-bottom: 18px;
}

.retreat-modal-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.modal-highlight-item .bullet {
  color: #e2a433;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.retreat-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid rgba(72, 36, 78, 0.15);
  background: rgba(253, 251, 247, 0.96);
  flex-wrap: wrap;
  gap: 12px;
}

.retreat-modal-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.retreat-modal-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-modal-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-modal-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

.btn-modal-email {
  background: linear-gradient(135deg, #f3be4d 0%, #e2a433 60%, #c98c25 100%);
  color: #3f2456;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(226, 164, 51, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-modal-email:hover {
  background: linear-gradient(135deg, #f7cb67 0%, #f0b343 60%, #d8992e 100%);
  transform: translateY(-2px);
}

/* ==================== AGENDA IMAGE POPUP MODAL ==================== */
.agenda-image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 16px;
  box-sizing: border-box;
}

.agenda-image-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.agenda-image-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 9, 24, 0.90);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.agenda-image-modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: #fdfbf7;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(242, 180, 59, 0.4);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.agenda-image-modal.active .agenda-image-modal-dialog {
  transform: scale(1);
}

.agenda-image-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.95);
  border: 1px solid rgba(72, 36, 78, 0.25);
  color: #3f2456;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.agenda-image-modal-close:hover {
  background: #F2B43B;
  color: #000000;
  transform: scale(1.08) rotate(90deg);
}

.agenda-image-scrollable {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(92vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #23122e;
  padding: 0;
  text-align: center;
  min-width: 0;
}

.agenda-image-full {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: calc(92vh - 68px);
  object-fit: contain;
  margin: 0 auto;
}

.agenda-image-modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 20px;
  background: #fdfbf7;
  border-top: 1px solid rgba(72, 36, 78, 0.12);
  flex-wrap: wrap;
}

.btn-agenda-modal-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-agenda-modal-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-agenda-modal-download {
  background: linear-gradient(135deg, #f3be4d 0%, #e2a433 60%, #c98c25 100%);
  color: #3f2456;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(226, 164, 51, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-agenda-modal-download:hover {
  background: linear-gradient(135deg, #f7cb67 0%, #f0b343 60%, #d8992e 100%);
  transform: translateY(-2px);
  color: #20102b;
}

@media (max-width: 600px) {
  .agenda-image-modal {
    padding: 10px;
  }

  .agenda-image-modal-dialog {
    width: 100%;
    max-width: 100%;
    max-height: 95vh;
    border-radius: 14px;
  }

  .agenda-image-scrollable {
    max-height: calc(95vh - 58px);
  }

  .agenda-image-full {
    max-height: calc(95vh - 58px);
  }

  .agenda-image-modal-footer {
    padding: 8px 10px;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .btn-agenda-modal-whatsapp,
  .btn-agenda-modal-download {
    font-size: 0.75rem;
    padding: 8px 10px;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
    gap: 5px;
  }

  .btn-agenda-modal-whatsapp svg,
  .btn-agenda-modal-download svg {
    width: 14px;
    height: 14px;
  }
}


/* --- Responsive Media Queries for Retreats Page --- */
@media (max-width: 1100px) {
  .retreats-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 860px) {
  .retreats-hero-palm-wrap {
    width: 140px;
    opacity: 0.6;
  }

  .retreats-hero-flowers-wrap {
    display: none;
  }

  .retreats-rental-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .agenda-deco-left,
  .agenda-deco-right {
    display: none;
  }

  .retreat-modal-body {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .retreats-hero-palm-wrap {
    display: none;
  }

  .retreats-grid-container {
    grid-template-columns: 1fr;
  }

  .rental-checklist-grid {
    grid-template-columns: 1fr;
  }

  .btn-retreat-pill,
  .btn-agenda-pill,
  .btn-rental-pill {
    width: 100%;
    justify-content: center;
  }

  .retreat-modal-footer {
    flex-direction: column;
    text-align: center;
  }

  .retreat-modal-btn-group {
    width: 100%;
    justify-content: center;
  }

  .btn-modal-whatsapp,
  .btn-modal-email {
    flex: 1;
    justify-content: center;
  }
}

/* ==================== EXPLORE ARUBA PAGE ==================== */
.explore-page {
  background-color: #F7F0E4;
}

/* --- Hero Section --- */
.explore-hero {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #123440;
}

.explore-hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.explore-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  display: block;
}

.explore-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 30, 40, 0.45) 0%, rgba(14, 30, 40, 0.15) 55%, rgba(14, 30, 40, 0.05) 100%),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, transparent 50%, rgba(0, 0, 0, 0.45) 100%);
}

.explore-hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 110px 24px 20px;
}

.explore-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.explore-hero-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.explore-hero-eyebrow {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
  letter-spacing: -0.01em;
}

.explore-hero-title {
  font-family: 'Caveat', cursive;
  font-size: 6.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 0.82;
  margin: -6px 0 16px -6px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.explore-brush-badge {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
}

.explore-brush-svg {
  width: 100%;
  height: auto;
  display: block;
}

.explore-brush-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 1.85rem;
  font-weight: 700;
  color: #2b173c;
  line-height: 1.15;
  padding: 0 24px;
}

.explore-hero-right-accent {
  text-align: right;
  padding-bottom: 12px;
}

.explore-island-script {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.explore-hero-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.explore-hero-torn-bottom {
  position: relative;
  z-index: 3;
  width: 100%;
  line-height: 0;
  margin-top: -15px;
}

.explore-torn-svg {
  width: 100%;
  height: 48px;
  object-fit: cover;
  display: block;
}

/* --- Activities Section --- */
.explore-activities-section {
  background-color: #F7F0E4;
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-size: 450px;
  padding: 30px 0 50px;
}

.explore-activities-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.explore-activity-row {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 48px;
  align-items: center;
  padding: 32px 0;
}

.activity-photo-col {
  position: relative;
}

.activity-photo-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(72, 36, 78, 0.12), 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 4px solid #ffffff;
  background: #ffffff;
}

.activity-real-photo {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.activity-photo-card:hover .activity-real-photo {
  transform: scale(1.035);
}

.activity-info-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.activity-category-tag {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #8C5B3F;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.activity-main-heading {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: #2C183B;
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.activity-lead-desc {
  font-size: 1.02rem;
  line-height: 1.68;
  color: #4A4A4A;
  margin: 0 0 16px;
  max-width: 550px;
}

.activity-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  max-width: 550px;
}

.activity-pill {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: #695240;
  background: rgba(230, 218, 198, 0.6);
  border: 1px solid rgba(195, 175, 145, 0.45);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.activity-actions-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 580px;
  gap: 20px;
}

.btn-explore-yellow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F6C21C;
  color: #2C183B;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(246, 194, 28, 0.38);
  border: 1px solid rgba(220, 160, 20, 0.4);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-explore-yellow:hover {
  background: #ffcf33;
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(246, 194, 28, 0.48);
  color: #1a0c24;
}

.btn-explore-yellow .btn-cal-svg {
  flex-shrink: 0;
  color: #2C183B;
}

.btn-explore-yellow .btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-explore-yellow:hover .btn-arrow {
  transform: translateX(4px);
}

.activity-doodle-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.activity-doodle-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.activity-doodle-caption {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}

.caption-green {
  color: #5B7A38;
}

.caption-teal {
  color: #1B7F92;
}

.caption-olive {
  color: #736934;
}

.activity-row-divider {
  height: 1px;
  width: 100%;
  border-bottom: 1px dashed rgba(140, 91, 63, 0.22);
  margin: 12px 0;
}

/* --- Pre-Footer "Let Us Help You Explore" Section --- */
.explore-help-section {
  background-color: #F7F0E4;
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-size: 450px;
  padding: 20px 0 70px;
}

.explore-help-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.explore-help-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  border: 2px dashed #E2A900;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 16px 42px rgba(72, 36, 78, 0.08);
  overflow: hidden;
}

.help-card-flower {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 85px;
  height: 85px;
  pointer-events: none;
  transform: rotate(-15deg);
}

.help-card-sun {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 85px;
  height: 85px;
  pointer-events: none;
  transform: rotate(20deg);
  opacity: 0.85;
}

.explore-help-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.explore-help-badge {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #8C5B3F;
  margin-bottom: 8px;
  display: inline-block;
}

.explore-help-heading {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 700;
  color: #2C183B;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.explore-help-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4A4A4A;
  margin: 0 0 26px;
}

.btn-tell-plans {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F6C21C;
  color: #2C183B;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(246, 194, 28, 0.4);
  border: 1px solid rgba(220, 160, 20, 0.4);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-tell-plans:hover {
  background: #ffcf33;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(246, 194, 28, 0.5);
  color: #1a0c24;
}

.btn-tell-plans .btn-arrow {
  transition: transform 0.2s ease;
}

.btn-tell-plans:hover .btn-arrow {
  transform: translateX(4px);
}

/* --- Responsive Media Queries for Explore Aruba --- */
@media (max-width: 1100px) {
  .explore-activity-row {
    grid-template-columns: 420px 1fr;
    gap: 36px;
  }

  .activity-real-photo {
    height: 280px;
  }

  .activity-main-heading {
    font-size: 2.3rem;
  }
}

@media (max-width: 860px) {
  .explore-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .explore-hero-right-accent {
    align-self: flex-start;
  }

  .explore-activity-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0;
  }

  .activity-real-photo {
    height: 320px;
  }

  .activity-actions-wrap {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .explore-hero-eyebrow {
    font-size: 2.6rem;
  }

  .explore-hero-title {
    font-size: 4.8rem;
  }

  .explore-brush-badge {
    max-width: 320px;
  }

  .explore-brush-text {
    font-size: 1.45rem;
    padding: 0 14px;
  }

  .explore-island-script {
    font-size: 2rem;
  }

  .explore-hero-ticker {
    font-size: 0.74rem;
    gap: 8px;
  }

  .activity-main-heading {
    font-size: 2rem;
  }

  .activity-real-photo {
    height: 240px;
  }

  .activity-actions-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .activity-doodle-box {
    margin-left: 0;
  }

  .btn-explore-yellow {
    width: 100%;
    justify-content: center;
  }

  .explore-help-card {
    padding: 35px 22px;
  }

  .explore-help-heading {
    font-size: 1.9rem;
  }

  .btn-tell-plans {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   EAT & EXPERIENCE PAGE STYLES
   ========================================================================== */

.eat-page {
  background-color: #FAF5E8;
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-attachment: fixed;
  color: var(--color-text-dark);
  position: relative;
  overflow-x: hidden;
}

/* Hero Section */
.eat-hero-section {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(32px, 4vw, 56px) 24px 36px;
  text-align: center;
  z-index: 2;
}


.eat-hero-note {
  position: absolute;
  top: 25px;
  right: 40px;
  transform: rotate(4deg);
  z-index: 3;
}

.note-paper {
  background: #F9F2E3;
  padding: 14px 22px 14px 18px;
  border-radius: 6px;
  border: 1px dashed rgba(180, 138, 82, 0.45);
  box-shadow: 0 10px 24px rgba(110, 75, 40, 0.14);
  position: relative;
}

.note-paper::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 18px;
  background-color: rgba(245, 220, 150, 0.65);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.note-text {
  font-family: 'Caveat', cursive;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #3D2D23;
  text-align: left;
  margin: 0;
}

.note-heart {
  color: #8D4D70;
  font-size: 1.3rem;
  display: inline-block;
  vertical-align: middle;
}

.eat-hero-container {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 10px;
}

.eat-hero-title {
  font-family: 'Caveat', cursive;
  font-size: 5rem;
  font-weight: 700;
  color: #164C59;
  line-height: 1;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.eat-title-heart {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.eat-title-heart svg path {
  stroke: #164C59;
}

.eat-hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #2D3748;
  margin-top: 14px;
  text-transform: uppercase;
}

/* ==================== TAROT CARDS GRID ==================== */
.eat-cards-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 10px 24px 60px;
  position: relative;
  z-index: 2;
}

.eat-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tarot-row-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.tarot-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}

.tarot-row-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 780px;
  width: 100%;
}

/* Flanking Side Quotes */
.flanking-quote {
  flex: 0 0 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cursive-quote-text {
  font-family: 'Caveat', cursive;
  font-size: 2.1rem;
  line-height: 1.15;
  color: #2D4A43;
  margin: 0;
}

.cursive-heart {
  color: #8D4D70;
  font-size: 1.8rem;
  display: block;
  margin-top: 4px;
}

.flanking-flower img {
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
}

/* Tarot Card Container */
.tarot-card {
  position: relative;
  background: #FAF4E6;
  border-radius: 22px;
  border: 2px solid #C49F64;
  box-shadow: 0 12px 32px rgba(110, 75, 40, 0.12),
              inset 0 0 0 4px #FAF4E6,
              inset 0 0 0 5.5px #D8BC8E;
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tarot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(110, 75, 40, 0.18),
              inset 0 0 0 4px #FAF4E6,
              inset 0 0 0 5.5px #C49F64;
}

.tarot-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Tarot Header */
.tarot-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}

.tarot-numeral {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: #B48A52;
  letter-spacing: 0.12em;
}

.tarot-symbol-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
}

/* Tarot Photo */
.tarot-photo-box {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  background-color: #EDE3CF;
}

.tarot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Tarot Body Content */
.tarot-body {
  flex-grow: 1;
  text-align: center;
  margin-bottom: 18px;
}

.tarot-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #164C59;
  letter-spacing: 0.05em;
  line-height: 1.25;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.tarot-title-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8A6538;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.tarot-desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.62;
  color: #444;
  margin: 0 auto;
  max-width: 94%;
}

/* Perk Callout for Kini Kini */
.tarot-perk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(196, 159, 100, 0.15);
  border: 1px dashed #B48A52;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  color: #7A5526;
}

.perk-star {
  color: #B48A52;
}

/* Tarot Footer Divider & Caption */
.tarot-footer {
  margin-top: auto;
  text-align: center;
}

.tarot-divider-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C49F64, transparent);
}

.divider-icon {
  opacity: 0.85;
}

.tarot-caption {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #8A6E46;
  text-transform: uppercase;
  margin: 0;
}

/* ==================== CONCIERGE PRE-FOOTER CARD ==================== */
.eat-concierge-section {
  max-width: 960px;
  margin: 20px auto 70px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.eat-concierge-card {
  background: #FFFDF9;
  border: 2px dashed #C49F64;
  border-radius: 20px;
  padding: 44px 36px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(110, 75, 40, 0.08);
}

.concierge-flower-accent {
  position: absolute;
  top: -24px;
  left: 32px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.concierge-sun-accent {
  position: absolute;
  bottom: 16px;
  right: 28px;
  opacity: 0.85;
}

.concierge-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #8A6E46;
  margin-bottom: 8px;
}

.concierge-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: #164C59;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.concierge-desc {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #555;
  max-width: 720px;
  margin: 0 auto 24px;
}

.btn-concierge-yellow {
  background-color: var(--color-mustard);
  color: #2B261D;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(196, 139, 37, 0.35);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-concierge-yellow:hover {
  background-color: var(--color-mustard-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(196, 139, 37, 0.45);
}

/* ==================== EAT & EXPERIENCE RESPONSIVE ==================== */
@media (max-width: 1040px) {
  .eat-hero-note {
    top: 15px;
    right: 20px;
    transform: rotate(3deg) scale(0.9);
    transform-origin: top right;
  }

  .tarot-row-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .tarot-row-top #private-dinners {
    grid-column: span 2;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .tarot-bottom-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .flanking-quote {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: auto;
  }

  .flanking-quote.quote-left {
    order: 2;
  }

  .tarot-row-bottom {
    order: 1;
  }

  .flanking-quote.quote-right {
    order: 3;
  }

  .cursive-quote-text {
    font-size: 1.7rem;
    line-height: 1.1;
  }
}

@media (max-width: 768px) {
  .eat-hero-note {
    position: static;
    transform: none;
    margin: 15px auto 0;
    max-width: 220px;
  }

  .eat-hero-title {
    font-size: 3.6rem;
  }

  .eat-hero-subtitle {
    font-size: 0.84rem;
    letter-spacing: 0.12em;
  }

  .tarot-row-top {
    grid-template-columns: 1fr;
  }

  .tarot-row-top #private-dinners {
    grid-column: auto;
    max-width: 100%;
  }

  .tarot-row-bottom {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .flanking-quote {
    flex-direction: column;
  }

  .concierge-title {
    font-size: 1.45rem;
  }

  .btn-concierge-yellow {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   OUR STORY PAGE STYLES
   ========================================================================== */
.story-page {
  background-color: #FAF5E8;
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-attachment: fixed;
  color: var(--color-text-dark);
  position: relative;
  overflow-x: hidden;
}

/* --- Story Hero Section --- */
.story-hero-section {
  position: relative;
  min-height: 560px;
  height: clamp(560px, 56vw, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.story-hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.story-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.story-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(25, 16, 10, 0.40) 0%,
    rgba(25, 16, 10, 0.10) 35%,
    rgba(25, 16, 10, 0.35) 100%
  );
}

.story-hero-content-container {
  position: relative;
  z-index: 10;
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 130px 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.story-hero-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  max-width: 520px;
}

.story-title-brush-wrap {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #F5C53D 0%, #E2A71E 100%);
  padding: 8px 36px 4px;
  border-radius: 6px;
  transform: rotate(-2.5deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.story-hero-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(3.8rem, 5.5vw, 5.2rem);
  font-weight: 700;
  color: #261611;
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.story-hero-badge {
  background-color: #2B1810;
  color: #FFFDF8;
  padding: 14px 28px;
  border-radius: 8px;
  margin-top: 20px;
  transform: rotate(0.8deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.story-hero-badge .badge-line {
  font-family: var(--font-sans);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.story-pinned-note {
  position: relative;
  background: #FAF3E3;
  border: 1px solid #D8C7A5;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  padding: 24px 28px 20px;
  margin-top: 26px;
  transform: rotate(-3deg);
  border-radius: 3px;
  max-width: 340px;
}

.story-pinned-note .pinned-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.story-pinned-note .pinned-note-text {
  font-family: 'Special Elite', 'Courier Prime', monospace;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #33271D;
  margin: 0;
  text-align: center;
}

.story-wall-quote {
  position: relative;
  text-align: center;
  padding-right: 40px;
  transform: rotate(2deg);
}

.story-wall-quote .wall-quote-text {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  font-weight: 700;
  color: #241A14;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.85);
}

.story-wall-quote .wall-heart {
  color: #8D4D70;
  font-size: 2.6rem;
  display: block;
  margin-top: 6px;
}

.story-hero-torn-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 52px;
  z-index: 15;
  background-image: url('../assets/img/story/story_torn_edge.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
  line-height: 0;
  pointer-events: none;
}

/* --- Content Sections (Wagons & House) --- */
.story-content-section {
  position: relative;
  padding: 70px 24px 80px;
  z-index: 2;
}

.story-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 60px;
  align-items: center;
}

.story-photos-col {
  position: relative;
}

.photo-cards-pair {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlapping Polaroid style photo cards */
.story-photo-card {
  position: absolute;
  background: #FFFFFF;
  padding: 14px 14px 20px;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(50, 30, 20, 0.16), 0 4px 10px rgba(0, 0, 0, 0.06);
  width: 310px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-then {
  top: 10px;
  left: 20px;
  transform: rotate(-4deg);
  z-index: 2;
}

.card-now {
  bottom: 20px;
  right: 20px;
  transform: rotate(3.5deg);
  z-index: 3;
}

.story-photo-card:hover {
  transform: scale(1.03) rotate(0deg);
  z-index: 5;
  box-shadow: 0 22px 46px rgba(50, 30, 20, 0.22);
}

.card-tape-sticker {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 4px;
  background-color: #EFE8DA;
}

.story-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.story-photo-card:hover .story-card-img {
  transform: scale(1.05);
}

.card-tag-pill {
  display: inline-block;
  text-align: center;
  font-family: 'Special Elite', monospace;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #2D231B;
  background: #F2E8D5;
  border: 1px solid #DFD0B8;
  box-shadow: 0 3px 8px rgba(50, 30, 20, 0.15);
  padding: 4px 18px;
  border-radius: 2px;
  margin-top: 12px;
  text-transform: uppercase;
}

.story-botanical-accent {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
}

.botanical-left {
  bottom: -25px;
  left: -20px;
  display: flex;
  align-items: center;
}

.botanical-leaves-wagons {
  transform: rotate(-35deg);
  margin-right: -25px;
}

.botanical-flower-wagons {
  transform: rotate(-10deg);
}

.botanical-leaves {
  bottom: -20px;
  left: -25px;
  transform: rotate(10deg);
}

/* Story Text Column */
.story-text-col {
  position: relative;
}

.story-text-inner {
  max-width: 580px;
}

.story-section-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(3.2rem, 4.8vw, 4.4rem);
  font-weight: 700;
  color: #154D43;
  margin: 0 0 6px;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.family-section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 20px;
}

.family-title-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.title-meet {
  color: #154D43;
}

.title-family-name {
  color: #9C5523;
  line-height: 1;
}

.title-heart-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.story-subtitle-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.story-section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: #8C5B3F;
  text-transform: uppercase;
  display: block;
  padding-bottom: 4px;
}

.story-gold-underline {
  width: 100%;
  height: 10px;
  object-fit: fill;
}

.story-paragraphs p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #443B33;
  margin-bottom: 16px;
}

.story-callout-quote {
  font-family: 'Caveat', cursive;
  font-size: 2.3rem;
  font-weight: 700;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-wagons {
  color: #BE4D67;
}

.quote-house {
  color: #B54D3D;
}

.story-callout-quote .callout-heart {
  font-size: 2.1rem;
}

.story-divider-torn {
  width: 100%;
  height: 48px;
  background-image: url('../assets/img/story/story_torn_edge.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  opacity: 0.8;
  margin: 10px 0;
}

/* --- Section 3: Meet the Family --- */
.story-family-section {
  position: relative;
  padding: 60px 24px 100px;
  z-index: 2;
}

.family-left-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.family-flanking-note {
  flex-shrink: 0;
  text-align: center;
  transform: rotate(-4deg);
}

.family-flank-text {
  font-family: 'Caveat', cursive;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1F4E46;
  margin: 0;
}

.family-flank-text .flank-heart {
  color: #8D4D70;
  font-size: 2rem;
  display: block;
  margin-top: 4px;
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 24px;
  position: relative;
}

.family-card {
  background: #FFFFFF;
  padding: 12px 12px 16px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(50, 30, 20, 0.14), 0 3px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-simba {
  transform: rotate(-2.5deg);
}

.card-eddie {
  transform: rotate(2deg);
}

.card-turtles {
  transform: rotate(2.2deg);
}

.card-chickens {
  transform: rotate(-1.8deg);
}

.family-card:hover {
  transform: scale(1.04) rotate(0deg);
  z-index: 6;
  box-shadow: 0 18px 38px rgba(50, 30, 20, 0.2);
}

.family-img-wrap {
  width: 100%;
  height: 155px;
  overflow: hidden;
  border-radius: 4px;
  background-color: #EFE8DA;
}

.family-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.family-card:hover .family-card-img {
  transform: scale(1.06);
}

.family-caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 10px;
}

.family-name {
  font-family: 'Caveat', cursive;
  font-size: 1.65rem;
  font-weight: 700;
  color: #261B16;
  line-height: 1.15;
}

.family-desc {
  font-family: 'Special Elite', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #4A4036;
  text-transform: uppercase;
  line-height: 1.4;
}

.family-botanical-accent {
  position: absolute;
  bottom: -25px;
  left: 20px;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
  display: flex;
  align-items: center;
}

.botanical-leaves-family {
  transform: rotate(-35deg);
  margin-right: -25px;
}

.botanical-flower-family {
  transform: rotate(-10deg);
}

.family-right-col {
  position: relative;
}

.family-paragraphs p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #443B33;
  margin-bottom: 16px;
}

.story-closing-heart {
  color: #8D4D70;
  font-size: 1.2rem;
  display: inline-block;
}

/* --- Responsive Media Queries for Our Story --- */
@media (max-width: 1120px) {
  .story-container {
    grid-template-columns: 460px 1fr;
    gap: 40px;
  }

  .story-photo-card {
    width: 270px;
  }

  .card-img-wrap {
    height: 195px;
  }

  .family-grid {
    grid-template-columns: repeat(2, 190px);
    gap: 18px;
  }

  .family-img-wrap {
    height: 135px;
  }
}

@media (max-width: 960px) {
  .story-hero-content-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-top: 150px;
  }

  .story-wall-quote {
    align-self: center;
    padding-right: 0;
  }

  .story-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-photos-col {
    order: 1;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
  }

  .story-text-col {
    order: 2;
  }

  .family-left-col {
    order: 1;
    margin: 0 auto;
  }

  .family-right-col {
    order: 2;
  }
}

@media (max-width: 680px) {
  .story-hero-section {
    min-height: 680px;
    height: auto;
    padding-bottom: 50px;
  }

  .story-hero-content-container {
    padding-top: 175px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 32px;
  }

  .story-hero-title {
    font-size: 3.4rem;
  }

  .story-title-brush-wrap {
    padding: 6px 24px 2px;
    margin-top: 10px;
  }

  .story-hero-badge .badge-line {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
  }

  .story-pinned-note {
    padding: 20px 20px 16px;
    margin-top: 20px;
  }

  .story-pinned-note .pinned-note-text {
    font-size: 0.95rem;
  }

  .story-wall-quote .wall-quote-text {
    font-size: 2.2rem;
  }

  .photo-cards-pair {
    min-height: 400px;
  }

  .story-photo-card {
    width: 230px;
    padding: 10px 10px 16px;
  }

  .card-img-wrap {
    height: 160px;
  }

  .card-then {
    left: 0;
  }

  .card-now {
    right: 0;
  }

  .family-left-col {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .family-grid {
    grid-template-columns: repeat(2, 150px);
    gap: 14px;
  }

  .family-img-wrap {
    height: 110px;
  }

  .family-name {
    font-size: 1.3rem;
  }

  .family-desc {
    font-size: 0.62rem;
  }

  .story-section-title {
    font-size: 2.6rem;
  }
}




/* ==========================================================================
   BOOK NOW PAGE STYLES (.book-page)
   ========================================================================== */

.book-page {
  background-color: #faf7f0;
}

/* Hero Section */
.book-hero {
  position: relative;
  width: 100%;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../assets/img/16_Hero_Pool_Original.jpeg');
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  text-align: center;
  color: #ffffff;
  padding: 160px 24px 100px;
  overflow: hidden;
}

.book-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 20, 0.25) 0%, rgba(20, 28, 20, 0.45) 100%);
  z-index: 1;
}

.book-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.book-hero-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: #5c1b56;
  text-shadow: 
    0 2px 4px rgba(255, 255, 255, 0.8),
    0 4px 16px rgba(0, 0, 0, 0.3);
  line-height: 1.08;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.book-hero-title .hero-heart {
  color: #8c2a7f;
  font-size: 0.9em;
  display: inline-block;
  margin-left: 6px;
}

.book-hero-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.72rem, 3.2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-top: 8px;
}

.book-hero-torn-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 48px;
  z-index: 10;
  background-image: url('../assets/img/story/story_torn_edge.svg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
  line-height: 0;
  pointer-events: none;
}

/* Main Content Section */
.book-section {
  position: relative;
  background-color: #faf7f0;
  background-image: url('../assets/img/paper_texture.jpg');
  background-repeat: repeat;
  background-size: 480px;
  padding: 60px 0 90px;
}

.book-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.book-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 38px;
  align-items: start;
}

/* Left Column: Rooms */
.book-rooms-col {
  display: flex;
  flex-direction: column;
}

.book-rooms-header {
  margin-bottom: 28px;
}

.book-rooms-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  font-weight: 700;
  color: #1e3d30;
  line-height: 1.15;
  margin: 0 0 6px;
}

.book-rooms-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  color: #556254;
  margin: 0;
}

/* Room Cards */
.book-room-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(43, 62, 43, 0.08);
  box-shadow: 0 6px 20px rgba(39, 25, 18, 0.06);
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.3s ease;
}

.book-room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(39, 25, 18, 0.12);
}

.room-card-img-wrap {
  width: 230px;
  min-width: 230px;
  position: relative;
  overflow: hidden;
  background-color: #f2ece1;
}

.room-card-img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.room-card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.room-card-top {
  margin-bottom: 12px;
}

.room-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e3d30;
  margin: 0 0 6px;
  line-height: 1.25;
}

.room-meta-pills {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: #5e685c;
  font-weight: 500;
  margin-bottom: 8px;
}

.room-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.room-meta-item svg {
  color: #2b3e2b;
}

.room-desc {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #485247;
  margin: 0 0 8px;
}

.room-details-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2a523e;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  transition: color 0.2s ease;
}

.room-details-link:hover {
  color: #e2a433;
}

/* Room Card Bottom: Price & Button */
.room-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(43, 62, 43, 0.12);
}

.room-price-col {
  display: flex;
  flex-direction: column;
}

.room-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-from {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #727c70;
  font-weight: 600;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #1e3d30;
  line-height: 1;
}

.price-period {
  font-size: 0.8rem;
  color: #727c70;
}

.room-season-pill {
  font-size: 0.74rem;
  color: #8c5310;
  background-color: #fef5e7;
  border: 1px solid #f6d8a3;
  padding: 2px 8px;
  border-radius: 6px;
  margin-top: 5px;
  display: inline-block;
  font-weight: 500;
}

.btn-select-yellow {
  background-color: #F2B43B;
  color: #1c1a17;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(242, 180, 59, 0.35);
  flex-shrink: 0;
}

.btn-select-yellow:hover {
  background-color: #e2a433;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(242, 180, 59, 0.45);
  color: #000000;
}

/* Rate Season Informational Box */
.rate-season-notice {
  background: rgba(242, 180, 59, 0.12);
  border-left: 4px solid #F2B43B;
  border-radius: 8px;
  padding: 14px 18px;
  margin: 10px 0 24px;
  font-size: 0.88rem;
  color: #3b3b3b;
  line-height: 1.5;
}

.rate-season-notice strong {
  color: #1e3d30;
}

/* Breakfast Banner */
.book-breakfast-banner {
  background: #fcfaf5;
  border: 2px dashed #ded4bd;
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  box-shadow: 0 6px 18px rgba(39, 25, 18, 0.04);
}

.breakfast-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.breakfast-cup-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: #2b3e2b;
}

.breakfast-title-group {
  display: flex;
  flex-direction: column;
}

.breakfast-bold {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e3d30;
  line-height: 1.2;
}

.breakfast-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2b3e2b;
}

.breakfast-quote {
  font-family: 'Caveat', cursive;
  font-size: 1.7rem;
  color: #333a32;
  line-height: 1.15;
  text-align: right;
  white-space: nowrap;
}

/* Right Column: Calendar Sidebar */
.book-calendar-col {
  display: flex;
  flex-direction: column;
}

.calendar-sidebar-card {
  position: sticky;
  top: 105px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(43, 62, 43, 0.1);
  box-shadow: 0 12px 36px rgba(39, 25, 18, 0.08);
  padding: 28px 24px;
}

.calendar-header {
  margin-bottom: 20px;
  text-align: left;
}

.calendar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #1e3d30;
  margin: 0 0 4px;
  line-height: 1.2;
}

.calendar-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #5d675b;
  margin: 0;
}

/* Calendar Date Selector Bar */
.calendar-controls-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.calendar-control-box {
  background: #faf7f2;
  border: 1px solid #e2dbcd;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
}

.control-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #727c70;
  font-weight: 600;
  margin-bottom: 2px;
}

.control-value {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1e3d30;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-update-dates {
  width: 100%;
  background-color: #F2B43B;
  color: #1c1a17;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(242, 180, 59, 0.35);
  margin-bottom: 22px;
}

.btn-update-dates:hover {
  background-color: #e2a433;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(242, 180, 59, 0.45);
}

/* MyTourist Iframe Container */
.mytourist-container {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e7dfce;
  background: #ffffff;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mytourist-container iframe {
  width: 100%;
  height: 680px;
  border: none;
  display: block;
}

/* Trust Badges */
.calendar-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0ece1;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px;
}

.trust-item-icon {
  font-size: 1.45rem;
  margin-bottom: 5px;
}

.trust-item-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1e3d30;
  display: block;
  line-height: 1.2;
}

.trust-item-desc {
  font-size: 0.72rem;
  color: #727c70;
  display: block;
  margin-top: 3px;
  line-height: 1.3;
}

/* Sticky Scrap Note */
.calendar-sticky-note {
  position: relative;
  margin: 30px auto 0;
  background: #fffdf5;
  border: 1px solid #e7ddca;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(39, 25, 18, 0.08);
  padding: 24px 28px;
  text-align: center;
  transform: rotate(-1.5deg);
  overflow: visible;
}

.sticky-note-text {
  font-family: 'Caveat', cursive;
  font-size: 1.95rem;
  color: #692c67;
  font-weight: 700;
  display: block;
  line-height: 1.25;
}

.sticky-flower-accent {
  position: absolute;
  bottom: -18px;
  right: -14px;
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.sticky-leaf-accent {
  position: absolute;
  bottom: -24px;
  right: 28px;
  width: 48px;
  height: 48px;
  z-index: -1;
  transform: rotate(15deg);
}

/* Long Stay Section */
.book-long-stay-section {
  max-width: 1100px;
  margin: 65px auto 30px;
  padding: 0 20px;
}

.long-stay-card-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(39, 25, 18, 0.12);
  background-color: #f7f1e6;
}

.long-stay-card-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.long-stay-hotspot {
  position: absolute;
  left: 6.2%;
  bottom: 10.5%;
  width: 32.5%;
  height: 15.5%;
  border-radius: 12px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
}

.long-stay-hotspot:hover {
  box-shadow: 0 0 20px rgba(242, 180, 59, 0.7);
}

.long-stay-mobile-btn {
  display: none;
  width: 100%;
  margin-top: 14px;
  background-color: #F2B43B;
  color: #1c1a17;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(242, 180, 59, 0.35);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .book-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .calendar-sidebar-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .book-room-card {
    flex-direction: column;
  }

  .room-card-img-wrap {
    width: 100%;
    min-width: 100%;
    height: 220px;
  }

  .room-card-img {
    height: 220px;
  }

  .book-breakfast-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .breakfast-left {
    flex-direction: column;
    text-align: center;
  }

  .breakfast-quote {
    text-align: center;
  }

  .long-stay-mobile-btn {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .book-hero-title {
    font-size: clamp(2.3rem, 9.5vw, 3.2rem);
    line-height: 1.1;
  }

  .book-hero-tagline {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 480px) {
  .book-hero {
    min-height: 380px;
    padding: 140px 16px 70px;
  }

  .calendar-controls-bar {
    grid-template-columns: 1fr;
  }

  .calendar-trust-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .room-card-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-select-yellow {
    width: 100%;
  }
}
