/* ============================================================
   Alaska Rainbow Adventures — Kanektok River Page Styles
   File: css/kanektok-river-fishing-trip.css
   ============================================================ */

/* ----- Custom Properties ----- */
:root {
  --ink: #1a1a18;
  --parchment: #f4efe6;
  --river: #2e6b7a;
  --river-light: #4a8fa0;
  --copper: #b5642a;
  --copper-light: #d4833f;
  --stone: #6b6558;
  --moss: #3d5a3e;
  --mist: #dce8eb;
  --cream: #faf7f2;
  --rule: rgba(90, 80, 60, 0.18);
  --nav-w: 300px;
}

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

html { 
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 15px;
  line-height: 1.72;
  overflow-x: hidden;
  min-height: 100vh;

  touch-action: pan-y;
}


img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ----- Nav Overlay ----- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 490;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ----- Nav Drawer ----- */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--nav-w);
  max-width: 85vw;
  background: var(--ink);
  z-index: 500;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }

.ndh {
  background: #111110;
  padding: 18px 20px 14px;
  border-bottom: 2px solid var(--copper);
  flex-shrink: 0;
  position: relative;
}
.ndh-brand {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--parchment);
  line-height: 1.2;
}
.ndh-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-top: 2px;
}
.nd-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #a89f90;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.nd-close:hover { color: var(--parchment); }

.nav-list { list-style: none; padding: 10px 0 20px; flex: 1; }
.nav-list > li { border-bottom: 1px solid rgba(255, 255, 255, .06); }

.nav-list > li > a,
.nav-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #c8c0b0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color .18s, background .18s;
}
.nav-list > li > a:hover,
.nav-group-btn:hover {
  color: var(--parchment);
  background: rgba(255, 255, 255, .04);
}
.nav-list > li > a.cur { color: var(--copper-light); }

.nav-arrow {
  font-size: 10px;
  color: var(--stone);
  transition: transform .22s;
  flex-shrink: 0;
  margin-left: 8px;
}
.nav-group-btn.exp .nav-arrow { transform: rotate(90deg); }

.nav-sub {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
  background: rgba(0, 0, 0, .25);
}
.nav-sub.open { max-height: 500px; }

.nav-sub li a {
  display: block;
  padding: 9px 20px 9px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9a9080;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: color .18s;
}
.nav-sub li:last-child a { border-bottom: none; }
.nav-sub li a:hover { color: var(--copper-light); }

.ndc {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-shrink: 0;
}
.ndc a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--river-light);
  padding: 3px 0;
}
.ndc a:hover { color: var(--parchment); }
.ndc-lbl {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 6px;
}

/* ----- Site Header ----- */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 3px solid var(--copper);
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}
.header-left { display: flex; align-items: center; gap: 14px; }

.hbtn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.hbtn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--parchment);
  border-radius: 1px;
  transition: all .22s;
}
.hbtn:hover span { background: var(--copper-light); }

.header-logo { text-decoration: none; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .03em;
  color: var(--parchment);
  line-height: 1.2;
}
.logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper-light);
}

.header-right { display: flex; align-items: center; gap: 16px; }
.header-contact {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: .05em;
  color: #a89f90;
  text-align: right;
  line-height: 1.65;
}
.header-contact a { color: var(--copper-light); }

.btn-book-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--copper);
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.btn-book-h:hover { background: var(--copper-light); }

@media (max-width: 640px) {
  .header-contact { display: none; }
  .header-inner { padding: 10px 16px; }
}

/* ----- Buttons ----- */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--copper);
  color: white;
  border: 2px solid var(--copper);
  padding: 13px 30px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-primary:hover { background: var(--copper-light); border-color: var(--copper-light); }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--stone);
  border: 2px solid var(--rule);
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--stone); color: var(--ink); }

.btn-white {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: white;
  color: var(--river);
  border: 2px solid white;
  padding: 13px 30px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-white:hover { background: var(--parchment); }

.btn-ow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, .45);
  padding: 13px 30px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s;
}
.btn-ow:hover { border-color: white; }

/* ----- Hero ----- */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 80px 24px 72px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 100%, rgba(46, 107, 122, .52) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 22% 15%, rgba(181, 100, 42, .13) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  background: url("../images/floatfishalaska_logo_250.png") center / contain no-repeat;
  opacity: .035;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-logo {
  width: 260px;
  margin: 0 auto 24px;
  display: block;
  position: relative;
  z-index: 2;
  padding: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 70%);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .55));
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow span { color: rgba(255, 255, 255, .2); margin: 0 8px; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 900;
  color: var(--parchment);
  line-height: 1.0;
  letter-spacing: -.01em;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.hero-title em { font-style: italic; color: var(--river-light); }

.hero-intro {
  font-size: 16px;
  line-height: 1.78;
  color: #c0b8a8;
  max-width: 640px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: inline-flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 3px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.stat-item {
  padding: 14px 26px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: .04em;
  line-height: 1;
}
.stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-top: 4px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .hero { padding: 56px 20px 52px; }
  .stat-item { padding: 12px 16px; }
  .stat-val { font-size: 15px; }
}

/* ----- Availability Strip ----- */
.avail-strip {
  background: var(--river);
  color: white;
  text-align: center;
  padding: 11px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
}
.avail-strip strong { color: #b8e4ef; }
.avail-strip a { color: white; text-decoration: underline; }

/* ----- Section Nav ----- */
.section-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: sticky;
  top: 75px;
  z-index: 150;
}
.section-nav-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  padding: 0 16px;
}
.snav-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 13px 14px 10px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: color .2s, border-color .2s;
}
.snav-btn:hover { color: var(--river); }
.snav-btn.active { color: var(--river); border-bottom-color: var(--river); }

/* ----- Main Content ----- */
.main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.content-section {
  padding-top: 56px;
  border-top: 1px solid var(--rule);
  margin-top: 56px;
}
.content-section:first-child { border-top: none; margin-top: 0; }

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--river); }

.section-lead {
  font-size: 15px;
  color: var(--stone);
  font-style: italic;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
  margin-bottom: 26px;
}

.body-text {
  font-size: 15px;
  line-height: 1.82;
  color: #2a2a26;
  margin-bottom: 18px;
}
.body-text strong { color: var(--ink); }

/* ----- Trip Photos ----- */
.trip-photo {
  width: 100%;
  height: auto;
  display: block;
  margin: 28px 0;
  border-radius: 6px;
}
.img-caption {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}

/* ----- Trip Detail Card ----- */
.tdc {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--copper);
  border-radius: 2px;
  padding: 22px 20px;
  margin-bottom: 26px;
}
.tdc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.tdc ul { list-style: none; padding: 0; }
.tdc ul li {
  font-size: 13px;
  line-height: 1.65;
  color: #3a3a35;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 10px;
}
.tdc ul li:last-child { border-bottom: none; }
.tdc ul li span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--river);
  flex-shrink: 0;
  min-width: 80px;
}
.tdc a { color: var(--copper); text-decoration: underline; }

/* ----- Species Grid ----- */
.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 8px;
  margin-bottom: 26px;
}
.species-chip {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--river);
  padding: 10px 12px;
  border-radius: 0 2px 2px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--ink);
}
.species-chip small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: .03em;
  margin-top: 2px;
}
.species-chip.feature { border-left-color: var(--copper); background: #fff9f2; }

/* ----- Season Columns ----- */
.season-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}
@media (max-width: 620px) { .season-cols { grid-template-columns: 1fr; } }

.season-block {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--river);
  padding: 20px 18px;
  border-radius: 2px;
}
.season-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--river);
  margin-bottom: 10px;
}
.season-block p { font-size: 14px; line-height: 1.72; color: #3a3a35; }

/* ----- Dark Block ----- */
.dark-block {
  background: var(--ink);
  border-radius: 3px;
  padding: 36px 34px;
  margin-bottom: 24px;
  border-top: 4px solid var(--copper-light);
  position: relative;
  overflow: hidden;
}
.dark-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(46, 107, 122, .28) 0%, transparent 70%);
  pointer-events: none;
}
.dark-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--parchment);
  margin-bottom: 14px;
  line-height: 1.15;
  position: relative;
}
.dark-block h3 em { font-style: italic; color: var(--copper-light); }
.dark-block p {
  font-size: 14px;
  line-height: 1.82;
  color: #b0a898;
  margin-bottom: 14px;
  position: relative;
}
.dark-block p:last-child { margin-bottom: 0; }
.dark-block strong { color: var(--parchment); }

.dark-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
  position: relative;
}
.dark-bullets li {
  font-size: 14px;
  color: #b0a898;
  line-height: 1.65;
  padding: 4px 0 4px 20px;
  position: relative;
}
.dark-bullets li::before {
  content: '\25CF';
  position: absolute;
  left: 0;
  color: var(--river-light);
  font-size: 10px;
  top: 7px;
}
.dark-bullets li strong { color: var(--parchment); }

@media (max-width: 600px) { .dark-block { padding: 26px 22px; } }

/* ----- Tackle Grid ----- */
.tackle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 13px;
  margin-bottom: 18px;
}
.tackle-block {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 18px 16px;
}
.tackle-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--river);
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--rule);
}
.tackle-list { list-style: none; padding: 0; }
.tackle-list li {
  font-size: 13px;
  line-height: 1.6;
  color: #3a3a35;
  padding: 2px 0 2px 16px;
  position: relative;
}
.tackle-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--copper);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

/* ----- Callout Box ----- */
.callout-box {
  background: var(--mist);
  border: 1px solid var(--river);
  border-left: 5px solid var(--river);
  border-radius: 2px;
  padding: 20px;
  margin: 22px 0;
}
.callout-box .cb-h {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--river);
  margin-bottom: 6px;
}
.callout-box p {
  font-size: 15px;
  color: var(--ink);
  font-style: italic;
  line-height: 1.55;
}

/* ----- Included / Not Included ----- */
.included-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 22px;
}
@media (max-width: 600px) { .included-cols { grid-template-columns: 1fr; } }

.included-list { list-style: none; padding: 0; }
.included-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #2a2a26;
  padding: 5px 0 5px 22px;
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.included-list li:last-child { border-bottom: none; }
.included-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--river);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

.not-included {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--stone);
  padding: 16px 20px;
  border-radius: 0 2px 2px 0;
  margin-bottom: 22px;
}
.not-included-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 7px;
}
.not-included p { font-size: 13px; line-height: 1.65; color: #5a5348; }

/* ----- Service Levels ----- */
.service-levels { margin-top: 22px; }
.service-item {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.service-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 3px;
}
.service-desc { font-size: 14px; line-height: 1.65; color: #3a3a35; }

/* ----- Float vs. Lodge Table ----- */
.fvl-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
.fvl-table thead tr { background: var(--ink); }
.fvl-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
  color: var(--parchment);
}
.fvl-table th:last-child { background: var(--river); }
.fvl-table tbody tr { border-bottom: 1px solid var(--rule); }
.fvl-table tbody tr:nth-child(even) { background: var(--cream); }
.fvl-table td {
  padding: 11px 16px;
  vertical-align: top;
  line-height: 1.55;
}
.fvl-table td:first-child {
  width: 28%;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
}
.fvl-table td:nth-child(2) { color: #5a5348; }
.fvl-table td:last-child { color: #1f5230; font-weight: 600; }

.fvl-kicker {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.65;
  color: var(--river);
  border-left: 4px solid var(--river);
  padding: 14px 20px;
  background: var(--mist);
  border-radius: 0 2px 2px 0;
}

@media (max-width: 580px) {
  .fvl-table { font-size: 12px; }
  .fvl-table td { padding: 9px 10px; }
}

/* ----- Dates Table ----- */
.dates-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  font-size: 14px;
}
.dates-table thead tr { background: var(--ink); color: var(--parchment); }
.dates-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 12px 14px;
  text-align: left;
}
.dates-table tbody tr { border-bottom: 1px solid var(--rule); }
.dates-table tbody tr:nth-child(even) { background: var(--cream); }
.dates-table td { padding: 11px 14px; line-height: 1.5; vertical-align: middle; }
.dates-table td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--copper);
  white-space: nowrap;
}
.avail-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  background: rgba(61, 90, 62, .12);
  color: var(--moss);
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.avail-btn:hover { background: var(--moss); color: white; }
.dates-note { font-size: 13px; color: var(--stone); font-style: italic; margin-top: 16px; line-height: 1.65; }

/* ----- Testimonials ----- */
.testi-featured {
  background: var(--ink);
  border-radius: 3px;
  border-top: 4px solid var(--copper);
  padding: 38px 40px 34px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.testi-featured::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  line-height: .75;
  color: var(--river);
  opacity: .18;
  position: absolute;
  top: 18px;
  left: 20px;
  pointer-events: none;
}
.testi-featured .testi-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2.4vw, 20px);
  font-style: italic;
  line-height: 1.72;
  color: var(--parchment);
  margin-bottom: 20px;
  position: relative;
  padding-top: 10px;
}
.testi-featured .testi-byline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--copper-light);
}
.testi-stars { color: var(--copper-light); letter-spacing: 3px; margin-left: 8px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.testi-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 22px 20px 18px;
  position: relative;
  border-top: 3px solid var(--river);
}
.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: .8;
  color: var(--river-light);
  opacity: .2;
  position: absolute;
  top: 12px;
  right: 16px;
  pointer-events: none;
}
.testi-card .testi-text {
  font-size: 14px;
  line-height: 1.78;
  color: #2e2e2a;
  font-style: italic;
  margin-bottom: 14px;
}
.testi-card .testi-byline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
}
.testi-card .testi-stars { font-size: 10px; }

@media (max-width: 560px) { .testi-featured { padding: 28px 24px 24px; } }

/* ----- About Block ----- */
.about-block {
  background: var(--ink);
  color: var(--parchment);
  border-radius: 3px;
  padding: 38px 34px;
  border-top: 4px solid var(--copper);
}
.about-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--parchment);
  margin-bottom: 14px;
  line-height: 1.2;
}
.about-block h3 em { font-style: italic; color: var(--river-light); }
.about-block p { font-size: 14px; line-height: 1.82; color: #b0a898; margin-bottom: 14px; }
.about-block p:last-child { margin-bottom: 0; }
.about-block strong { color: var(--parchment); }
.about-block a { color: var(--river-light); }

/* ----- Credential Bar ----- */
.cred-bar {
  background: var(--ink);
  color: var(--parchment);
  padding: 34px 24px;
  text-align: center;
}
.cred-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.cred-item { text-align: center; }
.cred-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 4px;
}
.cred-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #a89f90;
}
.cred-div { width: 1px; height: 44px; background: rgba(255, 255, 255, .1); }
@media (max-width: 580px) { .cred-div { display: none; } }

/* ----- CTA Section ----- */
.cta-section {
  background: var(--river);
  padding: 52px 24px;
  text-align: center;
  margin: 56px -24px 0;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}
.cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 26px;
  font-style: italic;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ----- Footer ----- */
.site-footer {
  background: #141412;
  color: #a89f90;
  text-align: center;
  padding: 26px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  border-top: 3px solid var(--copper);
  line-height: 2.2;
}
.site-footer a { color: var(--copper-light); }
.site-footer a:hover { color: var(--parchment); }
.site-footer strong { color: var(--parchment); }
.footer-rule { border: none; border-top: 1px solid #2a2726; margin: 14px auto; max-width: 480px; }
.footer-logo { text-align: center; margin-bottom: 20px; }
.footer-logo img { width: 200px; height: auto; display: block; margin: 0 auto; }

/* ----- Modal ----- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 8, .75);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--parchment);
  border-radius: 3px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-top: 4px solid var(--copper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
}
.modal-header {
  background: var(--ink);
  padding: 18px 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--parchment);
}
.modal-close {
  background: none;
  border: none;
  color: #a89f90;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}
.modal-close:hover { color: var(--parchment); }
.modal-body { padding: 24px 22px; }
.modal-note {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.65;
  font-style: italic;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 20px;
}

/* ----- Form ----- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 13px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Libre Baskerville', serif;
  font-size: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(90, 80, 60, .25);
  border-radius: 2px;
  background: white;
  color: var(--ink);
  width: 100%;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--river);
}
.form-group textarea { resize: vertical; min-height: 84px; }

.btn-submit {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--copper);
  color: white;
  border: none;
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: background .2s;
}
.btn-submit:hover { background: var(--copper-light); }
.btn-submit:disabled { opacity: .6; cursor: wait; }

.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-success p { font-size: 14px; color: var(--stone); line-height: 1.65; }

@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

/* ----- Scroll-to-Top Button ----- */
#scrollTopBtn {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(20, 30, 28, 0.82);
  border: 1px solid rgba(46, 107, 122, 0.55);
  color: var(--river);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
#scrollTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTopBtn:hover {
  background: rgba(46, 107, 122, 0.88);
  color: white;
  border-color: var(--river);
}
@media (max-width: 640px) {
  #scrollTopBtn {
    bottom: 20px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ============================================================
   Desktop Navigation Bar
   Visible on screens 900px+, hidden on mobile (hamburger takes over)
   ============================================================ */
.desktop-nav {
  display: none; /* hidden on mobile */
}

@media (min-width: 900px) {
  .desktop-nav {
    display: block;
    background: var(--ink);
    border-bottom: 2px solid var(--river);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0,0,0,.35);
  }

  .desktop-nav-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .dnav-links {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .dnav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #c0b8a8;
    text-decoration: none;
    padding: 13px 14px;
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .18s, background .18s;
    white-space: nowrap;
    line-height: 1;
  }

  .dnav-link:hover,
  .dnav-drop-btn:hover {
    color: white;
    background: rgba(255,255,255,.07);
  }

  .dnav-link.cur,
  .dnav-link.active {
    color: var(--river);
  }

  /* Schedule & Rates — highlighted CTA link */
  .dnav-highlight {
    color: var(--copper-light, #d4956a);
    font-weight: 700;
  }
  .dnav-highlight:hover {
    color: white;
    background: rgba(var(--copper-rgb, 180,110,60), .2);
  }

  /* Dropdown wrapper */
  .dnav-dropdown {
    position: relative;
  }

  .dnav-drop-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #c0b8a8;
    background: none;
    border: none;
    cursor: pointer;
    padding: 13px 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .18s, background .18s;
    white-space: nowrap;
    line-height: 1;
  }

  .dnav-caret {
    font-size: 10px;
    opacity: .7;
    transition: transform .18s;
  }

  .dnav-dropdown:hover .dnav-caret {
    transform: rotate(180deg);
  }

  .dnav-drop-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--ink);
    border: 1px solid rgba(46,107,122,.4);
    border-top: 2px solid var(--river);
    box-shadow: 0 8px 24px rgba(0,0,0,.45);
    z-index: 300;
    border-radius: 0 0 3px 3px;
  }

  .dnav-dropdown:hover .dnav-drop-menu {
    display: block;
  }

  .dnav-drop-menu a {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: .07em;
    text-transform: uppercase;
    font-weight: 500;
    color: #c0b8a8;
    text-decoration: none;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: color .15s, background .15s;
  }

  .dnav-drop-menu a:last-child {
    border-bottom: none;
  }

  .dnav-drop-menu a:hover {
    color: white;
    background: rgba(46,107,122,.25);
  }

  /* Hide hamburger on desktop since we have the full nav */
  .hbtn {
    display: none;
  }

  /* Adjust header since hamburger is hidden */
  .header-left {
    gap: 0;
  }
}
