/* Sitka Sunshine Kayaks — stylesheet */

:root {
  --white: #ffffff;
  --sky-pale: #dcedf9;
  --sky-light: #bfe0f6;
  --sky-mid: #2f97d9;
  --sky-deep: #1f5f8b;
  --ink: #142a3d;
  --ink-soft: #3c5468;
  --ink-faint: #5a7185;
  --accent-red: #d6492a;
  --accent-red-dark: #b53a1f;
  --accent-yellow: #fad465;
  --accent-yellow-dark: #d4b456;
  --accent-gold-text: #8a6a1f;
  --accent-green: #2f7a52;
  --accent-green-dark: #245f40;
  --anchor: #173757;
  --anchor-deep: #0e2438;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

/* ──────────────────────────────────────────
   NAV
────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s, box-shadow .3s;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(20,42,61,.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 1px 6px rgba(14,36,56,.4);
}

.nav-logo-text span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--white);
  text-transform: uppercase;
  opacity: .85;
}

.nav.scrolled .nav-logo-text {
  color: var(--ink);
  text-shadow: none;
}

.nav.scrolled .nav-logo-text span {
  color: var(--sky-deep);
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 6px rgba(14,36,56,.4);
  transition: color .2s;
}

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

.nav.scrolled .nav-links a {
  color: var(--ink-soft);
  text-shadow: none;
}

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

.nav-book {
  background: var(--accent-yellow);
  color: var(--ink) !important;
  text-shadow: none !important;
  padding: .5rem 1.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .82rem !important;
  transition: background .2s !important;
}

.nav-book:hover { background: var(--accent-yellow-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .25rem;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  /* Crisp (near-zero-blur) dark outline top and bottom so the three white
     bars stay separate over the bright hero video instead of blurring into
     one pale block. */
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.9)) drop-shadow(0 -1px 0 rgba(0,0,0,.7));
  transition: all .3s;
}

/* Once the nav gets its white background, the dark bars read on their own —
   drop the shadow so they stay crisp. */
.nav.scrolled .nav-hamburger span {
  background: var(--ink);
  filter: none;
}

/* ──────────────────────────────────────────
   HERO — KEN BURNS
────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.kb-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2.2s ease-in-out;
  will-change: transform, opacity;
}

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

.kb-slide-video {
  background: var(--anchor-deep);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.18) saturate(1.15) contrast(1.03);
}

/* Dark gradient overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(14,36,56,.12) 0%,
    rgba(14,36,56,.42) 22%,
    rgba(14,36,56,.38) 50%,
    rgba(14,36,56,.20) 72%,
    rgba(14,36,56,.32) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 9rem 2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
  margin-bottom: .75rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: .03em;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0,0,0,.6);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Bouncing scroll cue at the bottom of the hero */
.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: var(--accent-yellow);
  opacity: .95;
  animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll:hover { opacity: 1; }

.hero-scroll-label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}

.hero-scroll-chevron {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.4));
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 9px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
}

.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all .2s;
}

.btn-gold {
  background: var(--accent-yellow);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--accent-yellow-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: .5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
}

.hero-dot.active {
  background: var(--accent-yellow);
  transform: scale(1.2);
}

/* ──────────────────────────────────────────
   SECTION SHARED
────────────────────────────────────────── */
.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* These sections are followed by a strip that brings its own top padding —
   trim the section's bottom so the two don't stack. */
#tours .section,
.group-section .section { padding-bottom: 2rem; }

.section-full {
  padding: 5rem 2rem;
}

/* Alternating section backgrounds — blue → white → blue down the page.
   Tours, Gallery, and About are bare <section> ids, so their blue is set
   here; the white sections (Custom, Prep, Policy) keep the body default. */
#tours,
#gallery,
#about {
  background: var(--sky-pale);
}

.section-label {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: .5rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .04em;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--ink);
}

.section-subheader {
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 600;
  max-width: 600px;
  margin-bottom: .5rem;
  line-height: 1.4;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2rem;
}

/* ──────────────────────────────────────────
   CAROUSEL (shared — Tours + Gallery)
   Coverflow style: active item full size/opacity,
   immediate neighbors smaller/faded, rest hidden.
────────────────────────────────────────── */
.carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  padding: 1rem 0;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform .4s ease;
  will-change: transform;
}

.carousel-track > * {
  flex: 0 0 auto;
  transition: transform .35s ease, opacity .35s ease;
  transform: scale(.62);
  opacity: 0;
  pointer-events: none;
}

.carousel-track > .is-near {
  transform: scale(.82);
  opacity: .55;
  pointer-events: auto;
  cursor: pointer;
}

.carousel-track > .is-active {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  cursor: pointer;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(20,42,61,.15);
  box-shadow: 0 2px 12px rgba(20,42,61,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--sky-deep);
  cursor: pointer;
  z-index: 5;
  transition: background .2s, color .2s;
}

.carousel-arrow:hover { background: var(--sky-mid); color: var(--white); }

/* Sit just outside the carousel box (within the section's own side padding,
   so this never causes horizontal overflow), vertically centered overall —
   swipe/drag on the track itself is the primary way to move cards now. */
.carousel-prev { left: -28px; }
.carousel-next { right: -28px; }

.carousel-viewport {
  touch-action: pan-y;
  cursor: grab;
}

.carousel-viewport.is-dragging {
  cursor: grabbing;
}

.carousel-viewport.is-dragging .carousel-track {
  transition: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(20,42,61,.18);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.carousel-dot.active {
  background: var(--accent-yellow);
  transform: scale(1.2);
}

/* Tour card enlarge modal — body-level so it escapes the carousel-track
   transform (a transformed ancestor would otherwise capture position:fixed). */
.tour-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.tour-modal.open { display: flex; }

.tour-modal-slot .tour-card {
  width: min(480px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  cursor: default;
}

.tour-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
  background: none;
  border: none;
  z-index: 210;
}

.tour-modal-close:hover { opacity: 1; }

.tour-modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--sky-deep);
  cursor: pointer;
  opacity: .85;
  transition: opacity .2s, background .2s;
  z-index: 210;
}

.tour-modal-arrow:hover { opacity: 1; background: #fff; }
.tour-modal-prev { left: 1.5rem; }
.tour-modal-next { right: 1.5rem; }

/* ──────────────────────────────────────────
   TOURS
────────────────────────────────────────── */
.tours-carousel .carousel-track .tour-card {
  width: min(440px, 84vw);
}

/* Stretch every tour card to the tallest one's height so the carousel keeps a
   constant height — no size difference between cards and no vertical jump when
   it loops back to the first card. (Gallery track keeps its own centering.) */
.tours-carousel .carousel-track {
  align-items: stretch;
}

.tour-card {
  background: var(--white);
  border: 1px solid rgba(20,42,61,.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(20,42,61,.06);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  border-color: var(--sky-mid);
  box-shadow: 0 12px 40px rgba(79,168,222,.2);
  transform: translateY(-4px);
}

.tour-card-img {
  height: 200px;
  background: var(--sky-pale);
  overflow: hidden;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.tour-card:hover .tour-card-img img { transform: scale(1.04); }

.tour-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  /* Cards are all forced to the tallest one's height (for a steady carousel
     with no loop jump). Centering the content keeps the sparse "Coming Soon"
     cards balanced instead of leaving one big void above a bottom-pinned CTA. */
  justify-content: center;
}

.tour-card-tag {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: .5rem;
}

.tour-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .04em;
  margin-bottom: .5rem;
  color: var(--ink);
}

.tour-card-desc {
  font-size: .88rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.tour-card-meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.25rem;
  font-size: .8rem;
  color: var(--ink-faint);
}

.tour-card-meta span { display: flex; align-items: center; gap: .35rem; }

.tour-card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--accent-red);
  letter-spacing: .04em;
  margin-bottom: 1rem;
}

.tour-card-price small {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: var(--ink-faint);
  letter-spacing: 0;
}

.btn-teal {
  background: var(--accent-green);
  color: var(--white);
  width: 100%;
  text-align: center;
  padding: .75rem;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s;
}

.btn-teal:hover { background: var(--accent-green-dark); }

/* ──────────────────────────────────────────
   TRUST STRIP
────────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-top: 1px solid rgba(20,42,61,.07);
  border-bottom: 1px solid rgba(20,42,61,.07);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: rgba(79,168,222,.14);
  border: 1px solid rgba(79,168,222,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.trust-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .06em;
  color: var(--ink);
}

.trust-item p {
  font-size: .82rem;
  color: var(--ink-faint);
  line-height: 1.4;
}

/* ──────────────────────────────────────────
   GALLERY
────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.section-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-header-row > div:first-child { flex: 1; }
.section-header-row .section-sub { margin-bottom: 0; }

.guest-note-aside {
  max-width: 280px;
  flex-shrink: 0;
  margin-top: .25rem;
  font-size: .78rem;
}

.gallery-carousel .carousel-track .gallery-item {
  width: min(300px, 60vw);
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,36,56,0);
  transition: background .2s;
}

.gallery-item:hover::after { background: rgba(14,36,56,.2); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
  background: none;
  border: none;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--sky-deep);
  cursor: pointer;
  opacity: .85;
  transition: opacity .2s, background .2s;
  z-index: 210;
}

.lightbox-arrow:hover { opacity: 1; background: #fff; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ──────────────────────────────────────────
   GUEST PHOTOS
────────────────────────────────────────── */
.guest-section {
  background: var(--sky-pale);
  border-top: 1px solid rgba(20,42,61,.07);
}

.guest-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.guest-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin: 2rem 0;
  opacity: .3;
}

.guest-placeholder-item {
  aspect-ratio: 1;
  background: rgba(79,168,222,.16);
  border: 1px dashed rgba(79,168,222,.4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.guest-note {
  background: rgba(232,169,60,.12);
  border: 1px solid rgba(232,169,60,.3);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  font-size: .82rem;
  color: var(--accent-gold-text);
  max-width: 600px;
  margin: 1.5rem auto 0;
  text-align: left;
}

.guest-note strong { display: block; margin-bottom: .25rem; }

/* ──────────────────────────────────────────
   ABOUT
────────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(20,42,61,.1);
  box-shadow: 0 4px 24px rgba(20,42,61,.08);
}

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: left center;
}

.about-text .section-sub { margin-bottom: 1.5rem; }

.about-text p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ──────────────────────────────────────────
   CONTACT
────────────────────────────────────────── */
.contact-section {
  background: var(--sky-pale);
  border-top: 1px solid rgba(20,42,61,.07);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-header {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.contact-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 16px;
  flex-shrink: 0;
  background: #fff;
  border: 2px solid rgba(232,169,60,.4);
  box-shadow: 0 2px 12px rgba(20,42,61,.1);
}

.contact-header-text p:first-child {
  margin-bottom: .25rem;
}

.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: .04em;
  margin-bottom: .5rem;
  line-height: 1.05;
  color: var(--ink);
}

.contact-info > p,
.contact-header-text > p:last-child {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .9rem;
  color: var(--ink-soft);
}

.contact-detail span:first-child { font-size: 1.1rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid rgba(20,42,61,.15);
  border-radius: 4px;
  padding: .75rem 1rem;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  transition: border-color .2s;
  width: 100%;
}

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

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

.form-group select option { background: var(--white); }

.btn-submit {
  background: var(--accent-yellow);
  color: var(--ink);
  border: none;
  padding: .9rem 2rem;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background .2s, transform .2s;
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--accent-yellow-dark);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
/* Break between the photo carousel and the guest comments — without it the
   carousel dots read as part of the comment cards. */
.section-divider {
  border: none;
  border-top: 1px solid rgba(20,42,61,.15);
  margin: 3rem auto;
}

.testimonials-section {
  background: var(--sky-pale);
  border-top: 1px solid rgba(20,42,61,.07);
  border-bottom: 1px solid rgba(20,42,61,.07);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(20,42,61,.08);
  border-left: 3px solid var(--sky-mid);
  border-radius: 6px;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 2px 16px rgba(20,42,61,.05);
}

.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: .8;
  color: var(--accent-yellow);
  opacity: .5;
  margin-bottom: .5rem;
  display: block;
}

.testimonial-text {
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-trip {
  font-size: .75rem;
  color: var(--sky-deep);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .2rem;
}

.placeholder-note {
  display: inline-block;
  font-size: .7rem;
  font-style: normal;
  background: rgba(232,169,60,.14);
  border: 1px solid rgba(232,169,60,.35);
  color: var(--accent-gold-text);
  padding: .15rem .5rem;
  border-radius: 3px;
  margin-left: .5rem;
  vertical-align: middle;
  letter-spacing: .05em;
}

/* ──────────────────────────────────────────
   SEASONAL STRIP
────────────────────────────────────────── */
.seasonal-strip {
  background: var(--sky-pale);
  border-top: 1px solid rgba(20,42,61,.07);
  border-bottom: 1px solid rgba(20,42,61,.07);
}

.seasonal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.seasonal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.seasonal-icon {
  width: 52px;
  height: 52px;
  background: rgba(79,168,222,.14);
  border: 1px solid rgba(79,168,222,.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.seasonal-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .06em;
  color: var(--ink);
}

.seasonal-item p {
  font-size: .82rem;
  color: var(--ink-faint);
  line-height: 1.4;
}

/* ──────────────────────────────────────────
   GROUP / PRIVATE CALLOUT
────────────────────────────────────────── */
.group-section {
  background: var(--white);
}

.group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.group-card {
  background: var(--sky-pale);
  border: 1px solid rgba(20,42,61,.08);
  border-radius: 8px;
  padding: 2rem;
}

.group-card-icon { font-size: 2rem; margin-bottom: .75rem; }

.group-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .04em;
  margin-bottom: .5rem;
  color: var(--ink);
}

.group-card p {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.group-cta {
  margin-top: 2rem;
  text-align: center;
}

/* ──────────────────────────────────────────
   WHAT TO BRING
────────────────────────────────────────── */
.prep-section {
  background: var(--white);
  border-top: 1px solid rgba(20,42,61,.07);
}

.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.prep-card {
  background: var(--sky-pale);
  border: 1px solid rgba(20,42,61,.08);
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(20,42,61,.05);
}

.prep-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .05em;
  margin-bottom: 1rem;
  color: var(--sky-deep);
}

.prep-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.prep-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.prep-list li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ──────────────────────────────────────────
   POLICY ACCORDION
────────────────────────────────────────── */
.policy-section {
  background: var(--white);
  border-top: 1px solid rgba(20,42,61,.07);
}

.policy-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.policy-inner .section-title { font-size: 1.8rem; }

.accordion {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.accordion-item {
  border: 1px solid rgba(20,42,61,.12);
  border-radius: 6px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  background: var(--sky-pale);
  border: none;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  text-align: left;
  transition: background .2s;
}

.accordion-trigger:hover { background: rgba(79,168,222,.12); }

.accordion-arrow {
  font-size: .75rem;
  color: var(--sky-deep);
  transition: transform .25s;
  flex-shrink: 0;
}

.accordion-item.open .accordion-arrow { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.65;
  border-top: 1px solid rgba(20,42,61,.08);
}

.accordion-item.open .accordion-body { display: block; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer {
  background: var(--anchor-deep);
  padding: 2rem;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}

.footer-links a:hover { color: var(--accent-yellow); }

/* ──────────────────────────────────────────
   MOBILE
────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(20,42,61,.1);
    box-shadow: 0 8px 24px rgba(20,42,61,.12);
  }
  .nav-links.open a {
    color: var(--ink-soft);
    text-shadow: none;
  }
  .nav-links.open a:hover { color: var(--ink); }
  .nav-hamburger { display: flex; }

  /* svh = the visible viewport (excludes the phone browser's address bar),
     so the hero matches the screen and the "Scroll" cue sits at the true
     bottom instead of overflowing below the fold. */
  .hero { height: 100svh; min-height: 0; }
  /* Cluster the hero text/CTA low so the top and center of the video stay open —
     the text block, not the overlay, was covering too much footage. */
  .hero-content { justify-content: flex-end; padding: 6rem 1.25rem 3.25rem; }
  .hero-video { object-position: 25% center; }
  /* Trim the title and deepen the overlay so text reads over the bright video */
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); margin-bottom: .6rem; }
  .hero-eyebrow { font-size: .72rem; margin-bottom: .5rem; }
  .hero-sub { font-size: .9rem; margin-bottom: 1.25rem; }
  .hero-buttons .btn { padding: .7rem 1.6rem; }
  .hero::after {
    background: linear-gradient(
      to bottom,
      rgba(14,36,56,.30) 0%,
      rgba(14,36,56,.55) 30%,
      rgba(14,36,56,.50) 60%,
      rgba(14,36,56,.40) 100%
    );
  }

  .trust-inner { grid-template-columns: 1fr 1fr; padding: 1.75rem 1.25rem; }
  .seasonal-inner { grid-template-columns: 1fr 1fr; padding: 1.75rem 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .guest-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-img img { height: 300px; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .section { padding: 2rem 1.25rem; }
  #tours .section,
  .group-section .section { padding-bottom: 1.25rem; }
  .section-title { margin-bottom: .6rem; }
  .section-sub { margin-bottom: 1.25rem; }
  .policy-inner { padding: 2rem 1.25rem; }
  .contact-inner { padding: 2.5rem 1.25rem; }
  .section-divider { margin: 2rem auto; }

  /* Custom Experiences — two cards side by side, tightened to fit a phone */
  .group-grid { grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.75rem; }
  .group-card { padding: 1.1rem; }
  .group-card h3 { font-size: 1.2rem; }
  .group-card p { font-size: .8rem; line-height: 1.5; }
  .group-card-icon { font-size: 1.6rem; }

  /* What to Know — What to Bring / What to Wear side by side */
  .prep-grid { grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.75rem; }
  .prep-card { padding: 1rem; }
  .prep-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
  .prep-list { gap: .45rem; }
  .prep-list li { font-size: .8rem; gap: .4rem; }

  /* Testimonials — swipeable horizontal carousel instead of three tall blocks */
  .testimonials-grid {
    display: flex;
    grid-template-columns: none;
    /* each card sizes to its own text instead of stretching to the longest
       review — kills the big empty space under the shorter quotes */
    align-items: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: .75rem;
    scroll-padding: 0 7.5%;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonials-grid { scrollbar-width: none; }
  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 1.25rem;
  }
  .testimonial-quote-mark { font-size: 2.5rem; margin-bottom: .1rem; }
  .testimonial-text { margin-bottom: 1rem; }

  .contact-logo { width: 100px; height: 100px; }

  /* .section padding shrinks to 1.25rem (20px) here, so pull the arrows
     in closer than the -28px desktop offset to avoid horizontal overflow */
  .carousel-prev { left: -14px; }
  .carousel-next { right: -14px; }

  /* What We Offer — tour cards were taller than the screen. Shrink the card,
     image, padding, and type so the active card fits on one phone screen. */
  .carousel-viewport { padding: .5rem 0; }
  .carousel-track { gap: .9rem; }
  .tours-carousel .carousel-track .tour-card { width: min(330px, 80vw); }
  .tour-card-img { height: 150px; }
  .tour-card-body { padding: 1rem 1.1rem; }
  .tour-card-title { font-size: 1.3rem; margin-bottom: .35rem; }
  .tour-card-desc { font-size: .82rem; margin-bottom: .75rem; line-height: 1.45; }
  .tour-card-meta { gap: .8rem; margin-bottom: .85rem; font-size: .75rem; }
  .tour-card-price { font-size: 1.5rem; margin-bottom: .6rem; }
  .btn-teal { padding: .6rem; }
}

@media (max-width: 480px) {
  .trust-inner, .seasonal-inner { padding: 1.75rem 1.25rem; gap: 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .carousel-arrow { width: 34px; height: 34px; font-size: 1.2rem; }
  .lightbox-arrow,
  .tour-modal-arrow { width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .tour-modal-prev { left: .5rem; }
  .tour-modal-next { right: .5rem; }
  .hero-buttons { flex-direction: column; }
  .btn { text-align: center; }
}
