/* ===== TOCCOA CURRENTS — WATER THEME ===== */

:root {
  --river-deep:   #0d3b5e;
  --river-mid:    #1a6b8a;
  --river-light:  #3ab5d8;
  --river-foam:   #a8dff0;
  --forest-dark:  #1b3a2a;
  --forest-mid:   #2e6b45;
  --forest-light: #5aad72;
  --stone:        #8b7d6b;
  --cream:        #f5f0e8;
  --accent:       #4ecdc4;
  --white:        #ffffff;
  --text-dark:    #1a2633;
  --text-mid:     #3d5166;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 59, 94, 0.92);
  backdrop-filter: blur(8px);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  color: var(--river-foam);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--river-foam);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: visible;
  padding-top: 0.75rem;
  background:
    linear-gradient(to right, rgba(0,0,0,0) 55%, rgba(0,0,0,0.65) 100%),
    linear-gradient(160deg, rgba(13,59,94,0.6) 0%, rgba(13,59,94,0.4) 50%, rgba(26,107,138,0.5) 100%),
    url('../../public/images/region/hero/20250531_115652.jpg') 30% 40% / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem 0.5rem;
  margin-top: 0;
  max-width: 800px;
}

.hero-wave-content {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 101;
  padding: 1rem 2rem 2.5rem;
  text-align: center;
}

/* Animated water ripples */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(168, 223, 240, 0.2);
  animation: ripple 6s ease-out infinite;
}
.hero::before { width: 300px; height: 300px; top: 60%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0s; }
.hero::after  { width: 600px; height: 600px; top: 60%; left: 50%; transform: translate(-50%, -50%); animation-delay: 2s; }

@keyframes ripple {
  0%   { opacity: 0.6; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(2.5); }
}

/* Flowing water overlay */
.water-overlay {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  height: 240px;
  z-index: 120;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 3rem;
}

.wave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

@keyframes wave {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-30px); }
}


.hero-badge {
  display: inline-block;
  background: rgba(78, 205, 196, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero h1 em {
  font-style: normal;
  color: var(--river-foam);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  max-width: 780px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.hero-location {
  color: var(--river-foam);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  margin-top: 0.4rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.hero-location span::before { content: '◆ '; font-size: 0.5rem; opacity: 0.6; }

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #b8f0ec;
  color: var(--river-deep);
}
.btn-primary:hover { background: #6de0d8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(78,205,196,0.4); }

.btn-outline {
  background: transparent;
  border-color: var(--river-foam);
  color: var(--river-foam);
}
.btn-outline:hover { background: var(--river-foam); color: var(--river-deep); transform: translateY(-2px); }

.btn-outline-dark {
  background: var(--river-deep);
  border: 2px solid var(--river-deep);
  color: var(--white);
}
.btn-outline-dark:hover { background: #0a2e4a; border-color: #0a2e4a; transform: translateY(-2px); }

/* ===== SECTION BASE ===== */
section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--river-deep);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-mid);
  font-family: Arial, sans-serif;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--river-light), var(--forest-light));
  margin: 1rem auto;
  border-radius: 2px;
}

/* ===== BOOK DUAL HEADER ===== */
.book-dual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: -1.5rem;
}

.book-dual-cabin {
  text-align: center;
  padding: 0.75rem 2.5rem;
}

.book-dual-sep {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  align-self: center;
}

.book-dual-name {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: bold;
  color: var(--river-deep);
  margin-bottom: 0.6rem;
}

.book-dual-links {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  flex-wrap: wrap;
}

.book-platform-link {
  padding: 0.28rem 0.85rem;
  border-radius: 20px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}
.book-platform-link:hover { opacity: 0.85; transform: translateY(-1px); }

.airbnb-pill { background: #ff385c; color: white; }
.vrbo-pill   { background: #1b6ec2; color: white; }
.houfy-pill  { background: #00756a; color: white; }

.book-hero-strip { display: none; }

.book-hero-heading {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--river-deep);
  margin: 1.5rem 0 0.25rem;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 6;
  text-align: center;
}

.book-hero-strip .book-dual {
  max-width: 860px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: nowrap;
  padding-top: 0;
}

.book-hero-strip .book-dual-cabin {
  padding-top: 0.25rem;
}

.book-hero-strip .book-dual-name {
  color: var(--river-deep);
  text-shadow: none;
  font-size: 1.25rem;
}

.book-hero-strip .book-dual-sep {
  background: rgba(13,59,94,0.25);
}

@media (max-width: 520px) {
  .book-dual-sep { display: none; }
  .book-dual-cabin { padding: 0.75rem 1.5rem; }
}

/* ===== FOUR PILLARS ===== */
.pillars-strip {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--cream);
  padding: 2rem 1rem 2.5rem;
  flex-wrap: wrap;
  margin-top: 100px;
}

.pillar {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 1rem 1.25rem;
  position: relative;
}

.pillar + .pillar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(13,59,94,0.15);
}

.pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
}

.pillar-name {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--river-deep);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.pillar-desc {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .pillar { min-width: 45%; }
  .pillar + .pillar::before { display: none; }
}

/* ===== WHAT THIS PLACE OFFERS ===== */
#offered {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.offered-cols {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.offered-cabin {
  flex: 1;
  min-width: 0;
}

.offered-cabin-title {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--river-deep);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--river-foam);
}

.offered-categories {
  display: block;
}

.offered-cat {
  margin-bottom: 0.1rem;
}

.offered-cat h4 {
  font-family: Georgia, serif;
  font-size: 0.9rem;
  color: var(--forest-mid);
  margin-bottom: 0.35rem;
}

.offered-cat ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offered-cat ul li {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.6;
  padding-left: 0.75rem;
  position: relative;
}

.offered-cat ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--river-mid);
}

.offered-placeholder {
  color: var(--text-mid);
  font-style: italic;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .offered-cols { flex-direction: column; }
}

/* ===== AMENITIES ===== */
#amenities {
  padding: 0 2rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.amenities-subheader {
  margin: 1rem 0 1.25rem;
  border-top: 1px solid rgba(13,59,94,0.1);
  padding-top: 0.75rem;
}

.amenities-subheader h3 {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.amenities-grid {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.amenities-col {
  flex: 1;
  min-width: 0;
}

.amenities-cabin-title {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--river-deep);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--river-foam);
}

.amenities-sub {
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--text-mid);
}

.amenities-group {
  margin-bottom: 1.25rem;
}

.amenities-group-title {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--forest-mid);
  margin-bottom: 0.4rem;
}

.amenities-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-group ul li {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.55;
  padding: 0.2rem 0 0.2rem 1rem;
  border-left: 2px solid var(--river-foam);
  margin-bottom: 0.4rem;
}

.amenities-day-header {
  text-align: center;
  margin: 2.5rem 0 1.5rem;
}

.amenities-day-header h3 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--river-deep);
  margin-bottom: 0.5rem;
}

.amenities-day-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-day-list li {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.55;
  padding: 0.2rem 0 0.2rem 1rem;
  border-left: 2px solid var(--river-foam);
  margin-bottom: 0.4rem;
}

@media (max-width: 700px) {
  .amenities-grid { flex-direction: column; }
}

/* ===== CONVERSION ELEMENTS ===== */
.book-direct-nudge {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--forest-mid);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.book-dual-stars {
  font-size: 0.78rem;
  color: #e8a020;
  margin-bottom: 0.4rem;
  font-family: Arial, sans-serif;
}

.book-dual-stars span {
  color: var(--text-mid);
  font-size: 0.72rem;
}

.houfy-featured {
  background: #00756a !important;
  box-shadow: 0 0 0 2px #00b39f;
  font-size: 0.82rem !important;
  padding: 0.35rem 1rem !important;
}

/* Sticky booking bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--river-deep);
  padding: 0.6rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
}

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

.sticky-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.sticky-bar-cabin {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1.5rem;
  flex-wrap: wrap;
}

.sticky-cabin-name {
  font-family: Georgia, serif;
  font-size: 0.88rem;
  font-weight: bold;
  color: var(--river-foam);
}

.sticky-stars {
  font-size: 0.72rem;
  color: #e8a020;
  white-space: nowrap;
}

.sticky-links {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.sticky-bar-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  align-self: center;
}

@media (max-width: 600px) {
  .sticky-bar-inner { flex-direction: column; gap: 0.5rem; }
  .sticky-bar-sep { display: none; }
}

/* ===== BOOK NOW CTA ===== */
.book-cta-bar {
  background: linear-gradient(135deg, var(--river-deep) 0%, var(--river-mid) 100%);
  padding: 2.5rem 2rem;
  text-align: center;
}

.book-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.book-cta-bar .book-dual-name {
  color: var(--river-foam);
}

.book-cta-text {
  color: var(--river-foam);
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.book-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.book-cta-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.book-cta-hw {
  background: var(--river-foam);
  color: var(--river-deep);
}
.book-cta-hw:hover { background: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.book-cta-fh {
  background: transparent;
  border: 2px solid var(--river-foam);
  color: var(--river-foam);
}
.book-cta-fh:hover { background: var(--river-foam); color: var(--river-deep); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ===== REVIEWS ===== */
#reviews {
  background: var(--white);
}

.reviews-scores {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.reviews-score-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(13,59,94,0.08);
  min-width: 200px;
}

.reviews-cabin-name {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.reviews-stars {
  font-size: 1.4rem;
  color: #f5a623;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.reviews-rating {
  font-size: 2rem;
  font-weight: bold;
  color: var(--river-deep);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.reviews-rating span {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: normal;
}

.reviews-count {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--text-mid);
}

.reviews-columns {
  display: flex;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.reviews-col {
  flex: 1;
  min-width: 0;
}

.reviews-col-title {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: var(--river-deep);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--river-light);
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .reviews-columns { flex-direction: column; }
}

.review-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(13,59,94,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-author {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--river-deep);
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-stars { color: #f5a623; font-size: 0.85rem; }

.review-date {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--text-mid);
}

.review-cabin-tag {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  background: rgba(26,107,138,0.1);
  color: var(--river-mid);
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  font-weight: bold;
}

.review-text {
  font-family: Georgia, serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.65;
  font-style: italic;
}

.review-source {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  color: var(--text-mid);
  text-align: right;
}

.reviews-more-link {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--river-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--river-mid);
  padding-bottom: 1px;
}
.reviews-more-link:hover { color: var(--river-deep); border-bottom-color: var(--river-deep); }

/* ===== CABINS ===== */
#cabins { background: var(--white); position: relative; z-index: 2; }

.cabins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.cabin-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,59,94,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.cabin-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(13,59,94,0.18); }
.cabin-card--headwaters { background: #e8f7f7; }
.cabin-card--fishhead   { background: #e8f4ec; }

.cabin-card--headwaters .cabin-offered-title,
.cabin-card--headwaters .cabin-day-title,
.cabin-card--headwaters .cabin-day-toggle,
.cabin-card--headwaters .amenities-group-title { color: var(--river-deep); }

.cabin-card--fishhead .cabin-offered-title,
.cabin-card--fishhead .cabin-day-title,
.cabin-card--fishhead .cabin-day-toggle,
.cabin-card--fishhead .amenities-group-title { color: var(--forest-dark); }

.cabin-card-header {
  background: linear-gradient(135deg, var(--river-deep), var(--river-mid));
  padding: 2rem 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cabin-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 0; right: 0;
  height: 40px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.cabin-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; display: block; }

.cabin-card-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.cabin-card-header .cabin-sub {
  color: var(--river-foam);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

.cabin-card-body {
  padding: 2rem 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cabin-desc {
  font-family: Arial, sans-serif;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.dog-amenities {
  background: linear-gradient(135deg, rgba(46,107,69,0.08), rgba(58,181,216,0.08));
  border-left: 3px solid var(--forest-light);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
}

.dog-amenities h4 {
  color: var(--forest-dark);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-family: Arial, sans-serif;
}

.dog-amenities ul {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.dog-amenities ul li {
  color: var(--forest-dark);
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  padding: 0.15rem 0;
}

/* ===== INLINE CABIN AMENITIES ===== */
.cabin-offered {
  margin: 1rem 0 1.25rem;
  border-top: 1px solid rgba(13,59,94,0.1);
  padding-top: 0.75rem;
}

.cabin-offered-title {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.cabin-offered-cat {
  display: flex;
  gap: 0.5rem;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  padding: 0.18rem 0;
  border-bottom: 1px solid rgba(13,59,94,0.06);
}

.cabin-offered-cat strong {
  white-space: nowrap;
  color: var(--text-dark);
  min-width: 140px;
}

.cabin-offered-cat span {
  color: var(--text-mid);
}

.cabin-offered-hidden {
  display: none;
}

.cabin-offered-toggle {
  margin-top: 0.5rem;
  background: none;
  border: 1px solid var(--river-mid);
  color: var(--river-mid);
  border-radius: 20px;
  padding: 0.25rem 0.9rem;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cabin-offered-toggle:hover {
  background: var(--river-mid);
  color: white;
}

.cabin-day {
  margin: 1rem 0 1.25rem;
  border-top: 1px solid rgba(13,59,94,0.1);
  padding-top: 0.75rem;
}

.cabin-day-title {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.cabin-day-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0;
  margin-bottom: 0.5rem;
  text-align: left;
}
.cabin-day-toggle:hover { color: var(--river-mid); }
.cabin-day-chevron { transition: transform 0.25s; }
.cabin-day--collapsible.open .cabin-day-chevron { transform: rotate(180deg); }
.cabin-day-list--collapsed li:nth-child(n+3) { display: none; }

.cabin-day-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cabin-day-list li {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.55;
  padding: 0.18rem 0 0.18rem 0.75rem;
  border-left: 2px solid var(--river-foam);
  margin-bottom: 0.3rem;
}

.booking-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.booking-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  transition: all 0.2s;
}

.booking-link .capacity {
  font-weight: normal;
  opacity: 0.8;
  font-size: 0.78rem;
}

.booking-link.vrbo   { background: #1b6ec2; color: white; }
.booking-link.airbnb { background: #ff385c; color: white; }
.booking-link.houfy  { background: #00756a; color: white; }

.booking-link:hover { opacity: 0.88; transform: translateX(3px); }

/* ===== RIVER DIVIDER ===== */
.river-divider {
  height: 120px;
  background: linear-gradient(180deg, var(--white) 0%, var(--river-light) 50%, var(--river-mid) 100%);
  position: relative;
  overflow: hidden;
}
.river-divider svg { position: absolute; bottom: 0; width: 100%; }

/* ===== NEARBY ===== */
#nearby {
  background: linear-gradient(170deg, var(--river-mid) 0%, var(--river-mid) 55%, var(--forest-dark) 100%);
  color: var(--white);
}

#nearby a {
  color: var(--accent);
  text-decoration: none;
}
#nearby a:hover {
  color: white;
  text-decoration: underline;
}
#nearby .nearby-card a {
  color: #1a4fc4 !important;
}
#nearby .nearby-card a:hover {
  color: #0f2f7a !important;
  text-decoration: underline;
}

#nearby .section-header h2 { color: var(--river-foam); }
#nearby .section-header p   { color: rgba(255,255,255,0.75); }

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
}

.explore-wave {
  margin-top: 2rem;
  line-height: 0;
}
.explore-wave svg { display: block; width: 100%; }

.nearby-card {
  background: var(--cream);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.nearby-card:hover { background: #ede8df; transform: translateY(-4px); }
.nearby-card.map-active { background: #ede8df; border-color: var(--river-light); transform: translateY(-4px); }

.nearby-card-icon { font-size: 2rem; margin-bottom: 0.6rem; }

.nearby-card h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a6b8a !important;
  color: var(--accent);
  font-family: Arial, sans-serif;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(78,205,196,0.3);
}

.nearby-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nearby-card ul li {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}
.nearby-card ul li::before {
  content: '~';
  position: absolute;
  left: 0;
  color: var(--river-mid);
  font-weight: bold;
}

/* ===== MEET YOUR HOSTS ===== */
#hosts {
  background: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.hosts-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hosts-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.2em;
}

.hosts-title {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--river-deep);
  margin-bottom: 0.5rem;
}

.hosts-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.25rem 0 1.5rem;
  flex-wrap: wrap;
}

.hosts-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--cream);
  border: 1px solid rgba(13,59,94,0.12);
  border-radius: 12px;
  padding: 0.65rem 1.1rem;
}

.hosts-badge-icon {
  font-size: 1.5rem;
}

.hosts-badge-label {
  font-family: Georgia, serif;
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--river-deep);
}

.hosts-badge-sub {
  font-family: Arial, sans-serif;
  font-size: 0.73rem;
  color: var(--text-mid);
}

.hosts-divider {
  width: 60px;
  height: 3px;
  background: var(--river-foam);
  border-radius: 2px;
  margin: 0 auto 2rem;
}

.hosts-story {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  text-align: left;
}

.hosts-closing {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--river-deep);
  font-style: italic;
  margin-top: 1.5rem;
}

/* ===== SOCIAL / FOOTER ===== */
#connect {
  background: var(--cream);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid rgba(13,59,94,0.12);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text-dark);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.social-link:hover { border-color: var(--river-light); color: var(--river-deep); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(58,181,216,0.2); }

footer {
  background: var(--river-deep);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}
footer a { color: var(--river-foam); text-decoration: none; }
footer strong { color: var(--white); }

/* ===== SMOKE FREE BADGE ===== */
.smoke-free-banner {
  background: linear-gradient(90deg, var(--forest-mid), var(--river-mid));
  color: var(--white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* ===== HAMBURGER / MOBILE DRAWER ===== */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--river-foam);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--river-deep);
  z-index: 200;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.nav-drawer.open { right: 0; }

.nav-drawer-close {
  background: none;
  border: none;
  color: var(--river-foam);
  font-size: 1.5rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 2rem;
  line-height: 1;
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-drawer ul li a {
  display: block;
  color: var(--river-foam);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 1.1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}

.nav-drawer ul li a:hover { color: var(--accent); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
}

.nav-overlay.open { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 0.75rem 1rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .hero-cta { flex-direction: column; align-items: center; }
  .wave-cta { flex-direction: column; align-items: center; }

  .cabins-grid  { grid-template-columns: 1fr; }
  .nearby-grid  { grid-template-columns: 1fr 1fr; }
}

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


/* ===== GALLERY (Option A — cabin card previews) ===== */
.cabin-gallery-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  margin: 1rem 0 0.5rem;
}

.g-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: var(--river-deep);
}

.g-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.g-thumb:hover img { transform: scale(1.08); }

.gallery-view-all {
  display: block;
  width: 100%;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--river-mid);
  background: none;
  border: none;
  padding: 0.25rem 0;
  margin-bottom: 1.25rem;
  cursor: pointer;
  transition: color 0.2s;
}
.gallery-view-all:hover { color: var(--river-deep); text-decoration: underline; }

/* ===== PHOTOS SECTION (Option B — full gallery) ===== */
#photos { background: var(--white); }

.photo-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.photo-tab-btn {
  padding: 0.6rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--river-mid);
  background: transparent;
  color: var(--river-mid);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}
.photo-tab-btn.active {
  background: var(--river-mid);
  color: var(--white);
}
.photo-tab-btn:hover:not(.active) {
  background: var(--river-foam);
  color: var(--river-deep);
}

.photo-grid-panel { display: none; }
.photo-grid-panel.active { display: block; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== LIGHTBOX ===== */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }

.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  display: block;
}

.lb-close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
  line-height: 1;
}
.lb-close:hover { opacity: 1; }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem 0.75rem;
  border-radius: 4px;
  line-height: 1;
  opacity: 0.8;
  transition: background 0.2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255, 255, 255, 0.3); opacity: 1; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }

.lb-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}

/* ===== MAP ===== */
#map,
#hw-map,
#fh-map {
  max-width: 960px;
  margin: 0 auto;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,59,94,0.15);
}

#cabins-map,
#hw-cabins-map,
#fh-cabins-map {
  height: 400px;
  width: 100%;
  display: block;
  position: relative;
}

.cabin-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1rem 0.5rem;
  flex-wrap: wrap;
}
.cabin-toggle-label {
  font-size: 0.82rem;
  font-family: Arial, sans-serif;
  color: var(--river-deep);
  font-weight: 600;
}
.cabin-toggle-btn {
  padding: 0.35rem 1rem;
  border-radius: 20px;
  border: 2px solid var(--river-mid);
  background: white;
  color: var(--river-mid);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  transition: all 0.2s;
}
.cabin-toggle-btn.active {
  background: var(--river-mid);
  color: white;
}
.cabin-toggle-btn:hover:not(.active) {
  background: var(--river-foam);
}

.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0 1rem 1.5rem;
}

.map-filter-btn {
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  border: 2px solid var(--river-mid);
  background: white;
  color: var(--river-mid);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.map-filter-btn.active,
.map-filter-btn:hover {
  background: var(--river-mid);
  color: white;
}

.map-poi-link {
  cursor: pointer;
  font-size: 0.7rem;
  opacity: 0.45;
  margin-left: 0.3rem;
  vertical-align: middle;
  transition: opacity 0.15s;
  user-select: none;
  text-decoration: none;
}
.map-poi-link:hover { opacity: 1; }

/* ===== AVAILABILITY CALENDAR ===== */
#availability {
  background: var(--cream);
}

.avail-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.avail-nav-btn {
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  border: 2px solid var(--river-mid);
  background: white;
  color: var(--river-mid);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
}
.avail-nav-btn:hover:not(:disabled) { background: var(--river-mid); color: white; }
.avail-nav-btn:disabled { opacity: 0.35; cursor: default; }

.avail-range {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  min-width: 180px;
  text-align: center;
}

.avail-calendar-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.avail-cabins {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.avail-cabin {
  flex: 1;
  min-width: 0;
}

.avail-cabin-title {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: var(--river-deep);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.avail-months {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.avail-month {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(13,59,94,0.09);
  overflow: hidden;
  width: 100%;
}

.avail-month-header {
  background: linear-gradient(135deg, var(--river-deep), var(--river-mid));
  color: white;
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

#avail-fishhead .avail-month-header { background: linear-gradient(135deg, #1b3a2a, #2e6b45); }

.avail-month table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.avail-month th {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: bold;
  color: var(--text-mid);
  padding: 0.35rem 0;
  background: rgba(13,59,94,0.04);
}

.avail-month td {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  padding: 0.38rem 0;
  color: var(--text-dark);
  border: none;
}

.avail-month td.booked {
  background: rgba(220, 53, 69, 0.13);
  color: #c0392b;
  text-decoration: line-through;
  opacity: 0.75;
}

.avail-month td.today {
  font-weight: bold;
  color: var(--river-mid);
}

.avail-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.avail-legend span { display: flex; align-items: center; gap: 0.4rem; }
.avail-legend .dot {
  width: 12px; height: 12px; border-radius: 50%; display: inline-block;
}
.avail-legend .dot-avail { background: var(--forest-light); }
.avail-legend .dot-booked { background: #c0392b; opacity: 0.55; }

.avail-status {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 0.6rem;
}

@media (max-width: 640px) {
  .avail-cabins { flex-direction: column; }
}

/* ===== FESTIVALS & EVENTS ===== */
.festivals-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}

.festivals-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.festivals-table thead tr {
  background: var(--river-deep);
  color: var(--white);
}

.festivals-table th {
  padding: 0.75rem 1.2rem;
  text-align: left;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.festivals-table td {
  padding: 0.7rem 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: var(--text-dark);
  vertical-align: top;
  text-align: left;
}

.festivals-table tbody tr:nth-child(even) {
  background: rgba(13,59,94,0.04);
}

.festivals-table tbody tr:hover {
  background: rgba(13,59,94,0.08);
}

.festivals-table td:nth-child(3) {
  font-size: 1rem;
}

.festivals-table .no-dogs { color: #c0392b; font-weight: bold; }
.festivals-table a { color: var(--river-deep); text-decoration: none; }
.festivals-table a:hover { text-decoration: underline; color: var(--river-mid); }

/* ===== DETAIL PAGES (headwaters.html / fishhead.html) ===== */

/* Page hero — replaces site hero on detail pages */
.detail-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 5rem;
  background:
    linear-gradient(160deg, rgba(13,59,94,0.75) 0%, rgba(26,107,138,0.6) 100%),
    url('../../public/images/headwaters/Hero/20250531_115652.jpg') center 40% / cover no-repeat;
  overflow: hidden;
}

.detail-hero--fishhead {
  background:
    linear-gradient(160deg, rgba(27,58,42,0.78) 0%, rgba(46,107,69,0.65) 100%),
    url('../../public/images/fish-head/River/20250531_150225.jpg') center 40% / cover no-repeat;
}

.detail-hero-back {
  position: absolute;
  top: 4.5rem;
  left: 2rem;
}

.detail-back-link {
  color: var(--river-foam);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  background: rgba(0,0,0,0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}
.detail-back-link:hover { opacity: 1; color: var(--accent); }

.detail-hero-badge {
  display: inline-block;
  background: rgba(78, 205, 196, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}

.detail-hero-content {
  position: relative;
  z-index: 2;
}

.detail-hero-title {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

.detail-hero-sub {
  color: var(--river-foam);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.detail-hero-stars {
  font-size: 0.85rem;
  color: #f5c842;
  font-family: Arial, sans-serif;
  letter-spacing: 0.04em;
}
.detail-hero-stars span { color: rgba(255,255,255,0.7); font-size: 0.78rem; }

/* Multi-toned teal wave at the bottom of the detail hero */
.detail-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
}
.detail-hero-wave svg { display: block; width: 100%; }

/* Detail body wrapper */
.detail-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

/* Make the card full-width on detail pages */
.detail-card {
  box-shadow: 0 4px 32px rgba(13,59,94,0.13);
  border-radius: 16px;
  overflow: hidden;
}
.detail-card:hover { transform: none; box-shadow: 0 4px 32px rgba(13,59,94,0.13); }

/* View Full Details button used on index.html summary cards */
.view-details-btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.55rem 1.4rem;
  border-radius: 24px;
  border: 2px solid var(--river-mid);
  color: var(--river-mid);
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.view-details-btn:hover {
  background: var(--river-mid);
  color: white;
  transform: translateY(-1px);
}

.cabin-card--fishhead .view-details-btn {
  border-color: var(--forest-mid);
  color: var(--forest-mid);
}
.cabin-card--fishhead .view-details-btn:hover {
  background: var(--forest-mid);
  color: white;
}

.cabin-cross-sell {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: #777;
  font-style: italic;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* Highlight bullet list for index summary cards */
.cabin-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}
.cabin-highlights li {
  font-family: Arial, sans-serif;
  font-size: 0.87rem;
  color: var(--text-dark);
  padding: 0.22rem 0 0.22rem 1.1rem;
  border-left: 2px solid var(--river-foam);
  margin-bottom: 0.3rem;
  line-height: 1.45;
}
.cabin-card--fishhead .cabin-highlights li { border-left-color: var(--forest-light); }

@media (max-width: 600px) {
  .detail-hero-back { left: 1rem; }
  .detail-body { padding: 1.5rem 1rem 3rem; }
}

/* ===== INLINE CTA BARS (cabin pages) ===== */
.hw-cta-bar {
  background: linear-gradient(135deg, var(--river-deep) 0%, var(--river-mid) 100%);
  padding: 2.25rem 1.5rem;
  text-align: center;
}
.fh-cta-bar {
  background: linear-gradient(135deg, #1b3a2a 0%, #2e6b45 100%);
  padding: 2.25rem 1.5rem;
  text-align: center;
}
.hw-cta-bar-inner,
.fh-cta-bar-inner {
  max-width: 680px;
  margin: 0 auto;
}
.hw-cta-bar-text {
  color: var(--river-foam);
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}
.fh-cta-bar-text {
  color: #c8e6c9;
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}
.hw-cta-bar-links,
.fh-cta-bar-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
