/* ==========================================================================
   River Time Retreat - Main Stylesheet
   A modern, mobile-first CSS design system
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-forest: #2D5016;
  --color-forest-dark: #1E3A0F;
  --color-forest-light: #3D6B1E;
  --color-rust: #C85A1B;
  --color-rust-dark: #A64A16;
  --color-rust-light: #E06A25;
  --color-cream: #F5F0E6;
  --color-cream-dark: #E8E0D0;
  --color-charcoal: #333333;
  --color-charcoal-light: #555555;
  --color-river: #4A7C9B;
  --color-river-dark: #3A6280;
  --color-river-light: #5A92B5;
  --color-white: #FFFFFF;
  --color-black: #000000;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes (fluid typography) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
  --text-5xl: clamp(3rem, 2rem + 5vw, 5rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 70px;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-Index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-charcoal);
  text-wrap: balance;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  text-wrap: pretty;
  max-width: 70ch;
}

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

a:hover {
  color: var(--color-forest-dark);
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-forest { color: var(--color-forest); }
.text-rust { color: var(--color-rust); }
.text-river { color: var(--color-river); }
.text-cream { color: var(--color-cream); }

.bg-forest { background-color: var(--color-forest); }
.bg-rust { background-color: var(--color-rust); }
.bg-cream { background-color: var(--color-cream); }
.bg-river { background-color: var(--color-river); }
.bg-white { background-color: var(--color-white); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn:focus {
  outline: 2px solid var(--color-forest);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--color-rust);
  color: var(--color-white);
  border-color: var(--color-rust);
}

.btn--primary:hover {
  background-color: var(--color-rust-dark);
  border-color: var(--color-rust-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-forest);
  border-color: var(--color-forest);
}

.btn--secondary:hover {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-forest);
  border-color: var(--color-white);
}

.btn--white:hover {
  background-color: var(--color-cream);
  border-color: var(--color-cream);
  color: var(--color-forest);
}

.btn--large {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

.btn--small {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

/* Ensure minimum 44px tap target on mobile for accessibility */
@media (max-width: 768px) {
  .btn--small {
    padding: var(--space-md) var(--space-lg);
    min-height: 44px;
  }
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  z-index: var(--z-sticky);
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.header--transparent {
  background-color: transparent;
  box-shadow: none;
}

.header--scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--space-lg);
  max-width: var(--container-max);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-forest);
  text-decoration: none;
}

.header__logo:hover {
  color: var(--color-forest-dark);
}

.header__logo-icon {
  width: 40px;
  height: 40px;
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-weight: 500;
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-forest);
}

.header__cta {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: var(--z-modal);
}

.mobile-menu-toggle__bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-charcoal);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  z-index: var(--z-fixed);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--color-forest);
}

.mobile-nav__cta {
  margin-top: var(--space-2xl);
}

/* Desktop Navigation */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .nav {
    display: block;
  }

  .header__cta {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  background-color: var(--color-forest);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 80, 22, 0.3) 0%,
    rgba(45, 80, 22, 0.4) 50%,
    rgba(45, 80, 22, 0.6) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  color: var(--color-white);
}

.hero__badge {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: var(--text-5xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
  font-size: var(--text-xl);
  font-weight: 300;
  margin-bottom: var(--space-lg);
  opacity: 0.95;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  backdrop-filter: blur(4px);
}

.hero__feature-icon {
  width: 20px;
  height: 20px;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Section Styles
   -------------------------------------------------------------------------- */
.section {
  padding: var(--space-4xl) var(--space-lg);
}

.section--cream {
  background-color: var(--color-cream);
}

.section--forest {
  background-color: var(--color-forest);
  color: var(--color-white);
}

.section--forest h2,
.section--forest h3 {
  color: var(--color-white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__eyebrow {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-rust);
  margin-bottom: var(--space-sm);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--color-charcoal-light);
  max-width: 600px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Features Grid
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-md);
  padding: var(--space-md);
  background-color: var(--color-cream);
  border-radius: var(--radius-full);
  color: var(--color-forest);
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.feature-card__description {
  color: var(--color-charcoal-light);
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   Location Section
   -------------------------------------------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
}

.location-card__distance {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-rust);
  margin-bottom: var(--space-sm);
}

.location-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.location-card__description {
  font-size: var(--text-sm);
  color: var(--color-charcoal-light);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  color: var(--color-rust);
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.testimonial-card__quote {
  font-style: italic;
  margin-bottom: var(--space-md);
  color: var(--color-charcoal-light);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--color-forest);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
}

.testimonial-card__source {
  font-size: var(--text-xs);
  color: var(--color-charcoal-light);
}

/* --------------------------------------------------------------------------
   Amenities
   -------------------------------------------------------------------------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}

.amenity-item__icon {
  width: 24px;
  height: 24px;
  color: var(--color-forest);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-cream-dark);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-forest);
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  color: var(--color-forest);
  transition: transform var(--transition-base);
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer__content {
  padding-bottom: var(--space-lg);
  color: var(--color-charcoal-light);
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  text-align: center;
  padding: var(--space-5xl) var(--space-lg);
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
  color: var(--color-white);
}

.cta-section__title {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-section__subtitle {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 640px) {
  .cta-section__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  padding: var(--space-4xl) var(--space-lg) var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__description {
  font-size: var(--text-sm);
  opacity: 0.8;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-white);
  transition: background-color var(--transition-fast);
}

.footer__social-link:hover {
  background-color: var(--color-rust);
  color: var(--color-white);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--color-cream);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer__link:hover {
  opacity: 1;
  color: var(--color-cream);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copyright {
  font-size: var(--text-sm);
  opacity: 0.8;
}

.footer__legal {
  display: flex;
  gap: var(--space-md);
}

.footer__legal-link {
  font-size: var(--text-sm);
  color: var(--color-cream);
  opacity: 0.8;
}

.footer__legal-link:hover {
  opacity: 1;
  color: var(--color-cream);
}

/* --------------------------------------------------------------------------
   Landing Page Specific Styles
   -------------------------------------------------------------------------- */

/* Landing Hero - More Focused */
.hero--landing {
  min-height: 80vh;
}

.hero--landing .hero__title {
  font-size: var(--text-4xl);
}

/* Benefit List */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.benefit-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-forest);
}

.benefit-item__text {
  font-size: var(--text-base);
}

/* Split Content */
.split-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .split-content {
    grid-template-columns: 1fr 1fr;
  }

  .split-content--reverse .split-content__image {
    order: 2;
  }
}

.split-content__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-content__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-content__text h2 {
  margin-bottom: var(--space-md);
}

.split-content__text p {
  margin-bottom: var(--space-lg);
  color: var(--color-charcoal-light);
}

/* Image Placeholder */
.image-placeholder {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  color: var(--color-charcoal-light);
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   Itinerary Section
   -------------------------------------------------------------------------- */
.itinerary-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.itinerary-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-cream-dark);
}

.itinerary-item:last-child {
  border-bottom: none;
}

.itinerary-item__time {
  flex-shrink: 0;
  width: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-rust);
}

.itinerary-item__content h4 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-lg);
}

.itinerary-item__content p {
  color: var(--color-charcoal-light);
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   Dog-Friendly Page Specific
   -------------------------------------------------------------------------- */
.dog-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .dog-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dog-feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.dog-feature__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cream);
  border-radius: var(--radius-md);
  color: var(--color-forest);
}

.dog-feature__content h4 {
  margin-bottom: var(--space-xs);
}

.dog-feature__content p {
  font-size: var(--text-sm);
  color: var(--color-charcoal-light);
}

/* --------------------------------------------------------------------------
   Hot Springs Page Specific
   -------------------------------------------------------------------------- */
.wellness-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .wellness-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wellness-benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wellness-benefit {
  text-align: center;
  padding: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.wellness-benefit__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-river);
  border-radius: var(--radius-full);
  color: var(--color-white);
}

.wellness-benefit__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.wellness-benefit__description {
  font-size: var(--text-sm);
  color: var(--color-charcoal-light);
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-slow) ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp var(--transition-slow) ease forwards;
}

.animate-slide-in-left {
  animation: slideInLeft var(--transition-slow) ease forwards;
}

/* Stagger animations */
.stagger-1 { animation-delay: 100ms; }
.stagger-2 { animation-delay: 200ms; }
.stagger-3 { animation-delay: 300ms; }
.stagger-4 { animation-delay: 400ms; }
.stagger-5 { animation-delay: 500ms; }

/* --------------------------------------------------------------------------
   Scroll-Triggered Animations (Intersection Observer)
   -------------------------------------------------------------------------- */

/* Initial hidden state for animated elements */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When animation triggers */
[data-animate].animate-fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

[data-animate].animate-fade-in {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="slide-in-left"] {
  transform: translateX(-30px);
}

[data-animate].animate-slide-in-left {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children animations */
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-animate-stagger].animate-fade-in-up > *:nth-child(1) { transition-delay: 0ms; }
[data-animate-stagger].animate-fade-in-up > *:nth-child(2) { transition-delay: 100ms; }
[data-animate-stagger].animate-fade-in-up > *:nth-child(3) { transition-delay: 200ms; }
[data-animate-stagger].animate-fade-in-up > *:nth-child(4) { transition-delay: 300ms; }

[data-animate-stagger].animate-fade-in-up > * {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate-stagger] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   Sticky Booking Bar
   -------------------------------------------------------------------------- */
.booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-forest);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.booking-bar.visible {
  transform: translateY(0);
}

.booking-bar__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

.booking-bar__price {
  font-size: var(--text-lg);
  font-weight: 700;
}

.booking-bar__price span {
  font-size: var(--text-sm);
  font-weight: 400;
  opacity: 0.9;
}

.booking-bar__rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
}

.booking-bar__rating svg {
  width: 16px;
  height: 16px;
  fill: #FFD700;
}

.booking-bar__cta {
  display: flex;
  gap: var(--space-sm);
}

.booking-bar__cta .btn {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .booking-bar__info {
    display: none;
  }

  .booking-bar__inner {
    justify-content: center;
  }

  .booking-bar__cta {
    width: 100%;
  }

  .booking-bar__cta .btn {
    flex: 1;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Booking Section (Enhanced CTA)
   -------------------------------------------------------------------------- */
.booking-section {
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
  color: var(--color-white);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.booking-section__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.booking-section__subtitle {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.booking-section__highlights {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.booking-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-base);
}

.booking-highlight svg {
  width: 24px;
  height: 24px;
  color: var(--color-rust-light);
}

.booking-section__cta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.booking-section__cta .btn--white {
  background: var(--color-white);
  color: var(--color-forest);
}

.booking-section__cta .btn--white:hover {
  background: var(--color-cream);
}

.booking-section__platforms {
  margin-top: var(--space-xl);
  font-size: var(--text-sm);
  opacity: 0.8;
}

.booking-section__platforms span {
  display: block;
  margin-bottom: var(--space-sm);
}

.platform-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
}

.platform-logos img {
  height: 24px;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .header,
  .mobile-nav,
  .btn,
  .footer,
  .booking-bar {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: var(--space-xl);
  }

  .section {
    padding: var(--space-lg);
  }
}
