/* ===== CSS VARIABLES ===== */
:root {
  --ff-heading: "Cormorant Garamond", serif;
  --ff-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  
  /* Color Palette */
  --heading: #121212;
  --text: #2b2b2b;
  --color-primary: #7b5b3a;
  --color-secondary: #D2691E;
  --color-accent: #CD853F;
  --color-text: var(--text);
  --color-text-light: #666;
  --color-background: #FAFAFA;
  --color-white: #FFFFFF;
  --color-charcoal: var(--heading);
  --color-copper: #B87333;
  --color-gold: #DAA520;
  --color-border: #E5E5E5;
  --color-overlay: rgba(0, 0, 0, 0.4);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-xxl: 8rem;
  
  /* Typography */
  --line-height-tight: 1.1;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  
  /* Shadows */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Amenity image height constraint */
  --amenity-img-max-h: 560px; /* fallback; will be set dynamically from the Heated Patio image */
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: var(--line-height-normal);
  color: var(--text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== UTILITY CLASSES ===== */
.hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  color: var(--heading);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 4.6rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.8rem, 3vw + 1rem, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2vw + 1rem, 2.4rem);
}

h4 {
  font-size: clamp(1.2rem, 1.5vw + 1rem, 1.8rem);
}

p {
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-relaxed);
}

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

a:hover {
  color: var(--color-copper);
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.hero-under {
  margin-top: 0;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(120%) blur(6px);
  border: 0;
  box-shadow: none;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Brand Styling */
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-charcoal);
  line-height: 1.05;
  transition: all var(--transition-normal);
}

.brand:hover {
  color: var(--color-primary);
  opacity: 0.9;
}

.brand-top {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.brand-bottom {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.01em;
  text-transform: none;
}

.header.is-sticky .brand-top {
  font-size: clamp(1rem, 0.9vw + 0.6rem, 1.25rem);
}

.header.is-sticky .brand-bottom {
  font-size: clamp(0.58rem, 0.45vw + 0.45rem, 0.75rem);
}

/* Navigation Links */
.nav-links {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-left: 1px solid var(--color-border);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-medium);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
}

.nav-links.active {
  display: block;
  transform: translateX(0);
}

.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-drawer li {
  margin: 0;
  padding: 0;
}

/* Remove bullets from all navigation lists */
.nav-links ul,
.nav-drawer ul,
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li,
.nav-drawer li,
.nav li {
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: var(--spacing-md) 0;
}

.nav-links a {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--color-text);
  transition: color var(--transition-fast);
  display: block;
  padding: var(--spacing-sm);
  text-decoration: none;
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* Ensure Book Now button text is white in mobile navigation */
.nav-links .cta-button {
  color: var(--color-white) !important;
}

/* CTA Button */
.cta-button {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all var(--transition-fast);
  border: 2px solid var(--color-primary);
}

.cta-button:hover {
  background: var(--color-copper);
  border-color: var(--color-copper);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.cta-button.large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.secondary-button {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all var(--transition-fast);
  border: 2px solid var(--color-primary);
  text-decoration: none;
}

.secondary-button:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  margin: 3px 0;
  transition: var(--transition-fast);
}

/* ===== HERO SECTIONS ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 64px;
  overflow: hidden;
}

.hero img,
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__overlay {
  position: relative;
  height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
  pointer-events: auto;
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 var(--spacing-md);
}

.hero h1,
.hero__title {
  font: 300 clamp(44px, 8vw, 96px) "Playfair Display", serif;
  line-height: 1.04;
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p.sub,
.hero__subtitle {
  font: 300 clamp(16px, 2.2vw, 22px) "Source Sans 3", sans-serif;
  margin-top: 16px;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  display: inline-block;
  margin-top: 28px;
  padding: 10px 20px;
  border: 2px solid rgba(255,255,255,0.9);
  color: #fff;
  background: transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 400;
  transition: all var(--transition-fast);
  position: relative;
  z-index: 3;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline:active {
  transform: translateY(1px);
}

/* Ensure hero button is always clickable */
.hero .btn-outline {
  z-index: 999 !important;
  position: relative !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.9) !important;
  color: #fff !important;
  text-decoration: none !important;
  display: inline-block !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  font-weight: 400 !important;
  transition: all var(--transition-fast) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
}

.hero .btn-outline:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8) !important;
  outline-offset: 2px !important;
}

.hero .btn-outline:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.btn-outline.primary {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  padding: 0.9rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-fast);
  position: relative;
  z-index: 3;
  cursor: pointer;
}

.btn-outline.primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Button variants for different contexts */
.btn-outline.primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline.primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.hero-cta {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Hero Overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.28), rgba(0,0,0,.25) 35%, rgba(0,0,0,.10));
  z-index: 1;
  pointer-events: none;
}

/* ===== SECTIONS ===== */
section {
  padding: var(--spacing-lg) 0;
}

.intro {
  background: var(--color-white);
  text-align: center;
}

.intro p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: var(--color-text-light);
}

/* ===== QUICK STATS ===== */
.quick-stats {
  background: var(--color-white);
  padding: var(--spacing-md) 0;
}

.stats-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm);
}

.stat-chip {
  background: var(--color-background);
  color: var(--color-text);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
}

.stat-chip:hover {
  background: var(--color-copper);
  color: var(--color-white);
  border-color: var(--color-copper);
  transform: translateY(-2px);
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  background: var(--color-background);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-outline {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
  }
  
  .hero .btn-outline {
    min-height: 48px;
    min-width: 120px;
    font-size: 16px;
    z-index: 9999 !important;
    padding: 14px 28px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  }
}

@media (max-width: 480px) {
  .hero .btn-outline {
    min-width: 140px;
    padding: 16px 32px !important;
    font-size: 18px !important;
    min-height: 52px !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5) !important;
    border-width: 3px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    transition: all 0.2s ease !important;
  }
  
  .hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6) !important;
  }
  
  .hero .btn-outline:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
  }
  
  .hero .btn-outline:focus {
    outline: 3px solid rgba(255, 255, 255, 0.8) !important;
    outline-offset: 3px !important;
  }
  
  .hero .btn-outline:visited {
    color: #fff !important;
  }
  
  .hero .btn-outline:link {
    color: #fff !important;
  }
  
  .hero .btn-outline:any-link {
    color: #fff !important;
  }
  
  .hero .btn-outline:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8) !important;
    outline-offset: 3px !important;
  }
}

.highlights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.highlight-item {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.highlight-item h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.highlight-item p {
  margin: 0;
  color: var(--color-text);
}

.nearby-highlights {
  background: var(--color-white);
  padding: var(--spacing-xl) 0;
  margin: var(--spacing-lg) 0;
}

.nearby-highlights h2 {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

/* ===== AMENITIES MODULE ===== */
.amenities {
  margin-top: 24px;
}

.amenities .wrap {
  max-width: 1200px;
  margin: auto;
  padding: clamp(28px, 4vw, 72px) 16px;
}

.amenities h2 {
  font: 500 clamp(28px, 4vw, 48px) var(--ff-heading);
  margin-bottom: var(--spacing-md);
  text-align: left;
}

.amenities p,
.amenities-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-text-light);
  text-align: left;
  max-width: 800px;
  margin: 0 0 var(--spacing-lg) 0;
}

.amenities__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.amenities__tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid #eee;
}

.amenities__tab {
  cursor: pointer;
  padding: 14px 18px;
  border-left: 4px solid transparent;
  margin-left: -2px;
  transition: all var(--transition-fast);
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--text);
}

.amenities__tab:hover {
  background: #faf7f3;
}

.amenities__tab.is-active {
  border-left-color: var(--color-primary);
  background: #fbf8f3;
}

.amenities__panel,
.amenity-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 880px;
}

.amenities__media img,
.amenity-panel img {
  width: 100%;
  max-width: 680px;
  height: auto;
  max-height: var(--amenity-img-max-h, 560px);
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.amenities__copy h3 {
  font: 500 clamp(20px, 2.4vw, 32px) "Cormorant Garamond", serif;
  margin: 0.25rem 0 0.5rem;
  color: var(--heading);
  text-align: left;
}

.amenities__copy p {
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  text-align: left;
}

@media (max-width: 900px) {
  .amenities__grid {
    grid-template-columns: 1fr;
  }
  
  .amenities__tab {
    border-left-width: 3px;
  }
  
  .amenity-panel img {
    max-width: 100%;
  }
  
  /* Sunriver tabs become horizontal scrollable on mobile */
  .sunriver-amenities .amenities__tabs {
    display: flex;
    overflow-x: auto;
    border-left: none;
    border-bottom: 2px solid #eee;
    padding-bottom: 0;
    margin-bottom: var(--spacing-md);
  }
  
  .sunriver-amenities .amenities__tab {
    border-left: none;
    border-bottom: 4px solid transparent;
    margin-left: 0;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .sunriver-amenities .amenities__tab.is-active {
    border-left-color: transparent;
    border-bottom-color: var(--color-primary);
  }
  
  .sunriver-amenities .amenities__tab:hover {
    background: #faf7f3;
  }
}

/* ===== SUNRIVER PAGE STYLES ===== */

/* Sunriver Features - Static Layout */
.sr-featurelist {
  padding: var(--spacing-lg) 0;
  background: var(--color-background);
}

.sr-featurelist .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.sr-feature {
  display: grid;
  grid-template-columns: minmax(240px, 380px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.sr-feature__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sr-feature__body h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.75rem;
  color: var(--color-text);
}

.sr-feature__body p {
  margin: 0;
  line-height: 1.65;
  color: var(--color-text-light);
}

/* Mobile responsive for Sunriver features */
@media (max-width: 800px) {
  .sr-feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .sr-feature__media img {
    height: 220px;
  }
}

.intro-section {
  padding: var(--spacing-lg) 0;
  text-align: center;
}

.intro-text {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--ff-body);
  font-size: 1.1rem;
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
}

/* Image Tiles Grid */
.image-tiles {
  padding: var(--spacing-lg) 0;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-fast);
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.tile img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.tile-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px 16px 16px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: var(--color-background);
  padding: var(--spacing-xl) 0;
  margin: var(--spacing-lg) 0;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.cta-content p {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  line-height: var(--line-height-relaxed);
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-outline {
  margin: 0;
}

/* Placeholder image styling */
.placeholder-image {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border: 2px dashed #ccc;
  color: #666;
  font-family: var(--ff-body);
  transition: all var(--transition-fast);
}

.placeholder-image:hover {
  background: linear-gradient(135deg, #e8e8e8 0%, #d8d8d8 100%);
  border-color: #999;
  color: #444;
}

/* ===== IMAGE BAND ===== */
.image-band {
  margin: 48px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.wide-photo {
  margin: 0;
  padding: 0;
}

.wide-photo img {
  width: 100%;
  height: clamp(280px, 48vw, 560px);
  object-fit: cover;
  display: block;
}

.image-band img {
  width: 100%;
  height: 52vh;
  object-fit: cover;
  display: block;
}

.image-band img + img {
  margin-top: 12px;
}

/* ===== LOCATION SECTION ===== */
.location .wrap {
  max-width: 1200px;
  margin: auto;
  padding: clamp(24px, 4vw, 64px) 16px;
}

.location__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 32px;
  align-items: stretch;
}

.location__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.location__media figure {
  margin: 0;
}

.location__media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.location__copy h2 {
  font: 500 clamp(28px, 3.4vw, 40px) "Cormorant Garamond", serif;
  margin-bottom: 0.6rem;
  color: var(--heading);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 32px;
  align-items: stretch;
}

.location-grid .loc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.location-grid .loc-text {
  background: #fff;
  border-radius: 12px;
  padding: clamp(16px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location__copy p {
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: var(--spacing-md);
}

@media (max-width: 960px) {
  .location__grid {
    grid-template-columns: 1fr;
  }
  
  .location__media img {
    height: 220px;
  }
}

.highlight-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.highlight-image {
  height: 250px;
  overflow: hidden;
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.highlight-card:hover .highlight-image img {
  transform: scale(1.05);
}

.highlight-content {
  padding: var(--spacing-md);
}

.highlight-content h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

/* ===== FEATURE SECTIONS ===== */
.feature-section {
  background: var(--color-white);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.feature-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.feature-content h2 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

/* ===== IMAGE GALLERY ===== */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform var(--transition-fast);
}

.gallery-item img:hover {
  transform: scale(1.02);
}

/* ===== BEDROOM CAROUSEL ===== */
.bedroom-carousel {
  margin-top: var(--spacing-md);
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-normal);
}

.carousel-slide {
  min-width: 100%;
  height: 400px;
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
}

.carousel-btn.prev {
  left: var(--spacing-sm);
}

.carousel-btn.next {
  right: var(--spacing-sm);
}

/* ===== AMENITIES ACCORDION ===== */
.amenities-section {
  background: var(--color-background);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-header {
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--spacing-md);
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}

.accordion-header:hover {
  background: var(--color-background);
}

.accordion-header[aria-expanded="true"] {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: none;
}

.accordion-content.active {
  max-height: 1000px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  padding: var(--spacing-md);
}

.amenity-category h4 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.amenity-category ul {
  list-style: none;
}

.amenity-category li {
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.amenity-category li:last-child {
  border-bottom: none;
}

/* ===== GALLERY PAGE ===== */
.gallery-section {
  padding: 56px 0;
}

.gallery-hero {
  background: var(--color-background);
  text-align: center;
  padding: var(--spacing-xl) 0;
  margin-top: 80px;
}

.gallery-hero h1 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.gallery-hero p {
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: var(--spacing-lg) 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-normal);
  grid-column: span 4;
}

.gallery-item.large {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery responsive breakpoints */
@media (max-width: 1024px) {
  .gallery-item {
    grid-column: span 6;
  }
  .gallery-item.large {
    grid-column: span 12;
  }
}

@media (max-width: 640px) {
  .gallery-item,
  .gallery-item.large {
    grid-column: span 12;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

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

/* ===== SUNRIVER PAGE ===== */
.sunriver-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  margin-top: 80px;
}

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

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-track {
  display: flex;
  height: 100%;
}

.slider-slide {
  min-width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.slider-slide.active {
  opacity: 1;
}

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

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
}

.slider-btn:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
}

.slider-btn.prev {
  left: var(--spacing-sm);
}

.slider-btn.next {
  right: var(--spacing-sm);
}

.slider-dots {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-xs);
  z-index: 2;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-white);
}

/* Sunriver Content */
.sunriver-content {
  background: var(--color-white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.content-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Nearby Highlights */
.nearby-highlights {
  background: var(--color-background);
}

.highlights-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.highlight-item {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.highlight-item h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

/* Activities Grid */
.activities-section {
  background: var(--color-white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.activity-card {
  text-align: center;
  padding: var(--spacing-md);
  border-radius: 8px;
  transition: all var(--transition-normal);
}

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

.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: var(--spacing-sm);
}

.activity-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

/* ===== GUEST STORIES PAGE ===== */
.guest-stories-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
}

.guest-stories-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.guest-stories-hero .hero-content {
  z-index: 2;
}

/* Testimonials */
.testimonials-section {
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.testimonial-card {
  background: var(--color-background);
  padding: var(--spacing-lg);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
}

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

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

.testimonial-author h4 {
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Praise Slider */
.praise-slider-section {
  background: var(--color-background);
}

.praise-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 200px; /* Set minimum height to accommodate longest quote */
}

.praise-slide {
  text-align: center;
  opacity: 0;
  transition: opacity var(--transition-slow);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.praise-slide.active {
  opacity: 1;
  position: relative;
}

.praise-slide blockquote {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.praise-slide cite {
  color: var(--color-primary);
  font-weight: 500;
  margin-top: auto; /* Push to bottom of flex container */
}

/* CTA Section */
.cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
}

.cta-section .cta-button {
  background: var(--color-copper);
  border-color: var(--color-copper);
}

.cta-section .cta-button:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

/* ===== BOOK NOW PAGE ===== */
.book-now-hero {
  height: 70vh;
  min-height: 500px;
}

.booking-content {
  background: var(--color-white);
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.booking-card {
  background: var(--color-background);
  padding: var(--spacing-lg);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 100px;
}

.booking-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

.booking-features {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.booking-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.booking-features li:last-child {
  border-bottom: none;
}

.booking-cta {
  text-align: center;
}

.booking-note {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: var(--spacing-sm);
}

/* Why Book Section */
.why-book-section {
  background: var(--color-background);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.reason-card {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all var(--transition-normal);
}

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

.reason-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

/* Contact Info Section */
.contact-info-section {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.contact-methods {
  margin-top: var(--spacing-md);
}

.contact-method {
  margin-bottom: var(--spacing-md);
}

.contact-method h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.contact-method a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-cta {
  text-align: center;
}

.secondary-button {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.secondary-button:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  height: 50vh;
  min-height: 400px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.contact-methods {
  margin-top: var(--spacing-md);
}

.contact-method {
  margin-bottom: var(--spacing-md);
}

.contact-method h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-container {
  background: var(--color-background);
  padding: var(--spacing-lg);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
  opacity: 0.7;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.submit-button {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.submit-button:hover {
  background: var(--color-copper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.form-message {
  padding: var(--spacing-sm);
  border-radius: 4px;
  text-align: center;
  margin-top: var(--spacing-sm);
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Additional Info Section */
.additional-info-section {
  background: var(--color-background);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.info-card {
  background: var(--color-white);
  padding: var(--spacing-md);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.info-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

/* ===== FOOTER ===== */
#line-art-band {
  background: #fff;
  padding: 24px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.line-art {
  background: #fff;
  margin-top: 40px;
}

.line-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

#line-art-band .lineart {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

#line-art-band img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-footer .wrap {
  max-width: 1200px;
  margin: auto;
  padding: 28px 16px 40px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.site-footer p {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--text);
}

.site-footer nav a {
  color: var(--text);
  text-decoration: none;
  margin: 0 8px;
  transition: color var(--transition-fast);
}

.site-footer nav a:hover {
  color: var(--color-primary);
}

/* ===== CONTACT PAGE ===== */
.contact-wrap {
  padding-top: calc(64px + var(--spacing-xl));
  padding-bottom: var(--spacing-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-copy .eyebrow {
  font: 400 14px var(--ff-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.contact-copy .lede {
  font: 400 1.2rem var(--ff-body);
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.contact-copy p {
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: var(--spacing-md);
}

.contact-copy .btn-outline {
  margin-top: var(--spacing-md);
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 4px;
  min-height: 20px;
  font-weight: 400;
  transition: opacity var(--transition-fast);
}

.error-message:empty {
  opacity: 0;
}

.error-message:not(:empty) {
  opacity: 1;
}

.submit-button {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.submit-button:hover:not(:disabled) {
  background: var(--color-copper);
  transform: translateY(-2px);
}

.submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spinner {
  display: inline-block;
  margin-left: 8px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-status {
  margin-top: var(--spacing-md);
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
}

.form-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Success State */
.contact-form.success {
  text-align: center;
}

.contact-form.success .form-group,
.contact-form.success .submit-button {
  display: none;
}

.contact-form.success .success-message {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-md);
}

/* Success message styling for contact form */
.success-message {
  text-align: center;
  padding: var(--spacing-lg);
  background: var(--color-background);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.success-icon {
  font-size: 3rem;
  color: #28a745;
  margin-bottom: var(--spacing-sm);
  display: block;
}

.success-message h3 {
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.success-message p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
}

.success-actions {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}

.success-actions .btn-outline {
  margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .feature-grid,
  .content-grid,
  .contact-grid,
  .amenities-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-text h1 {
    font-size: clamp(1.8rem, 5vw + 1rem, 3rem);
  }
  
  .hero-subhead {
    font-size: 1.1rem;
  }
  
  .stats-chips {
    flex-direction: column;
    align-items: center;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .image-gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.large {
    grid-column: span 1;
  }
  
  .gallery-item img,
  .gallery-item.large img {
    height: 250px;
  }
  
  .carousel-slide {
    height: 300px;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .highlights-list {
    grid-template-columns: 1fr;
  }
  
  .activities-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-line-art img {
    max-height: 180px;
  }
  
  .lightbox-nav.prev {
    left: -60px;
  }
  
  .lightbox-nav.next {
    right: -60px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .hero-text h1 {
    font-size: clamp(1.5rem, 6vw + 1rem, 2.5rem);
  }
  
  .hero-subhead {
    font-size: 1rem;
  }
  
  .hero-cta {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 0.5rem 1rem;
  }
  
  .cta-button.large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .carousel-btn,
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .lightbox-nav.prev {
    left: -50px;
  }
  
  .lightbox-nav.next {
    right: -50px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

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

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

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}

.mb-2 {
  margin-bottom: var(--spacing-sm);
}

.mb-3 {
  margin-bottom: var(--spacing-md);
}

.mb-4 {
  margin-bottom: var(--spacing-lg);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: var(--spacing-xs);
}

.mt-2 {
  margin-top: var(--spacing-sm);
}

.mt-3 {
  margin-top: var(--spacing-md);
}

.mt-4 {
  margin-top: var(--spacing-lg);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .footer,
  .cta-button,
  .mobile-menu-toggle {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .hero {
    height: auto;
    min-height: auto;
    page-break-inside: avoid;
  }
} 

/* ===== Experience page: gallery-like thumbnail grids ===== */
.experience-page .thumb-grid{
  /* Force masonry-style columns, like Gallery */
  display: block !important;           /* override any prior grid/flex */
  column-width: 320px;                 /* target column width (desktop) */
  column-gap: 16px;                    /* space between columns */
  margin-top: 14px;
}

@media (max-width: 1100px){
  .experience-page .thumb-grid{ column-width: 280px; }
}
@media (max-width: 780px){
  .experience-page .thumb-grid{ column-width: 220px; }
}
@media (max-width: 560px){
  .experience-page .thumb-grid{ column-width: 100%; } /* single column on narrow phones */
}

/* Each item becomes a masonry card */
.experience-page .thumb-grid .gallery-item{
  display: inline-block;               /* required for CSS columns */
  width: 100%;
  break-inside: avoid;                 /* avoid column breaks inside items */
  margin: 0 0 16px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
}

/* Images: match Gallery sizing (no fixed height; preserve aspect) */
.experience-page .thumb-grid img{
  width: 100%;
  height: auto;                        /* remove any previous fixed heights */
  display: block;
  object-fit: cover;
  transform: translateZ(0);            /* smoother rendering */
}

/* Optional: subtle hover to indicate interactivity */
.experience-page .thumb-grid img:hover{
  filter: brightness(0.98);
}

/* ==== Sunriver: two-column pairs (small left, large right) ==== */
.sr-featurelist.sr-pairs .container{
  display:grid;
  grid-template-columns: minmax(260px,340px) 1fr; /* small card | large card */
  gap: 2.5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Reset the older per-article grid for this variant */
.sr-featurelist.sr-pairs .sr-feature{
  display:block;        /* override previous .sr-feature { display:grid; ... } */
  margin: 0;            /* handled by grid gaps */
}

/* Place odd articles in the left column (small card), even in the right (large card) */
.sr-featurelist.sr-pairs .sr-feature:nth-child(odd){ grid-column: 1; }
.sr-featurelist.sr-pairs .sr-feature:nth-child(even){ grid-column: 2; }

/* Small card (left): image + compact title only */
.sr-featurelist.sr-pairs .sr-feature:nth-child(odd) .sr-feature__media img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.sr-featurelist.sr-pairs .sr-feature:nth-child(odd) .sr-feature__body h3{
  margin: .5rem 0 0;
  font-size: 1.25rem;
}
.sr-featurelist.sr-pairs .sr-feature:nth-child(odd) .sr-feature__body p{
  display:block; /* show all text */
  line-height: 1.65;
  margin: 0.5rem 0 0;
}

/* Large card (right): taller image + full copy */
.sr-featurelist.sr-pairs .sr-feature:nth-child(even) .sr-feature__media img{
  width:100%;
  height:420px;          /* visually larger than left */
  object-fit:cover;
  border-radius:14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.sr-featurelist.sr-pairs .sr-feature:nth-child(even) .sr-feature__body h3{
  margin: .75rem 0 .35rem;
  font-size: 1.75rem;
}
.sr-featurelist.sr-pairs .sr-feature:nth-child(even) .sr-feature__body p{
  line-height:1.65;
}

/* Mobile: stack as a simple list again */
@media (max-width: 900px){
  .sr-featurelist.sr-pairs .container{ display:block; }
  .sr-featurelist.sr-pairs .sr-feature + .sr-feature{ margin-top: 2rem; }
  .sr-featurelist.sr-pairs .sr-feature:nth-child(odd) .sr-feature__body p{ display:block; }
  .sr-featurelist.sr-pairs .sr-feature .sr-feature__media img{ height:220px; }
}