/* ==========================================================================
   Central Coast Bass Fishing — design system
   Palette: deep lake water, pine shoreline, golden-hour light, oak & sand.
   Type:    Bitter (slab serif) for headings, Rye (wood type) for labels.
   Built mobile-first. Base type is deliberately large (18px) because most
   visitors are on a phone.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts — self-hosted so there's no CDN dependency and nothing to block.
   Both are SIL Open Font License, so self-hosting is permitted.
   Bitter: a warm slab serif — frontier without the costume.
   Rye:    wood type, used sparingly on small uppercase labels only.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Bitter';
  src: url('/fonts/bitter-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bitter';
  src: url('/fonts/bitter-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Bitter';
  src: url('/fonts/bitter-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Rye';
  src: url('/fonts/rye-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  /* --- Water & shoreline --- */
  --water-deep: #0c2523;
  --water:      #123b37;
  --pine:       #1d5348;
  --sage:       #7d9d8d;

  /* --- Golden hour --- */
  --gold:       #bf8329;
  --gold-light: #e0b063;
  --gold-glow:  rgba(191, 131, 41, 0.16);

  /* --- Oak, sand, paper --- */
  --sand:       #ebe1d1;
  --cream:      #fbf8f2;
  --paper:      #ffffff;

  /* --- Ink --- */
  --ink:        #16211e;
  --ink-soft:   #48584f;
  --ink-faint:  #7b8a83;
  --on-dark:    #f2ece0;
  --on-dark-soft: #bfcfc6;

  /* --- Structure --- */
  --shell: 1140px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* --- Type --- */
  --font-display: 'Bitter', "Iowan Old Style", Georgia, ui-serif, serif;
  --font-accent:  'Rye', 'Bitter', Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* --- Depth --- */
  --lift-sm: 0 1px 2px rgba(12, 37, 35, 0.06), 0 3px 10px rgba(12, 37, 35, 0.06);
  --lift:    0 2px 4px rgba(12, 37, 35, 0.06), 0 12px 32px rgba(12, 37, 35, 0.10);
  --lift-lg: 0 4px 8px rgba(12, 37, 35, 0.07), 0 24px 60px rgba(12, 37, 35, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset-ish
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.16;          /* Bitter has taller slabs than the old serif */
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
  color: var(--water-deep);
}

h1 { font-size: clamp(2.35rem, 6.2vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 4.4vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.45rem); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--pine); text-underline-offset: 3px; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: 760px; }

.section { padding-block: clamp(3.75rem, 9vw, 7rem); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }

.section--sand  { background: var(--sand); }
.section--paper { background: var(--paper); }
.section--deep {
  background: var(--water-deep);
  color: var(--on-dark-soft);
}
.section--deep h2, .section--deep h3 { color: var(--on-dark); }

.eyebrow {
  display: block;
  /* Rye is a wood-type face — it already carries a lot of width and weight,
     so it needs less tracking and a touch more size than the sans did. */
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section--deep .eyebrow { color: var(--gold-light); }

.lede {
  font-size: clamp(1.075rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--deep .lede { color: var(--on-dark-soft); }

.section-head { max-width: 68ch; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* Hand-drawn-ish rule that evokes a waterline */
.waterline {
  height: 3px;
  width: 64px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 0 1.5rem;
}
.section-head--center .waterline { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 56px;              /* generous tap target */
  padding: 0.9rem 1.9rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 18px var(--gold-glow);
}
.btn--primary:hover {
  background: #a97223;
  box-shadow: 0 12px 28px var(--gold-glow);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(242, 236, 224, 0.45);
  color: var(--on-dark);
}
.btn--ghost:hover {
  background: rgba(242, 236, 224, 0.1);
  border-color: var(--on-dark);
}

.btn--outline {
  background: transparent;
  border-color: var(--pine);
  color: var(--pine);
}
.btn--outline:hover { background: var(--pine); color: #fff; }

.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(12, 37, 35, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(242, 236, 224, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--on-dark);
}
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-accent);
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.brand__sub {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

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

.nav__link {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  color: var(--on-dark-soft);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 550;
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.nav__link:hover { color: var(--on-dark); background: rgba(242, 236, 224, 0.08); }
.nav__link[aria-current="page"] { color: var(--gold-light); }

.nav__cta { margin-left: 0.5rem; min-height: 46px; padding: 0.55rem 1.35rem; font-size: 1rem; }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(242, 236, 224, 0.28);
  border-radius: 10px;
  color: var(--on-dark);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem var(--gutter) 1.75rem;
    background: var(--water-deep);
    border-bottom: 1px solid rgba(242, 236, 224, 0.12);
    box-shadow: var(--lift-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  }
  .nav[data-open="true"] { opacity: 1; transform: none; visibility: visible; }

  .nav__link { padding: 0.95rem 0.75rem; font-size: 1.1rem; border-radius: 10px; }
  .nav__cta { margin: 0.6rem 0 0; }
}

/* --------------------------------------------------------------------------
   Photos — gradient stands in until real photos land in /images
   -------------------------------------------------------------------------- */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 72% 12%, rgba(224, 176, 99, 0.55) 0%, rgba(224, 176, 99, 0) 55%),
    linear-gradient(178deg, #24605a 0%, #17423d 42%, #0e2f2c 72%, #0a2422 100%);
  box-shadow: var(--lift);
}
.photo::after {
  /* soft ripple banding, so an empty frame still reads as water */
  content: "";
  position: absolute;
  inset: 55% 0 0 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.055) 0px,
    rgba(255, 255, 255, 0.055) 1px,
    transparent 1px,
    transparent 9px
  );
  pointer-events: none;
}
.photo > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo--tall  { aspect-ratio: 3 / 4; }
.photo--wide  { aspect-ratio: 3 / 2; }
.photo--square { aspect-ratio: 1 / 1; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--water-deep);
  color: var(--on-dark-soft);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 78% 8%, rgba(224, 176, 99, 0.28) 0%, rgba(224, 176, 99, 0) 60%),
    radial-gradient(90% 70% at 8% 92%, rgba(29, 83, 72, 0.55) 0%, rgba(29, 83, 72, 0) 62%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-block: clamp(3.25rem, 8vw, 6rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
}

.hero h1 { color: var(--on-dark); margin-bottom: 0.6em; }
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero__lede {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--on-dark-soft);
  max-width: 54ch;
  margin-bottom: 2rem;
}
/* the two "who are you?" prompts — lifted out of the paragraph */
.hero__lede strong { color: var(--gold-light); font-weight: 650; }

.hero__note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--sage);
}

.hero__art {
  position: relative;
}
.hero__art .photo { aspect-ratio: 4 / 5; }

/* Floating proof card over the hero photo */
.proof-card {
  position: absolute;
  left: clamp(-0.5rem, -2vw, -1.75rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 2;
  max-width: 270px;
  padding: 1.15rem 1.35rem;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--lift-lg);
}
.proof-card__stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.12em; }
.proof-card__quote {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--water-deep);
  margin: 0.4rem 0 0.5rem;
}
.proof-card__who { font-size: 0.85rem; color: var(--ink-faint); margin: 0; }

@media (max-width: 640px) {
  .proof-card { position: static; max-width: none; margin-top: -2.25rem; margin-inline: 1rem; }
}

/* --------------------------------------------------------------------------
   Reassurance strip
   -------------------------------------------------------------------------- */
.strip {
  background: var(--pine);
  color: var(--on-dark);
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(242, 236, 224, 0.16);
}
.strip__item {
  background: var(--pine);
  padding: 1.6rem 1.25rem;
  text-align: center;
}
.strip__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  display: block;
  line-height: 1.2;
}
.strip__label {
  font-size: 0.88rem;
  color: var(--on-dark-soft);
  margin-top: 0.25rem;
  display: block;
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.step {
  position: relative;
  padding: 2rem 1.6rem 1.75rem;
  background: var(--paper);
  border: 1px solid rgba(29, 83, 72, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-sm);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 1rem; margin: 0; }

/* --------------------------------------------------------------------------
   Included list
   -------------------------------------------------------------------------- */
.included {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  /* Top-aligned: the stacked photo pair runs taller than the copy, so the
     columns should start level with each other rather than centre. */
  .included { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
}

/* Stacked pair of photos in the gear section */
.gear-photos { display: grid; gap: 1.25rem; }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.checklist li {
  /* NOT flex. Flex turns any inline <strong>/<em> inside the item into its
     own flex item, which breaks the sentence into columns mid-word. Absolute
     marker keeps the whole line as normal text flow. */
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold-glow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bf8329' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 15px no-repeat;
}
.section--deep .checklist li::before { background-color: rgba(224, 176, 99, 0.18); }

/* --------------------------------------------------------------------------
   Trips & rates
   -------------------------------------------------------------------------- */
.rates { display: grid; gap: 1.5rem; }
@media (min-width: 920px) { .rates { grid-template-columns: repeat(3, 1fr); } }

.rate {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: var(--paper);
  border: 1px solid rgba(29, 83, 72, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-sm);
}
.rate--feature { border-color: var(--gold); box-shadow: var(--lift); }

.rate__tag {
  align-self: flex-start;
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--gold-glow);
  color: #8c5f1c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rate h3 { margin-bottom: 0.45rem; }
.rate__blurb { font-size: 1rem; color: var(--ink-soft); margin: 0 0 1.5rem; flex: 1; }

.rate__options { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 0.65rem; }
.rate__options li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(29, 83, 72, 0.1);
}
.rate__options li:last-child { border-bottom: 0; padding-bottom: 0; }
.rate__dur { font-size: 1.02rem; color: var(--ink); font-weight: 550; }
.rate__dur small {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.rate__price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--water-deep);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.rate-note {
  margin: 2.25rem auto 0;
  max-width: 62ch;
  text-align: center;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.rate-note strong { color: var(--water-deep); }

/* --------------------------------------------------------------------------
   Tournament schedule
   -------------------------------------------------------------------------- */
.sked-year {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 0 0 1.5rem;
}
.sked-year:not(:first-child) { margin-top: clamp(2.75rem, 6vw, 4rem); }
.sked-year h3 {
  font-size: clamp(1.6rem, 3.4vw, 2.15rem);
  margin: 0;
  color: var(--water-deep);
}
.section--deep .sked-year h3 { color: var(--on-dark); }
.sked-year::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(29, 83, 72, 0.18);
}
.section--deep .sked-year::after { background: rgba(242, 236, 224, 0.18); }
.sked-year span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

.sked { display: grid; gap: 0.7rem; }

.sked-row {
  display: grid;
  gap: 0.25rem 1.5rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border: 1px solid rgba(29, 83, 72, 0.13);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius);
  box-shadow: var(--lift-sm);
}
@media (min-width: 720px) {
  .sked-row {
    grid-template-columns: 9.5rem 1fr auto;
    padding: 1.35rem 1.75rem;
  }
}

.sked-row--major {
  border-left-color: var(--gold);
  background: linear-gradient(90deg, rgba(191, 131, 41, 0.06), rgba(191, 131, 41, 0) 85%);
}

.sked-date {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  white-space: nowrap;
}

.sked-name {
  font-size: 1.14rem;
  font-weight: 650;
  color: var(--water-deep);
  line-height: 1.3;
}
.sked-where {
  font-size: 0.94rem;
  color: var(--ink-faint);
  margin-top: 0.1rem;
}

.sked-tag {
  justify-self: start;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(29, 83, 72, 0.09);
  color: var(--pine);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sked-tag--major { background: var(--gold-glow); color: #8c5f1c; }

@media (min-width: 720px) { .sked-tag { justify-self: end; } }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  gap: 0.85rem;
}

/* --- Mosaic: 3+ photos, first tile doubles up on wide screens --------------
   Every rule here is scoped with :not(.gallery--pair). Without that the
   generic selectors sit later in the file at equal specificity and silently
   win over the pair variant below. */
.gallery--mosaic { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 780px) {
  .gallery--mosaic { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
  .gallery--mosaic > *:first-child { grid-column: span 2; grid-row: span 2; }
}
.gallery--mosaic .photo { aspect-ratio: 1 / 1; height: 100%; }

/* --- Pair: exactly 2 photos, equal 4:3 tiles ---------------------------- */
.gallery--pair { grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 700px) { .gallery--pair { grid-template-columns: 1fr 1fr; } }
.gallery--pair .photo { aspect-ratio: 4 / 3; height: 100%; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.quotes {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

.quote {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-sm);
  border-top: 4px solid var(--gold);
}
.quote__stars { color: var(--gold); letter-spacing: 0.14em; font-size: 0.95rem; margin-bottom: 0.9rem; }
.quote__body {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--water-deep);
  margin: 0 0 1.4rem;
  flex: 1;
}
.quote__who { display: flex; align-items: center; gap: 0.8rem; }
.quote__avatar {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--sage), var(--pine));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.quote__name { font-weight: 650; font-size: 0.98rem; line-height: 1.3; }
.quote__meta { font-size: 0.85rem; color: var(--ink-faint); line-height: 1.3; }

/* --------------------------------------------------------------------------
   Lakes page
   -------------------------------------------------------------------------- */
.mapfig { margin: 0; }
.mapfig svg,
.mapfig img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--lift);
  overflow: hidden;
}
.mapfig figcaption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-faint);
  max-width: 60ch;
  margin-inline: auto;
}

.lakes { display: grid; gap: 1.75rem; }
@media (min-width: 940px) { .lakes { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.lake {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--paper);
  border: 1px solid rgba(29, 83, 72, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift-sm);
}
.lake__photo {
  aspect-ratio: 16 / 9;
  margin: 0 0 1.6rem;
  border-radius: var(--radius);
  box-shadow: none;
}

.lake__aerial { margin: 0 0 1.5rem; }
.lake__aerial svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(29, 83, 72, 0.14);
}
.lake__aerial figcaption {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
}
.lake h2 { font-size: clamp(1.6rem, 3vw, 2.05rem); margin-bottom: 0.2rem; }
.lake p { font-size: 1.02rem; color: var(--ink-soft); }

.lake__tag {
  align-self: flex-start;
  margin-bottom: 0.9rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--gold-glow);
  color: #8c5f1c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lake__where {
  font-size: 0.95rem !important;
  color: var(--ink-faint) !important;
  margin-bottom: 1.4rem;
}

.lake__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0 0 1.6rem;
  background: rgba(29, 83, 72, 0.12);
  border: 1px solid rgba(29, 83, 72, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.lake__facts > div { background: var(--cream); padding: 0.85rem 1rem; }
.lake__facts dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.lake__facts dd {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--water-deep);
}

.lake__meet {
  margin-top: auto;
  padding: 1rem 1.15rem;
  background: var(--sand);
  border-radius: var(--radius);
  font-size: 0.98rem !important;
}
.lake__meet strong { color: var(--water-deep); }
.lake .btn-row { margin-top: 1.4rem; }

/* --------------------------------------------------------------------------
   Leave-a-review block
   -------------------------------------------------------------------------- */
#reviews-live { margin-bottom: clamp(3rem, 7vw, 5rem); }

.review-ask {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 940px) {
  .review-ask { grid-template-columns: 0.85fr 1.15fr; }
}

.row-2 { display: grid; gap: 0 1rem; }
@media (min-width: 520px) { .row-2 { grid-template-columns: 1fr 1fr; } }

.label-txt {
  display: block;
  font-weight: 650;
  font-size: 0.98rem;
  color: var(--water-deep);
  margin-bottom: 0.2rem;
}

.stars { display: flex; gap: 0.15rem; }
.star {
  background: none;
  border: 0;
  padding: 0.15rem 0.2rem;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: rgba(29, 83, 72, 0.22);
  transition: color 0.12s var(--ease), transform 0.12s var(--ease);
}
.star:hover { transform: translateY(-2px); }
.star.is-on { color: var(--gold); }

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0.25rem 0 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.consent input {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  accent-color: var(--gold);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.75rem; }

.faq details {
  background: var(--paper);
  border: 1px solid rgba(29, 83, 72, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  min-height: 56px;
  font-weight: 650;
  font-size: 1.06rem;
  color: var(--water-deep);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bf8329' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details > div {
  padding: 0 1.4rem 1.35rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* --------------------------------------------------------------------------
   Lead form
   -------------------------------------------------------------------------- */
.lead-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--lift-lg);
}

.field { display: grid; gap: 0.4rem; margin-bottom: 1.15rem; }
.field label { font-weight: 650; font-size: 0.98rem; color: var(--water-deep); }
.field .hint { font-size: 0.86rem; color: var(--ink-faint); font-weight: 400; }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1.0625rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid rgba(29, 83, 72, 0.18);
  border-radius: 10px;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
}

.form-alt {
  margin: 0.9rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-faint);
}
.linkish {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--pine);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.linkish:hover { color: var(--water-deep); }

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 10px;
  font-size: 1rem;
  display: none;
}
.form-status[data-state="ok"]   { display: block; background: rgba(29, 83, 72, 0.1);  color: var(--pine); }
.form-status[data-state="err"]  { display: block; background: rgba(176, 58, 46, 0.1);  color: #a33529; }
.form-status[data-state="busy"] { display: block; background: var(--gold-glow);        color: #8c5f1c; }

/* --------------------------------------------------------------------------
   Booking / calendar page
   -------------------------------------------------------------------------- */
.booking {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}
@media (min-width: 980px) { .booking { grid-template-columns: 0.85fr 1.15fr; } }

.cal-frame {
  min-height: 720px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--lift);
  overflow: hidden;
  padding: 0.5rem;
}
.cal-frame iframe { width: 100%; min-height: 700px; border: 0; display: block; }

.cal-fallback {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 700px;
  padding: 2rem;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */
.about-hero {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 900px) { .about-hero { grid-template-columns: 0.8fr 1.2fr; } }

.prose > p { font-size: 1.09rem; color: var(--ink-soft); }
.prose > p:first-of-type {
  font-size: clamp(1.15rem, 2.2vw, 1.32rem);
  color: var(--ink);
}

.creds { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 0.7rem; }
.creds li {
  /* NOT flex — flex would make <strong> its own flex item and break the
     text flow mid-sentence. Absolute marker keeps the line as one paragraph. */
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.creds li strong { color: var(--water-deep); }
.creds li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

.photo-credit {
  margin: 0.8rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.photo-credit span {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 0.1rem;
}
/* on the dark bands the default ink colours would vanish */
.section--deep .photo-credit { color: var(--on-dark-soft); }
.section--deep .photo-credit span { color: var(--sage); }

/* --- Full-width action shot --------------------------------------------- */
.wideshot { margin: 0; }
.wideshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--lift);
}
.wideshot figcaption {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.wideshot figcaption span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* --- Off-site links (MLF profile, podcast) ------------------------------- */
.elsewhere { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 0.75rem; }
@media (min-width: 620px) { .elsewhere { grid-template-columns: 1fr 1fr; } }

.elsewhere a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 64px;
  padding: 0.9rem 1.15rem;
  background: var(--cream);
  border: 1px solid rgba(29, 83, 72, 0.16);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink-soft);
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease),
              transform 0.18s var(--ease);
}
.elsewhere a:hover {
  border-color: var(--gold);
  background: var(--paper);
  transform: translateY(-2px);
}
.elsewhere svg { width: 26px; height: 26px; flex: none; color: var(--gold); }
.elsewhere strong {
  display: block;
  font-size: 1rem;
  color: var(--water-deep);
  line-height: 1.25;
}
.elsewhere em {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 0.1rem;
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--water-deep);
  color: var(--on-dark-soft);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 90% at 50% 0%, rgba(224, 176, 99, 0.22), transparent 65%);
}
.cta-band .shell { position: relative; z-index: 1; }
.cta-band h2 { color: var(--on-dark); }
/* .cta-band is not .section--deep, so .lede would otherwise keep its dark
   --ink-soft and land near-invisible on the dark ground. */
.cta-band .lede { color: var(--on-dark-soft); }
.cta-band .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #081d1c;
  color: var(--on-dark-soft);
  padding-block: 3.25rem 2.25rem;
  font-size: 0.95rem;
}
.site-footer a { color: var(--on-dark-soft); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); text-decoration: underline; }

.site-footer__grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(242, 236, 224, 0.12);
}
@media (min-width: 760px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.site-footer h4 {
  color: var(--on-dark);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }

.site-footer__base {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--ink-faint);
}

/* --------------------------------------------------------------------------
   Sticky mobile call bar — the single highest-value mobile conversion element
   -------------------------------------------------------------------------- */
.call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(12, 37, 35, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(242, 236, 224, 0.14);
}
.call-bar .btn { flex: 1; min-height: 52px; font-size: 1rem; padding-inline: 0.75rem; }

@media (max-width: 720px) {
  .call-bar { display: flex; }
  body { padding-bottom: 84px; }
}

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* Keep hyphenated brand names (I-Rodz) from breaking across lines. */
.nb { white-space: nowrap; }

/* Anchor targets must clear the sticky header, or the jump lands with the
   section heading hidden behind it. */
[id] { scroll-margin-top: 96px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.9rem 1.4rem;
  background: var(--gold);
  color: #fff;
  font-weight: 650;
}
.skip-link:focus { left: 0; }
