:root {
  --black: #0a0a0a; --dark: #111111; --dark2: #1a1a1a; --gray: #2a2a2a;
  --mid: #8a8a8a; --light: #cfcfcf; --white: #f5f5f5; --gold: #c9a84c; --gold2: #e8c96a;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Lato', sans-serif; font-weight: 300; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

/* Text selection + custom scrollbar */
::selection { background: var(--gold); color: var(--black); }
html { scrollbar-color: var(--gold) var(--dark); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 6px; border: 2px solid var(--dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Keyboard focus visibility (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold2); outline-offset: 3px; border-radius: 2px;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}
.nav-logo img { height: 70px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { position: relative; color: var(--light); text-decoration: none; font-family: 'Oswald', sans-serif; font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.28s ease; }
.nav-links a:not(.nav-cta):hover::after, .nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; padding: 0.45rem 1.2rem; font-weight: 600 !important; }
.nav-cta:hover, .nav-cta.active { background: var(--gold2) !important; color: var(--black) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 1.5rem 2rem; flex-direction: column; gap: 1.2rem; z-index: 999; border-bottom: 1px solid rgba(201,168,76,0.15); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--light); text-decoration: none; font-family: 'Oswald', sans-serif; font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; }
@media(max-width:768px) { .nav-links { display: none; } .hamburger { display: flex; } }

.page-spacer { height: 68px; }
section { padding: 5rem 1.5rem; }
.section-label { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: 0.05em; line-height: 1; margin-bottom: 1.2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.divider { width: 55px; height: 3px; background: var(--gold); margin: 0.8rem 0 2rem; }
.btn-primary { position: relative; overflow: hidden; background: var(--gold); color: var(--black); padding: 0.9rem 2.2rem; font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; font-weight: 600; border: none; cursor: pointer; transition: all 0.25s; display: inline-block; }
.btn-primary::before { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent); transform: skewX(-20deg); transition: left 0.6s ease; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-primary:hover::before { left: 140%; }
.btn-outline { border: 2px solid rgba(255,255,255,0.8); color: var(--white); padding: 0.9rem 2.2rem; font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; font-weight: 500; transition: all 0.25s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }
.reveal-d1 { transition-delay: 0.15s; }
.reveal-d2 { transition-delay: 0.3s; }
.reveal-d3 { transition-delay: 0.45s; }

#home { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: -2%; background-image: url('assets/asset_jpg_017.jpg'); background-size: cover; background-position: center 30%; animation: kenburns 26s ease-in-out infinite alternate; will-change: transform; }
@keyframes kenburns { from { transform: scale(1.05) translateY(0); } to { transform: scale(1.16) translateY(-1.5%); } }
.hero-overlay { position: absolute; inset: 0; background:
  radial-gradient(120% 90% at 50% 30%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%),
  linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.78) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; padding-top: 68px; }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.hero-logo { width: 260px; margin: 0 auto 1.2rem; animation: fadeUp 1s 0.2s ease both; }
.hero-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.2rem, 9vw, 6.5rem); letter-spacing: 0.06em; line-height: 1; color: var(--white); text-shadow: 0 2px 30px rgba(0,0,0,0.9); animation: fadeUp 1s 0.3s ease both; }
.hero-subtitle { font-family: 'Oswald', sans-serif; font-size: clamp(0.8rem, 2vw, 1.1rem); letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin: 0.75rem 0 2rem; animation: fadeUp 1s 0.45s ease both; }
.hero-tagline { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; animation: fadeUp 1s 0.55s ease both; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s 0.65s ease both; }
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: var(--gold); font-size: 1.4rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

.stats-bar { background: var(--dark2); border-top: 1px solid var(--gray); border-bottom: 1px solid var(--gray); padding: 1.8rem 1.5rem; }
.stats-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
@media(max-width:600px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--gold); line-height: 1; letter-spacing: 0.05em; }
.stat-label { font-family: 'Oswald', sans-serif; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--mid); margin-top: 0.25rem; }

#about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media(max-width:768px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; display: block; border: 3px solid var(--gold); }
.about-text p { color: var(--light); line-height: 1.8; margin-bottom: 1.2rem; font-size: 0.97rem; }
.cert-badge { display: flex; align-items: center; gap: 1rem; background: var(--dark2); border: 1px solid var(--gray); border-left: 3px solid var(--gold); padding: 1rem 1.25rem; margin-top: 1.5rem; }
.cert-icon { font-size: 1.6rem; }
.cert-text { font-size: 0.82rem; color: var(--light); line-height: 1.5; }
.cert-text strong { color: var(--gold); font-family: 'Oswald', sans-serif; letter-spacing: 0.05em; display: block; margin-bottom: 0.1rem; }
.cert-img { margin-top: 1.5rem; border: 2px solid var(--gold); display: block; width: 100%; }

#trips { background: var(--black); }
.trips-intro { color: var(--light); max-width: 620px; line-height: 1.7; margin-bottom: 2.5rem; font-size: 0.95rem; }
.trip-tabs { display: flex; margin-bottom: 2rem; border-bottom: 2px solid var(--gray); flex-wrap: wrap; }
.tab-btn { background: none; border: none; cursor: pointer; font-family: 'Oswald', sans-serif; font-size: 0.88rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); padding: 0.8rem 1.5rem; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn:hover { color: var(--light); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.trip-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.trip-card { background: var(--dark2); border: 1px solid var(--gray); padding: 2rem; transition: border-color 0.25s, transform 0.25s; }
.trip-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.trip-type { font-family: 'Oswald', sans-serif; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.trip-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.05em; margin-bottom: 0.6rem; }
.trip-price { font-family: 'Oswald', sans-serif; font-size: 1.35rem; color: var(--gold); margin-bottom: 1rem; }
.trip-price span { font-size: 0.75rem; color: var(--mid); }
.trip-details { list-style: none; font-size: 0.875rem; color: var(--light); line-height: 2.1; border-top: 1px solid var(--gray); padding-top: 1rem; }
.trip-details li::before { content: "✓ "; color: var(--gold); }
.trip-book { display: inline-block; margin-top: 1.5rem; background: var(--gold); color: var(--black); padding: 0.6rem 1.5rem; font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; text-decoration: none; transition: background 0.2s; cursor: pointer; border: none; }
.trip-book:hover { background: var(--gold2); }
.rivers-note { margin-top: 2rem; padding: 1.25rem 1.5rem; background: var(--dark2); border-left: 3px solid var(--gold); font-size: 0.88rem; color: var(--light); line-height: 1.7; }
.rivers-note strong { color: var(--gold); font-family: 'Oswald', sans-serif; letter-spacing: 0.08em; }

#gallery { background: var(--dark); padding: 5rem 0; }
#gallery .container { padding: 0 1.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; max-width: 1200px; margin: 2rem auto 0; padding: 0 4px; }
.gallery-item { overflow: hidden; aspect-ratio: 1/1; cursor: pointer; position: relative; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; pointer-events: none; }
.gallery-overlay svg { opacity: 0; transition: opacity 0.3s ease; color: var(--white); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6)); }
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.35); }
.gallery-item:hover .gallery-overlay svg { opacity: 1; }
@media(max-width:600px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } .gallery-item:nth-child(1) { grid-column: span 2; } }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 3000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(201,168,76,0.2); border: none; color: var(--white); font-size: 1.5rem; padding: 1rem; cursor: pointer; transition: background 0.2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(201,168,76,0.5); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

#reviews { background: var(--black); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.review-card { background: var(--dark2); border: 1px solid var(--gray); border-top: 3px solid var(--gold); padding: 1.75rem; }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.review-text { color: var(--light); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.25rem; font-style: italic; }
.review-author { font-family: 'Oswald', sans-serif; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); }
.review-detail { font-size: 0.75rem; color: var(--mid); margin-top: 0.2rem; }

#faq { background: var(--dark); }
.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--gray); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 0.08em; color: var(--white); transition: color 0.2s; }
.faq-question:hover, .faq-question.open { color: var(--gold); }
.faq-icon { font-size: 1.4rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; line-height: 1; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { color: var(--light); font-size: 0.9rem; line-height: 1.8; padding-bottom: 1.25rem; }

#merch { background: var(--black); }
.merch-intro { color: var(--light); margin-bottom: 0.4rem; font-size: 0.95rem; }
.merch-sub { color: var(--mid); font-size: 0.83rem; margin-bottom: 2rem; }
.merch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.merch-card { background: var(--dark2); border: 1px solid var(--gray); overflow: hidden; transition: border-color 0.25s, transform 0.25s; }
.merch-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.merch-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative; }
.merch-img img { filter: grayscale(0.35) brightness(0.9); }
.sold-badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2; background: rgba(0,0,0,0.8); color: var(--white); border: 1px solid var(--gold); border-radius: 2px; font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 0.35rem 0.7rem; }
.merch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.merch-card:hover .merch-img img { transform: scale(1.04); }
.merch-info { padding: 1.5rem; }
.merch-name { font-family: 'Oswald', sans-serif; font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.35rem; }
.merch-desc { font-size: 0.84rem; color: var(--light); margin-bottom: 1rem; line-height: 1.5; }
.merch-bottom { display: flex; align-items: center; justify-content: space-between; }
.merch-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--gold); }
.merch-btn { background: var(--gold); color: var(--black); border: none; padding: 0.6rem 1.3rem; font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block; }
.merch-btn:hover { background: var(--gold2); }
.merch-btn.sold-out { background: var(--gray); color: var(--mid); cursor: not-allowed; }
.merch-btn.sold-out:hover { background: var(--gray); }

#contact { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media(max-width:768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { width: 40px; height: 40px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--black); }
.contact-item-text { font-size: 0.88rem; color: var(--light); line-height: 1.6; }
.contact-item-text strong { color: var(--white); display: block; font-family: 'Oswald', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem; margin-bottom: 0.15rem; }
.contact-item-text a { color: var(--light); text-decoration: none; }
.contact-item-text a:hover { color: var(--gold); }
.follow-label { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); margin: 2rem 0 0.75rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 40px; height: 40px; background: var(--gray); display: flex; align-items: center; justify-content: center; color: var(--light); text-decoration: none; transition: all 0.2s; }
.social-link:hover { background: var(--gold); color: var(--black); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid); }
.form-group input, .form-group select, .form-group textarea { background: var(--dark2); border: 1px solid var(--gray); color: var(--white); padding: 0.7rem 1rem; font-family: 'Lato', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { background: var(--gold); color: var(--black); border: none; padding: 1rem; font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: background 0.2s; width: 100%; }
.form-submit:hover { background: var(--gold2); }

footer { background: var(--dark2); border-top: 1px solid var(--gray); padding: 2.5rem 1.5rem; text-align: center; }
.footer-logo img { height: 58px; margin-bottom: 1rem; opacity: 0.9; }
.footer-social { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 1.5rem; }
.footer-text { font-size: 0.78rem; color: var(--mid); line-height: 1.9; }
.footer-text a { color: var(--mid); text-decoration: none; }
.footer-text a:hover { color: var(--gold); }

.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; align-items: center; justify-content: center; padding: 1.5rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--dark); border: 1px solid var(--gold); padding: 2.5rem; max-width: 460px; width: 100%; position: relative; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: var(--mid); font-size: 1.3rem; cursor: pointer; }
.modal-close:hover { color: var(--gold); }
.modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.modal-sub { font-size: 0.85rem; color: var(--mid); margin-bottom: 1.5rem; line-height: 1.5; }
.modal-actions { display: flex; flex-direction: column; gap: 1rem; }
.modal-note { margin-top: 1.5rem; font-size: 0.78rem; color: var(--mid); text-align: center; }

#splash-overlay { position: fixed; inset: 0; background: #0a0a0a; z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 1.2s ease; }
#splash-overlay.fade-out { opacity: 0; pointer-events: none; }
#splash-video { width: min(700px, 90vw); height: min(700px, 90vw); object-fit: contain; background: transparent; }
#splash-sub { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; color: #c9a84c; margin-top: 1rem; opacity: 0; animation: fadeUp 0.8s ease 1.2s forwards; }
#splash-skip { position: absolute; bottom: 2rem; font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: #555; cursor: pointer; border: none; background: none; transition: color 0.2s; opacity: 0; animation: fadeUp 0.8s ease 1.5s forwards; }
#splash-skip:hover { color: #c9a84c; }

/* Leave a Review */
#leave-review { background: var(--dark2); padding: 5rem 1.5rem; }
.review-form-wrap { max-width: 680px; margin: 0 auto; }

/* Star Rating */
.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.25rem; margin-top: 0.4rem; }
.star-rating input { display: none; }
.star-rating label { font-size: 2rem; color: var(--gray); cursor: pointer; transition: color 0.2s; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--gold); }

/* ============================================================
   Polish layer — global refinements (applies to every page)
   ============================================================ */

/* Section titles: subtle gold-to-warm gradient with white fallback */
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .section-title {
    background: linear-gradient(100deg, var(--white) 30%, var(--gold2) 130%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
}

/* The gold divider gets a soft glow + grow-in */
.divider { box-shadow: 0 0 14px rgba(201,168,76,0.5); border-radius: 2px; }

/* Richer hover for the main content cards: lift + gold glow */
.trip-card, .merch-card, .review-card { transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.trip-card:hover, .merch-card:hover, .review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 38px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.25);
}
.review-card:hover { transform: translateY(-4px); }

/* Stat numbers get a faint glow so they read as the focal point */
.stat-number { text-shadow: 0 0 22px rgba(201,168,76,0.35); }

/* Gallery: smoother, slightly brightening hover */
.gallery-item img { filter: saturate(0.96) brightness(0.96); transition: transform 0.5s ease, filter 0.4s ease; }
.gallery-item:hover img { filter: saturate(1.05) brightness(1.04); }

/* Contact icons + social links: gentle scale on hover */
.social-link, .contact-icon { transition: all 0.25s ease; }
.social-link:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(201,168,76,0.4); }

/* Footer logo subtly comes alive on hover */
.footer-logo img { transition: opacity 0.3s ease, transform 0.3s ease; }
.footer-logo img:hover { opacity: 1; transform: scale(1.04); }

/* Scroll hint fades near-invisible at rest, gold on hover of hero */
.scroll-hint { text-shadow: 0 0 12px rgba(0,0,0,0.6); }

/* ---- Homepage build-out sections ---- */

/* "Two Ways To Fish" image cards */
#home-offer { background: var(--dark); }
.home-head { text-align: center; max-width: 640px; margin: 0 auto 2.8rem; }
.home-head .divider { margin-left: auto; margin-right: auto; }
.home-head .section-title { margin-bottom: 0.8rem; }
.home-head p.home-sub { color: var(--light); line-height: 1.7; font-size: 0.97rem; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
@media(max-width:700px){ .offer-grid { grid-template-columns: 1fr; } }
.offer-card { position: relative; display: block; min-height: 340px; overflow: hidden; border: 1px solid var(--gray); text-decoration: none; }
.offer-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.offer-card:hover img { transform: scale(1.07); }
.offer-card .offer-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%); transition: background 0.3s ease; }
.offer-card:hover .offer-shade { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(10,10,10,0.45) 60%, rgba(201,168,76,0.12) 100%); }
.offer-card:hover { border-color: var(--gold); }
.offer-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.8rem; z-index: 2; }
.offer-kicker { font-family: 'Oswald', sans-serif; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.offer-name { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 0.04em; line-height: 1; margin-bottom: 0.5rem; color: var(--white); }
.offer-desc { font-size: 0.9rem; color: var(--light); line-height: 1.6; margin-bottom: 1rem; max-width: 90%; }
.offer-price { font-family: 'Oswald', sans-serif; font-size: 0.95rem; color: var(--white); letter-spacing: 0.05em; }
.offer-price strong { color: var(--gold); font-size: 1.15rem; }
.offer-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-family: 'Oswald', sans-serif; font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.offer-card:hover .offer-link { color: var(--gold2); }
.offer-link span { transition: transform 0.25s ease; }
.offer-card:hover .offer-link span { transform: translateX(5px); }

/* Featured review band */
#home-quote { background: var(--black); text-align: center; }
.home-quote-wrap { max-width: 760px; margin: 0 auto; }
.home-quote-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 0.25em; margin-bottom: 1.4rem; }
.home-quote-text { font-family: 'Lato', sans-serif; font-weight: 300; font-style: italic; font-size: clamp(1.15rem, 2.6vw, 1.6rem); line-height: 1.6; color: var(--white); }
.home-quote-mark { font-family: 'Bebas Neue', sans-serif; color: var(--gold); font-size: 3rem; line-height: 0.5; opacity: 0.5; display: block; margin-bottom: 0.6rem; }
.home-quote-author { font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-top: 1.6rem; }
.home-quote-detail { font-size: 0.78rem; color: var(--mid); margin-top: 0.25rem; }
.home-quote-link { display: inline-block; margin-top: 1.6rem; font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.home-quote-link:hover { border-bottom-color: var(--gold); }

/* Photo strip → gallery */
#home-strip { background: var(--dark); padding: 0; }
.strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; }
@media(max-width:900px){ .strip-grid { grid-template-columns: repeat(3, 1fr); } .strip-item:nth-child(4),.strip-item:nth-child(5){ display:none; } }
@media(max-width:520px){ .strip-grid { grid-template-columns: repeat(2, 1fr); } .strip-item:nth-child(3){ display:none; } }
.strip-item { position: relative; aspect-ratio: 1/1; overflow: hidden; display: block; }
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, filter 0.4s ease; filter: saturate(0.9) brightness(0.85); }
.strip-item:hover img { transform: scale(1.08); filter: saturate(1.05) brightness(1); }
.strip-cta { position: absolute; inset: 0; background: rgba(10,10,10,0.55); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; z-index: 2; transition: background 0.3s; }
.strip-cta:hover { background: rgba(10,10,10,0.7); }
.strip-cta-label { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.05em; color: var(--white); line-height: 1; }
.strip-cta-sub { font-family: 'Oswald', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 0.5rem; }

/* Final CTA band */
#home-cta { position: relative; background: var(--black); text-align: center; overflow: hidden; }
#home-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% 0%, rgba(201,168,76,0.10) 0%, rgba(10,10,10,0) 60%); }
.home-cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.home-cta-inner .section-title { margin-bottom: 1rem; }
.home-cta-inner p { color: var(--light); line-height: 1.7; margin-bottom: 2rem; font-size: 1rem; }
.home-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg { animation: none; transform: scale(1.05); }
  .reveal { opacity: 1 !important; transform: none !important; }
}
