/* ============================================================
   Salmon River Tubing — styles.css
   Palette: River Blue | Forest Green | Wood Tone | Cream
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --blue-dark:   #1B3A5C;
  --blue-mid:    #2E6FA3;
  --blue-light:  #E8F2FA;
  --green-dark:  #2D5A27;
  --green-mid:   #3D7A35;
  --green-light: #EBF4E9;
  --wood:        #8B6F47;
  --wood-light:  #C4A882;
  --gold:        #C49A3C;
  --cream:       #F5F0E8;
  --white:       #FFFFFF;
  --text-dark:   #1A1A1A;
  --text-mid:    #444444;
  --text-light:  #6B6B6B;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.10);
  --shadow-md:   0 6px 24px rgba(0,0,0,.14);
  --radius:      10px;
  --transition:  .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

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

a { color: var(--blue-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--blue-dark);
}

/* ---------- Utility ---------- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.section-sub  { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--blue-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #a8832e;
  border-color: #a8832e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,154,60,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-dark);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,90,39,.3);
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(27, 58, 92, .97);
  backdrop-filter: blur(8px);
  padding: .9rem 0;
  transition: box-shadow var(--transition);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.25); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}
.nav-logo span { display: block; font-size: .7rem; font-weight: 400; color: var(--wood-light); letter-spacing: .08em; text-transform: uppercase; font-family: 'Open Sans', sans-serif; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.nav-links a:hover { color: var(--gold); }
.nav-cta .btn { padding: .55rem 1.3rem; font-size: .85rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(5,18,40,.72) 0%, rgba(10,38,20,.62) 100%),
    url('../images/hero.JPG') center center / cover no-repeat;
}
.hero-fallback {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, #1B3A5C 0%, #2D5A27 50%, #1a3347 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 80px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(196,154,60,.25);
  border: 1px solid rgba(196,154,60,.5);
  color: var(--gold);
  padding: .3rem 1rem;
  border-radius: 20px;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  margin-bottom: .75rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  font-style: italic;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.hero-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: .35rem .9rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
}
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ---------- Quick Info Bar ---------- */
.info-bar {
  background: var(--blue-dark);
  padding: 1.1rem 0;
}
.info-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
.info-item .icon {
  font-size: 1.1rem;
  color: var(--gold);
}
.info-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.2);
}

/* ---------- Why Float ---------- */
.why-float {
  padding: 90px 0;
  background: var(--cream);
}
.why-float-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 3rem;
}
.why-float-text { }
.why-float-text p { color: var(--text-mid); margin-bottom: 1.25rem; }
.why-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.perk {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.perk-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.perk h4 { font-size: 1rem; color: var(--blue-dark); margin-bottom: .2rem; font-family: 'Open Sans', sans-serif; font-weight: 700; }
.perk p  { font-size: .875rem; color: var(--text-light); line-height: 1.5; }
.why-float-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #2E6FA3, #2D5A27);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  position: relative;
}
.why-float-image img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder {
  text-align: center;
  padding: 2rem;
}
.img-placeholder .ph-icon { font-size: 3rem; display: block; margin-bottom: .5rem; }

/* ---------- Packages ---------- */
.packages {
  padding: 90px 0;
  background: var(--white);
}
.packages-header { text-align: center; margin-bottom: 3rem; }
.packages-header .section-sub { margin: 0 auto; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.card {
  border: 2px solid #E0E8F0;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all var(--transition);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(196,154,60,.18);
}
.card-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
}
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.2rem; color: var(--blue-dark); margin-bottom: .4rem; }
.card-price {
  font-size: 2.2rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--green-dark);
  font-weight: 700;
  margin: .5rem 0;
  line-height: 1;
}
.card-price span { font-size: .95rem; font-family: 'Open Sans', sans-serif; color: var(--text-light); }
.card-includes {
  list-style: none;
  margin: 1rem 0 1.5rem;
  flex: 1;
}
.card-includes li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-mid);
  padding: .25rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.card-includes li:last-child { border-bottom: none; }
.card-includes li::before { content: '✓'; color: var(--green-mid); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }
.card .btn { margin-top: auto; width: 100%; }

/* Rentals Table */
.rentals-section { margin-top: 4rem; }
.rentals-section h3 {
  font-size: 1.5rem;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
  text-align: center;
}
.rentals-table-wrap { overflow-x: auto; }
.rentals-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.rentals-table th {
  background: var(--blue-dark);
  color: var(--white);
  padding: .85rem 1.2rem;
  text-align: left;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.rentals-table td {
  padding: .85rem 1.2rem;
  border-bottom: 1px solid #E8EEF4;
  color: var(--text-mid);
}
.rentals-table tr:last-child td { border-bottom: none; }
.rentals-table tr:nth-child(even) td { background: var(--blue-light); }
.rentals-table .shuttle-note {
  background: var(--green-light);
  text-align: center;
  font-size: .85rem;
  color: var(--green-dark);
  font-weight: 600;
}

/* ---------- River Conditions ---------- */
.conditions {
  padding: 90px 0;
  background: var(--blue-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.conditions::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.conditions-inner { position: relative; }
.conditions-header { margin-bottom: 3rem; }
.conditions-header .section-title { color: var(--white); }
.conditions-header .section-sub { color: rgba(255,255,255,.7); }
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.flow-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.flow-number {
  font-size: 3.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
}
.flow-label { font-size: .85rem; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.flow-status {
  display: inline-block;
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 700;
}
.status-good { background: rgba(45,90,39,.4); color: #7DCC75; border: 1px solid rgba(125,204,117,.3); }
.status-check { background: rgba(196,154,60,.2); color: var(--gold); border: 1px solid rgba(196,154,60,.3); }
.releases-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.releases-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 1.25rem; }
.release-dates { list-style: none; }
.release-dates li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}
.release-dates li:last-child { border-bottom: none; }
.release-tag {
  background: var(--gold);
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 800;
  padding: .2rem .6rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.conditions-links {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.conditions-links a.btn-outline:hover { color: var(--blue-dark); }
.gauge-link {
  color: var(--wood-light);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.gauge-link:hover { color: var(--gold); }

/* ---------- Book a Room Panel ---------- */
.book-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--blue-dark);
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem;
  margin: 2.5rem 0 3rem;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.book-panel-text h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .4rem;
}
.book-panel-text p {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  margin: 0;
}
.book-panel-text strong { color: var(--gold); }
.book-panel-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-outline-dark {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
  background: transparent;
  text-align: center;
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .book-panel { flex-direction: column; align-items: flex-start; padding: 1.75rem; }
  .book-panel-ctas { width: 100%; }
  .book-panel-ctas .btn, .book-panel-ctas .btn-outline-dark { width: 100%; text-align: center; }
}

/* ---------- Location & Contact ---------- */
.contact {
  padding: 90px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 3rem;
}
.contact-details h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-item .ci-icon {
  font-size: 1.4rem;
  color: var(--blue-mid);
  flex-shrink: 0;
  margin-top: .1rem;
}
.contact-item h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); font-family: 'Open Sans', sans-serif; margin-bottom: .2rem; }
.contact-item p, .contact-item a { font-size: 1rem; color: var(--text-dark); font-weight: 600; }
.contact-item a:hover { color: var(--blue-mid); }
.contact-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #C8D8E8;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--blue-dark);
  font-size: .9rem;
  text-align: center;
  padding: 2rem;
}
.map-embed iframe { width: 100%; height: 380px; border: none; }
.map-pin { font-size: 3rem; }

/* ---------- Footer ---------- */
.footer {
  background: #0F2238;
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { font-size: 1.1rem; margin-bottom: .75rem; color: var(--white); }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { font-size: .875rem; color: rgba(255,255,255,.6); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .why-float-grid  { grid-template-columns: 1fr; }
  .why-float-image { order: -1; min-height: 280px; }
  .conditions-grid { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
  .footer-brand    { grid-column: 1 / -1; }
  .why-perks       { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: var(--blue-dark); padding: 1.5rem; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-cta  { display: none; }
  .nav-toggle { display: flex; }
  .info-divider { display: none; }
  .info-bar-inner { gap: .75rem; }
  .hero-content { padding: 110px 20px 70px; }
  .cards-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .flow-number { font-size: 2.8rem; }
  .contact-ctas { flex-direction: column; }
  .contact-ctas .btn { text-align: center; }
}

/* ---------- Lodge Experience Gallery ---------- */
.lodge-experience {
  padding: 90px 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  margin-top: 0;
}
.gallery-item {
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white);
  padding: .75rem 1rem .6rem;
  font-size: .85rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); z-index: 1; }
.gallery-item:hover .gallery-caption { transform: translateY(0); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.gallery-tall { grid-row: span 1; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.gallery-wide, .gallery-item.gallery-tall { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Rooms Section ---------- */
.rooms {
  padding: 90px 0;
  background: var(--blue-dark);
  color: var(--white);
}
.building-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.building-icon { font-size: 1.5rem; flex-shrink: 0; }
.building-header h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: .15rem;
  font-family: 'Playfair Display', Georgia, serif;
}
.building-header p {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.room-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.room-card-wide { grid-column: span 2; }
.room-photo {
  height: 175px;
  background-size: cover;
  background-position: center;
}
.room-card-wide .room-photo { height: 210px; }
.room-body { padding: 1.1rem; }
.room-body h4 {
  font-size: .98rem;
  color: var(--white);
  margin-bottom: .45rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.room-body p {
  font-size: .8rem;
  color: rgba(255,255,255,.62);
  margin-bottom: .75rem;
  line-height: 1.55;
}
.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-bottom: .75rem;
}
.room-tags span {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  font-size: .65rem;
  padding: .18rem .5rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: .03em;
}
.room-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.room-price span {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.avail-badge {
  background: var(--gold);
  color: var(--blue-dark);
  font-size: .62rem;
  padding: .18rem .5rem;
  border-radius: 20px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Common Areas */
.common-areas { margin-top: 1rem; }
.common-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.common-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
}
.common-photo {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.common-body { padding: 1.1rem; }
.common-body h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .4rem;
}
.common-body p {
  font-size: .8rem;
  color: rgba(255,255,255,.62);
  line-height: 1.55;
  margin: 0;
}

/* Meals Callout */
.meals-callout {
  margin-top: 2rem;
  background: rgba(196,154,60,.1);
  border: 1px solid rgba(196,154,60,.28);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.5rem;
}
.meals-callout > div strong {
  display: block;
  color: var(--gold);
  font-size: .98rem;
  margin-bottom: .25rem;
  font-family: 'Open Sans', sans-serif;
}
.meals-callout > div p {
  font-size: .8rem;
  color: rgba(255,255,255,.62);
  margin: 0;
  line-height: 1.55;
}

/* Rooms responsive */
@media (max-width: 900px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .room-card-wide { grid-column: span 1; }
}
@media (max-width: 560px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .common-grid { grid-template-columns: 1fr; }
}

/* ---------- Scrolling Ticker ---------- */
.ticker-wrap {
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  height: 38px;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 0 1.1rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-outer {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: inline-block;
  white-space: nowrap;
  font-size: .8rem;
  line-height: 1;
  animation: ticker-scroll 60s linear infinite;
  padding-left: 2rem;
}
.ticker-inner strong { color: var(--gold); font-weight: 700; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Hero Stats Bar (replaces badges) ---------- */
.hero-stats {
  display: flex;
  justify-content: center;
  margin: 2rem auto 0;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  overflow: hidden;
  max-width: 580px;
}
.hero-stat {
  flex: 1;
  padding: .85rem .5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.18);
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: .6rem;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: .25rem;
  line-height: 1.3;
}

/* ---------- How It Works ---------- */
.how-it-works {
  background: var(--cream);
  padding: 5rem 0;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.step-body h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: var(--blue-dark);
  margin-bottom: .25rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .85rem;
}
.step-body p {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.6;
}
.good-to-know {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.good-to-know h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.gtk-item {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.gtk-item:last-of-type {
  border-bottom: none;
}
.gtk-item h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: .3rem;
}
.gtk-item p {
  font-size: .92rem;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}
.gtk-item p a { color: var(--gold); }
@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Pull Quote ---------- */
.pull-quote-section {
  background: var(--blue-dark);
  padding: 2.75rem 0;
  text-align: center;
  position: relative;
}
.pull-quote-section::before {
  content: '"';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 8rem;
  color: rgba(255,255,255,.06);
  line-height: 1;
  pointer-events: none;
}
.pull-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: rgba(255,255,255,.88);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
  border: none;
  padding: 0 1.5rem;
}
.pull-quote strong { color: var(--gold); font-style: normal; font-weight: 700; }

/* ---------- About Lodge ("Right on the River") ---------- */
.about-lodge {
  padding: 90px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Photo Stack */
.about-photo-wrap {
  position: relative;
  height: 500px;
}
.about-photo-main {
  position: absolute;
  top: 0; left: 0;
  width: 82%;
  height: 72%;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.about-photo-second {
  position: absolute;
  bottom: 0; right: 0;
  width: 64%;
  height: 58%;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}
.about-photo-badge {
  position: absolute;
  top: 54%; left: 14%;
  background: var(--gold);
  color: var(--blue-dark);
  border-radius: 50%;
  width: 82px;
  height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  z-index: 2;
  text-align: center;
}
.about-photo-badge strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue-dark);
}
.about-photo-badge span {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* About Text */
.about-text .section-label { margin-bottom: .4rem; }
.about-text .section-title { margin-bottom: 1.25rem; }
.about-body {
  margin-bottom: 2rem;
}
.about-body p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}
.about-body em {
  font-style: italic;
  color: var(--blue-dark);
  font-weight: 600;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
}
.about-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.about-feature h4 {
  font-size: .88rem;
  color: var(--blue-dark);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  margin-bottom: .15rem;
}
.about-feature p {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.45;
  margin: 0;
}

/* ---------- Additional Responsive ---------- */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-wrap { height: 360px; }
}
@media (max-width: 768px) {
  .about-photo-wrap { height: 300px; }
  .about-photo-badge { width: 68px; height: 68px; }
  .about-photo-badge strong { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; border-radius: 6px; }
  .hero-stat { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; }
  .hero-stat:nth-child(2) { border-right: none; }
  .about-features { grid-template-columns: 1fr; }
  .about-photo-wrap { height: 260px; }
}

/* ---------- Hero CTAs ---------- */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: .5rem;
}

/* ---------- Live River Conditions (new layout) ---------- */
.live-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 .75rem;
}
.live-stat-box {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
}
.live-num {
  font-size: 2.8rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
}
.live-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.live-loading {
  text-align: center;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 2rem;
  padding: .5rem;
  border-radius: 6px;
}
.live-loading.status-good {
  background: rgba(45,90,39,.35);
  color: #7DCC75;
  border: 1px solid rgba(125,204,117,.25);
}
.live-loading.status-warn {
  background: rgba(196,154,60,.15);
  color: var(--gold);
  border: 1px solid rgba(196,154,60,.25);
}

/* Condition Cards */
.cond-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.cond-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.cond-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: .6rem;
}
.cond-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.cond-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: .5rem 0 0;
}
.cond-card p a { color: var(--wood-light); }
.cond-card p a:hover { color: var(--gold); }
.cond-link {
  display: inline-block;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 20px;
  margin-bottom: .6rem;
}
.cond-link:hover { background: #a8832e; color: var(--white); }
.cond-status-label {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: .5rem;
  color: var(--gold);
}

/* Report / Rates Card */
.report-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}
.report-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.report-icon { font-size: 2rem; flex-shrink: 0; }
.report-header h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: .2rem;
  flex: 1;
}
.report-byline {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.report-link {
  flex-shrink: 0;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  align-self: center;
}
.report-link:hover { color: var(--wood-light); }
.report-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}
.report-meta {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.report-meta strong { color: var(--gold); }

/* River Flow Chart */
.river-chart-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.chart-title {
  font-size: 1rem;
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.chart-title .gauge-link { font-size: .82rem; }

/* Conditions Resources */
.conditions-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.conditions-resources a {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  color: var(--wood-light);
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.conditions-resources a:hover {
  background: rgba(196,154,60,.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* Release Date Boxes */
.releases-section {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;
}
.releases-section h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: .5rem;
}
.releases-sub {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.releases-sub a { color: var(--wood-light); }
.releases-sub a:hover { color: var(--gold); }
.release-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.release-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.release-box > span:first-child { font-size: 1.75rem; }
.release-box strong { color: var(--white); font-size: 1rem; }

/* ---------- Smokehouse ---------- */
.smokehouse {
  padding: 90px 0;
  background: #1a120a;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.smokehouse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238B6F47' fill-opacity='0.05'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.smokehouse-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.smokehouse-text .section-title { margin-bottom: 1rem; }
.smokehouse-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
}
.smoke-photo {
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition);
}
.smoke-photo:hover { transform: scale(1.02); }
.smoke-wide { grid-column: span 2; }

/* Smokehouse responsive */
@media (max-width: 900px) {
  .smokehouse-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .smokehouse-gallery { grid-template-rows: 200px 200px; }
}
@media (max-width: 560px) {
  .smokehouse-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .smoke-wide { grid-column: span 1; }
  .smoke-photo { height: 200px; }
}

/* Conditions responsive */
@media (max-width: 900px) {
  .live-stats-row { grid-template-columns: repeat(3, 1fr); }
  .cond-cards { grid-template-columns: 1fr; }
  .release-boxes { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .live-stats-row { grid-template-columns: 1fr; }
  .report-header { flex-direction: column; }
  .conditions-resources { flex-direction: column; }
}
