/* =====================================================================
   Nautical Breeze — Styles
   ---------------------------------------------------------------------
   Layout is intentionally editorial and asymmetrical, with three
   distinct moods per section:
     - Spearfishing: dark, bold, serious
     - Jet Ski:      light, clean, fast
     - Adventure:    warm, soft, refined
   ===================================================================== */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  /* Pastel base palette */
  --mint:         #d9efd5;       /* light green */
  --mint-2:       #b8e0bb;
  --mint-deep:    #4f9858;

  --peach:        #ffe2d1;       /* light peach */
  --peach-2:      #ffcfb3;
  --peach-deep:   #d76b3e;

  --pink:         #ffdce5;       /* light pink */
  --pink-2:       #ffc1cf;
  --pink-deep:    #c84a6a;

  --baby:         #d2ecff;       /* baby blue */
  --baby-2:       #b1ddff;
  --baby-deep:    #2d7fc4;

  /* Sharp accents — punchy, used sparingly for stand-out */
  --sun:          #ffd23f;       /* yellow */
  --sun-deep:     #e6a800;
  --coral:        #ff4d4d;       /* red */
  --coral-deep:   #d11f1f;

  /* Neutrals */
  --bg:           #fdf6ee;       /* warm cream page bg */
  --bg-alt:       #e8f3e8;       /* mint-tinted alt bg for pathways */
  --ink:          #141414;       /* near-black */
  --ink-soft:     #3a3a3a;
  --ink-mute:     #707070;
  --line:         #e6dcc9;
  --line-soft:    #efe5d3;

  /* Brand primary (was teal) → black for buttons, coral for hover */
  --sea:          #141414;
  --sea-deep:     #ff4d4d;
  --sea-ink:      #141414;

  /* Spearfishing — bold black with yellow + coral + mint accents */
  --spear-bg:     #0e0e0e;
  --spear-bg-2:   #181818;
  --spear-line:   #2a2a2a;
  --spear-ink:    #f5f5f5;
  --spear-mute:   #a3a3a3;
  --spear-accent: #ffd23f;       /* yellow */

  /* Jet ski — baby blue with black + coral */
  --jet-bg:       #d2ecff;
  --jet-bg-2:     #b1ddff;
  --jet-accent:   #ff4d4d;       /* coral */
  --jet-accent-d: #141414;       /* black for "deeper" / strong */
  --jet-ink:      #141414;

  /* Adventure — peach with red accent */
  --warm-bg:      #ffe2d1;
  --warm-bg-2:    #ffd1ba;
  --warm-line:    #f5b88e;
  --warm-ink:     #2a1810;
  --warm-accent:  #ff4d4d;       /* coral */

  /* Type */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 4px;
  --radius-lg: 10px;

  /* Header */
  --header-h: 72px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--spear-accent); }

.display {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(40px, 6.4vw, 84px);
  margin: 0 0 24px;
  color: inherit;
}
.display--md {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.06;
}
.serif { font-family: var(--serif); font-style: italic; font-weight: 500; }

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 56ch;
}
.lead--light { color: var(--spear-mute); }
.serif-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.45;
  color: var(--warm-ink);
}

.caption {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 12px;
}
.caption--light { color: var(--spear-mute); }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm  { padding: 10px 16px; font-size: 12px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--sea);
  color: #fff;
  border-color: var(--sea);
}
.btn--primary:hover { background: var(--sea-deep); border-color: var(--sea-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

.btn--white {
  background: var(--sun);
  color: var(--ink);
  border-color: var(--sun);
}
.btn--white:hover { background: var(--coral); border-color: var(--coral); color: #fff; }

.btn--warm {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.btn--warm:hover { background: var(--coral-deep); border-color: var(--coral-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 246, 238, 0.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
}
.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--ink);
}
.brand__mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(255,77,77,.15);
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand__tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-book { display: inline-flex; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--gutter) 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-size: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a:last-child { border-bottom: 0; margin-top: 12px; }

/* ---------- Image slot (placeholder rendering) ---------- */
.img-slot {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #d6cfc1 0%, #c7bda8 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}
.img-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.18) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.18) 50%, rgba(255,255,255,.18) 75%, transparent 75%);
  background-size: 14px 14px;
  opacity: .35;
  pointer-events: none;
}
.img-slot--has-image::before { display: none; }
.img-slot--has-image { background: #000; }
.img-slot__label {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.06);
  color: var(--ink);
  font-size: 11px;
}
.img-slot--warm { background: linear-gradient(135deg, #e8d4b6 0%, #d8b98e 100%); }
.img-slot--tall    { aspect-ratio: 4 / 5; }
.img-slot--portrait{ aspect-ratio: 3 / 4; }
.img-slot--square  { aspect-ratio: 1 / 1; }
.img-slot--wide    { aspect-ratio: 16 / 10; }
.img-slot--sm      { aspect-ratio: 1 / 1; }
.img-slot img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(60px, 8vw, 120px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__regions li::before {
  content: "•";
  color: var(--sea);
  margin-right: 8px;
}

.hero__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.hero__main {
  grid-column: 1 / -1;
  grid-row: 1;
}
.hero__sub-1 { grid-column: 1; grid-row: 2; }
.hero__sub-2 { grid-column: 2; grid-row: 2; transform: translateY(-30px); }

/* Stingray photo: fill the slot, keep the swimmer + ray centered */
.hero__sub-1 img { object-fit: cover; object-position: center 40%; }

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- PATHWAYS ---------- */
.pathways {
  background: var(--bg-alt);
  padding: clamp(60px, 8vw, 110px) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pathways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pathway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-height: 320px;
}
.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -28px rgba(11, 22, 32, .25);
  border-color: var(--ink);
}
.pathway-card__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 18px;
}
.pathway-card[data-key="spearfishing"] { background: var(--spear-bg); color: var(--spear-ink); border-color: transparent; }
.pathway-card[data-key="spearfishing"] .pathway-card__kicker { color: var(--spear-accent); }
.pathway-card[data-key="spearfishing"] .pathway-card__cta    { color: var(--spear-accent); }
.pathway-card[data-key="spearfishing"] .pathway-card__copy   { color: var(--spear-mute); }
.pathway-card[data-key="adventure"]   { background: var(--warm-bg); color: var(--warm-ink); border-color: transparent; }
.pathway-card[data-key="adventure"] .pathway-card__kicker { color: var(--warm-accent); }
.pathway-card[data-key="adventure"] .pathway-card__cta    { color: var(--warm-accent); }
.pathway-card[data-key="jetski"]      { background: var(--jet-bg-2); color: var(--jet-ink); border-color: transparent; }
.pathway-card[data-key="jetski"] .pathway-card__kicker { color: var(--jet-accent-d); }
.pathway-card[data-key="jetski"] .pathway-card__cta    { color: var(--jet-accent-d); }

.pathway-card__title {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 32px;
  margin: 0 0 14px;
}
.pathway-card__copy {
  margin: 0 0 24px;
  font-size: 16px;
  color: var(--ink-soft);
}
.pathway-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea);
}
.pathway-card__cta::after {
  content: "→";
  transition: transform .2s ease;
}
.pathway-card:hover .pathway-card__cta::after { transform: translateX(4px); }

/* ---------- SPEARFISHING ---------- */
.spearfishing {
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(255,210,63,.08) 0%, transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(255,77,77,.06) 0%, transparent 60%),
    var(--spear-bg);
  color: var(--spear-ink);
  padding: clamp(80px, 10vw, 140px) 0;
}
.spearfishing__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.spearfishing__copy { max-width: 640px; }
.spearfishing__media .img-slot {
  background: linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
  color: rgba(255,255,255,.55);
}

/* Triptych: tall portrait on the left, two stacked squares on the right */
.spearfishing__triptych {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 4 / 5;
}
.spearfishing__triptych-main { grid-column: 1; grid-row: 1 / span 2; }
.spearfishing__triptych-top  { grid-column: 2; grid-row: 1; }
.spearfishing__triptych-bot  { grid-column: 2; grid-row: 2; }
.spearfishing__triptych .img-slot { aspect-ratio: auto; }
/* The hogfish + grouper screenshots have empty deck around the fish — show full subject */
.spearfishing__triptych-top img,
.spearfishing__triptych-bot img { object-fit: cover; }

/* lists in dark section */
.check-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-top: 1px solid var(--spear-line);
  color: #c8d3df;
  font-size: 16px;
}
.check-list li:last-child { border-bottom: 1px solid var(--spear-line); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 19px;
  width: 18px; height: 8px;
  border-left: 2px solid var(--spear-accent);
  border-bottom: 2px solid var(--spear-accent);
  transform: rotate(-45deg);
}

.price-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 0 0 32px;
}
.price-card {
  border: 1px solid var(--spear-line);
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
}
.price-card__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--spear-mute);
  margin: 0 0 8px;
}
.price-card__price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: #fff;
}
.price-card__detail { margin: 0; font-size: 13px; color: var(--spear-mute); }

.price-row--light .price-card {
  background: #fff;
  border-color: var(--line);
}
.price-row--light .price-card__label { color: var(--ink-mute); }
.price-row--light .price-card__price { color: var(--ink); }
.price-row--light .price-card__detail { color: var(--ink-soft); }

.price-row--warm .price-card {
  background: #fbf2e3;
  border-color: var(--warm-line);
}
.price-row--warm .price-card__label  { color: #87664b; }
.price-row--warm .price-card__price  { color: var(--warm-ink); }
.price-row--warm .price-card__detail { color: #6d553f; }

.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.incl-grid--warm .incl-grid__h { color: var(--warm-ink); }
.incl-grid__h {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--spear-accent);
}
.incl-grid--warm .incl-grid__h { color: var(--warm-accent); }

.dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
}
.dash-list li {
  padding: 6px 0 6px 18px;
  position: relative;
  color: inherit;
}
.dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: currentColor;
  opacity: .55;
}

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- SPEARFISHING — Two tracks (advanced / beginner) ---------- */
.spearfishing__bottom { margin-top: clamp(48px, 6vw, 80px); }

.spear-tracks-block {
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--spear-line);
}
.spear-tracks-block__head {
  text-align: center;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.spear-tracks-block__head .display {
  margin: 0;
  color: #fff;
}

.spear-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 32px);
}

.spear-track {
  position: relative;
  padding: clamp(28px, 3vw, 40px) clamp(28px, 3vw, 40px) clamp(32px, 3.5vw, 44px);
  border: 1px solid var(--spear-line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.spear-track::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--spear-accent);
  opacity: .9;
}
.spear-track:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
}

/* Advanced — brass/gold accent, deeper background */
.spear-track--advanced {
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(214,163,92,.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
}
.spear-track--advanced::before { background: var(--spear-accent); }
.spear-track--advanced .spear-track__kicker { color: var(--spear-accent); }

/* Beginner — softer, approachable teal accent */
.spear-track--beginner {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(184,224,187,.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
}
.spear-track--beginner::before { background: var(--mint-2); }
.spear-track--beginner .spear-track__kicker { color: var(--mint-2); }

.spear-track__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.spear-track__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff;
}
.spear-track__copy {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
  color: #c0ccd9;
}
.spear-track__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--spear-line);
}
.spear-track__list li {
  position: relative;
  padding: 12px 0 12px 22px;
  font-size: 15px;
  line-height: 1.45;
  color: #d4dde7;
  border-bottom: 1px solid var(--spear-line);
}
.spear-track__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 18px;
  width: 10px; height: 2px;
  background: currentColor;
  opacity: .55;
}

/* ---------- JET SKI ---------- */
.jetski {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--jet-bg-2) 100%);
  color: var(--jet-ink);
  padding: clamp(80px, 9vw, 130px) 0;
}
.jetski__head { max-width: 720px; margin-bottom: 48px; }
.jetski__head .lead { color: #2c4a5c; }

.jetski__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.jetski__media .img-slot, .jetski__media.img-slot {
  background: linear-gradient(135deg, #b1ddff 0%, #87c6f5 100%);
  color: rgba(0,0,0,.45);
}
/* Yamaha jet ski photo is portrait — show the full ski inside the wide slot */
.jetski__media img { object-fit: cover; }
.jetski__panels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.panel {
  background: #fff;
  border: 1px solid #d9e7ef;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.panel--light  { background: #fff; }
.panel--accent {
  background: var(--jet-ink);
  color: #fff;
  border-color: var(--jet-ink);
}
.panel--accent .panel__h { color: var(--jet-accent); }
.panel--mini { padding: 18px 20px; }
.panel-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.panel__h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--jet-accent-d);
}
.panel--mini h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jet-accent-d);
  margin: 0 0 10px;
}

.dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #2c4a5c;
}
.dot-list li {
  padding: 8px 0 8px 22px;
  position: relative;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 16px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--jet-accent);
}

/* ---------- ADVENTURE ---------- */
.adventure {
  background:
    radial-gradient(900px 500px at 80% 0%, #f7e6cb 0%, transparent 60%),
    var(--warm-bg);
  color: var(--warm-ink);
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--warm-line);
  border-bottom: 1px solid var(--warm-line);
}
.adventure__head { max-width: 760px; margin-bottom: 56px; }
.adventure__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.adventure__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.highlight {
  border-top: 1px solid var(--warm-line);
  padding: 22px 0 4px;
}
.highlight__label {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--warm-ink);
}
.highlight__detail {
  margin: 0;
  font-size: 15px;
  color: #6b5440;
}
.adventure__bottom {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.cta-block {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}

/* ---------- ABOUT ---------- */
.about { padding: clamp(80px, 10vw, 130px) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about__bio p {
  margin: 0 0 16px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 60ch;
}
.region-chips {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.region-chips li {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- BOAT ---------- */
.boat {
  padding: clamp(70px, 9vw, 130px) 0;
  background: linear-gradient(180deg, #f5f1ea 0%, #ece6d9 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  color: var(--warm-ink);
}
.boat__head {
  max-width: 60ch;
  margin: 0 0 clamp(36px, 5vw, 60px);
}
.boat__intro {
  margin: 16px 0 0;
  font-size: 17px;
  color: #4a3d2a;
}
.boat__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.5vw, 48px);
  align-items: start;
}
.boat-card {
  display: flex;
  flex-direction: column;
  background: #fbf7f0;
  border: 1px solid var(--warm-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.boat-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 0;
}
.boat-card__body {
  padding: clamp(22px, 2.4vw, 32px);
}
.boat-card__name {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.01em;
  color: var(--warm-ink);
}
.boat-card__blurb {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #4a3d2a;
}
.boat-card__pricing {
  margin: 0;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: clamp(70px, 9vw, 130px) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.chip {
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink-soft);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover { color: var(--ink); border-color: var(--ink); }
.chip.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 14px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery__item .img-slot {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
/* Editorial mosaic — repeating asymmetrical pattern */
.gallery__item:nth-child(9n+1) { grid-column: span 7; grid-row: span 4; }
.gallery__item:nth-child(9n+2) { grid-column: span 5; grid-row: span 2; }
.gallery__item:nth-child(9n+3) { grid-column: span 5; grid-row: span 2; }
.gallery__item:nth-child(9n+4) { grid-column: span 4; grid-row: span 3; }
.gallery__item:nth-child(9n+5) { grid-column: span 4; grid-row: span 3; }
.gallery__item:nth-child(9n+6) { grid-column: span 4; grid-row: span 3; }
.gallery__item:nth-child(9n+7) { grid-column: span 6; grid-row: span 3; }
.gallery__item:nth-child(9n+8) { grid-column: span 3; grid-row: span 3; }
.gallery__item:nth-child(9n+9) { grid-column: span 3; grid-row: span 3; }

.gallery__item[data-mood="spearfishing"] .img-slot { background: linear-gradient(135deg, #1f1f1f, #0a0a0a); color: rgba(255,255,255,.6); }
.gallery__item[data-mood="jetski"]       .img-slot { background: linear-gradient(135deg, #d2ecff, #87c6f5); color: rgba(0,0,0,.55); }
.gallery__item[data-mood="adventure"]    .img-slot { background: linear-gradient(135deg, #ffe2d1, #ffc1cf); color: rgba(0,0,0,.55); }

/* Photos with empty deck/boat space around the subject — show full image */
.gallery__item--fit-contain .img-slot img {
  object-fit: contain;
  padding: 6px;
  background: #1a1a1a;
}
.gallery__item--fit-contain[data-mood="spearfishing"] .img-slot img { background: #0e0e0e; }
.gallery__item--fit-contain[data-mood="adventure"]    .img-slot img { background: #2a1f17; }
/* Light "contain" — full subject on clean white (e.g. fish on a white deck) */
.gallery__item--fit-contain.gallery__item--fit-light .img-slot { background: #ffffff; }
.gallery__item--fit-contain.gallery__item--fit-light .img-slot img { background: #ffffff; padding: 0; }

.gallery__item--hidden { display: none; }

/* ---------- REVIEWS ---------- */
.reviews {
  background: var(--bg-alt);
  padding: clamp(70px, 9vw, 130px) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.reviews .section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.lead--center {
  margin-left: auto;
  margin-right: auto;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.review {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  box-shadow: 0 4px 0 rgba(20, 20, 20, 0.04);
}
.review__stars {
  display: inline-flex;
  gap: 2px;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}
.review__star { color: #d9d2c3; }
.review__star.is-on { color: var(--sun-deep); }
.review__text {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.review__text::before {
  content: "\201C";
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.18em;
  margin-right: 2px;
  color: var(--mint-deep);
}
.review__text::after {
  content: "\201D";
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.32em;
  margin-left: 2px;
  color: var(--mint-deep);
}
.review__cite {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  font-style: normal;
}
.review__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--mint-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.review__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(70px, 9vw, 130px) 0; }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 22px 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq__q::after {
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  color: var(--sea);
  transition: transform .25s ease;
}
.faq__item.is-open .faq__q::after { content: "–"; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__a-inner {
  padding: 0 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 60ch;
}

/* ---------- BOOKING ---------- */
.booking {
  background: var(--spear-bg);
  color: var(--spear-ink);
  padding: clamp(70px, 9vw, 130px) 0;
}
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.booking__copy .lead { color: var(--spear-mute); }

.contact-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--spear-line);
}
.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--spear-line);
  font-size: 15px;
}
.contact-list .contact-list__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--spear-mute);
}
.contact-list .contact-list__value {
  color: #fff;
  font-weight: 500;
  text-align: right;
  word-break: break-all;
}
.contact-list a:hover { color: var(--spear-accent); }

.booking__widget {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.booking-placeholder {
  padding: 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  background:
    radial-gradient(800px 400px at 100% 0%, var(--baby) 0%, transparent 70%),
    radial-gradient(600px 300px at 0% 100%, var(--mint) 0%, transparent 70%),
    #fff;
}
.booking-placeholder__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 14px;
}
.booking-placeholder__h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.booking-placeholder__p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  max-width: 50ch;
}
.booking-placeholder__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.booking-placeholder__chip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg);
}
.booking-placeholder__cta { margin-top: auto; }
.booking-iframe {
  border: 0;
  width: 100%;
  flex: 1;
  min-height: 560px;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: #b9c2cb;
  padding: 48px 0 36px;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__tag  { color: #7d8a96; }
.site-footer__note {
  margin: 12px 0 0;
  max-width: 56ch;
  font-size: 14px;
  color: #93a0ac;
}
.site-footer__meta {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: #7d8a96;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  flex-wrap: wrap;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .site-nav,
  .header-book { display: none; }
  .nav-toggle { display: inline-flex; }

  .hero__grid,
  .spearfishing__inner,
  .jetski__grid,
  .adventure__grid,
  .about__grid,
  .boat__cards,
  .faq__grid,
  .booking__grid {
    grid-template-columns: 1fr;
  }
  .hero__sub-2 { transform: none; }
  .pathways__grid { grid-template-columns: 1fr; }
  .spear-tracks { grid-template-columns: 1fr; }
  .adventure__bottom { grid-template-columns: 1fr; }
  .adventure__highlights { grid-template-columns: 1fr 1fr; }
  .cta-block { justify-content: flex-start; }
  .incl-grid { grid-template-columns: 1fr; gap: 24px; }
  .panel-pair { grid-template-columns: 1fr; }

  .gallery__grid { grid-auto-rows: 90px; }
  .gallery__item:nth-child(9n+1),
  .gallery__item:nth-child(9n+7)         { grid-column: span 12; grid-row: span 3; }
  .gallery__item:nth-child(9n+2),
  .gallery__item:nth-child(9n+3)         { grid-column: span 6;  grid-row: span 2; }
  .gallery__item:nth-child(9n+4),
  .gallery__item:nth-child(9n+5),
  .gallery__item:nth-child(9n+6)         { grid-column: span 6;  grid-row: span 2; }
  .gallery__item:nth-child(9n+8),
  .gallery__item:nth-child(9n+9)         { grid-column: span 6;  grid-row: span 2; }

  .reviews__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero__regions { font-size: 11px; gap: 6px 16px; }
  .booking-placeholder { padding: 28px; }
  .booking-placeholder__row { grid-template-columns: 1fr; }
  .adventure__highlights { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; }
  .pathway-card { min-height: auto; }
  .display { font-size: clamp(34px, 9vw, 48px); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Display sm variant ---------- */
.display--sm {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
}

/* ---------- SPECIES GUIDE — target ID block in spearfishing ---------- */
.species-guide {
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--spear-line);
}
.species-guide__head {
  text-align: center;
  margin: 0 auto clamp(32px, 4vw, 48px);
  max-width: 640px;
}
.species-guide__head .display {
  margin: 0 0 14px;
  color: #fff;
}
.species-guide__lead {
  margin: 0;
  color: var(--spear-mute);
  font-size: 15px;
  line-height: 1.55;
}

.species-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.species-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--spear-bg-2);
  border: 1px solid var(--spear-line);
  border-radius: var(--radius-lg);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.species-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.18);
  background: #1f1f1f;
}

.species-card__icon {
  width: 56px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.species-card__icon svg { width: 100%; height: 100%; }

.species-card__body { min-width: 0; }
.species-card__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 2px;
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.species-card__depth {
  margin: 0;
  font-size: 12px;
  color: var(--spear-mute);
  letter-spacing: 0.02em;
}

.species-card__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Tag color coding by level — uses the new pastel palette */
.species-card--advanced .species-card__tag {
  background: var(--coral);
  color: #fff;
}
.species-card--advanced .species-card__icon { color: #ffb0b0; }

.species-card--classic .species-card__tag {
  background: var(--sun);
  color: var(--ink);
}
.species-card--classic .species-card__icon { color: var(--sun); }

.species-card--season .species-card__tag {
  background: var(--peach-2);
  color: var(--ink);
}
.species-card--season .species-card__icon { color: var(--peach-2); }

.species-card--shallow .species-card__tag {
  background: var(--mint-2);
  color: var(--ink);
}
.species-card--shallow .species-card__icon { color: var(--mint-2); }

@media (max-width: 880px) {
  .species-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .species-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   BOOKING — multi-step form, modal, confirmation/admin pages
   =================================================================== */
.bk-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
}
.bk-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  margin: 4px 0 6px;
  color: var(--ink);
}
.bk-sub {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.bk-form-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bk-field { display: flex; flex-direction: column; gap: 6px; }
.bk-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) {
  .bk-row-2 { grid-template-columns: 1fr; }
}
.bk-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.bk-input {
  font: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  width: 100%;
  box-sizing: border-box;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.bk-input:focus {
  outline: none;
  border-color: var(--sea);
  box-shadow: 0 0 0 3px rgba(0, 90, 130, .12);
}
.bk-textarea { resize: vertical; min-height: 84px; }
.bk-help { margin: 0; font-size: 12px; color: var(--ink-mute); }
.bk-error { margin: 4px 0 0; font-size: 13px; color: #b83232; min-height: 1em; }
.bk-summary {
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  background: #f7f5f0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bk-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.bk-summary__k { color: var(--ink-soft); }
.bk-summary__v { color: var(--ink); font-weight: 600; }
.bk-submit { margin-top: 6px; }
.bk-fineprint {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.bk-cancel-notice {
  background: #fff8e1;
  border: 1px solid #f0d97a;
  color: #6b4f00;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
}

/* --- Modal --- */
.bk-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 28, .55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 1000;
  padding: clamp(16px, 4vw, 60px) 16px;
  overflow-y: auto;
}
.bk-modal-overlay.is-open { display: flex; }
html.bk-modal-open, html.bk-modal-open body { overflow: hidden; }
.bk-modal {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.45);
  margin: auto;
}
.bk-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-mute);
  padding: 6px 10px;
}
.bk-modal__close:hover { color: var(--ink); }
.bk-modal__header { margin-bottom: 16px; }
.bk-modal__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 6px 0 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.bk-modal__sub { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

/* --- Confirmation / admin pages --- */
.bk-page {
  background: #f4f1ea;
  min-height: calc(100vh - 80px);
  padding: clamp(40px, 7vw, 100px) 0;
}
.bk-page__inner { max-width: 720px; margin: 0 auto; }
.bk-page__card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.18);
}
.bk-page__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.01em;
  margin: 6px 0 10px;
  color: var(--ink);
}
.bk-page__sub { color: var(--ink-soft); margin: 0 0 24px; font-size: 16px; line-height: 1.55; }
.bk-page__loading { color: var(--ink-mute); font-size: 14px; }
.bk-page__error { color: #b83232; font-size: 16px; }
.bk-detail { margin: 0 0 20px; display: flex; flex-direction: column; gap: 0; }
.bk-detail__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.bk-detail__row:last-child { border-bottom: 1px solid var(--line); }
.bk-detail__k { color: var(--ink-mute); margin: 0; font-size: 13px; }
.bk-detail__v { color: var(--ink); margin: 0; font-weight: 500; }
.bk-policy { font-size: 14px; color: var(--ink-soft); margin: 0 0 24px; line-height: 1.55; }
.bk-policy strong { color: var(--ink); }
.bk-msg { font-size: 14px; margin: 0 0 12px; }
.bk-msg--ok { color: #1a6f3a; }
.bk-msg--err { color: #b83232; }
.bk-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.bk-back { margin: 24px 0 0; }
@media (max-width: 560px) {
  .bk-detail__row { grid-template-columns: 1fr; gap: 4px; padding: 10px 0; }
}

/* --- Admin --- */
.bk-admin-login { display: flex; flex-direction: column; gap: 8px; max-width: 320px; }
.bk-admin-tools {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 0 0 18px;
}
.btn--sm {
  padding: 8px 14px;
  font-size: 12px;
}
.bk-admin-list { display: flex; flex-direction: column; gap: 12px; }
.bk-admin-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  background: #fafaf7;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bk-admin-item__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bk-admin-item__date { color: var(--ink); font-weight: 600; }
.bk-admin-item__ref { font-family: monospace; }
.bk-admin-item__body p { margin: 2px 0; font-size: 14px; color: var(--ink); }
.bk-admin-item__guest { color: var(--ink-soft) !important; }
.bk-admin-item__notes { color: var(--ink-mute) !important; font-style: italic; font-size: 13px !important; }
.bk-admin-item__email-fail {
  color: #8a1c1c !important;
  background: #fdecec;
  border: 1px solid #f3c2c2;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 13px !important;
  font-weight: 600;
  margin-top: 6px !important;
}
.bk-admin-item__actions { display: flex; justify-content: flex-end; }
.bk-admin-item.bk-cat-spearfishing { border-left: 4px solid var(--sun-deep); }
.bk-admin-item.bk-cat-jetski { border-left: 4px solid var(--baby-deep); }
.bk-admin-item.bk-cat-adventure { border-left: 4px solid var(--peach-deep); }

/* --- Admin: view tabs --- */
.bk-admin-tabs {
  display: inline-flex;
  gap: 4px;
  background: #f0ece2;
  padding: 4px;
  border-radius: 10px;
  margin: 0 0 18px;
}
.bk-admin-tab {
  border: 0;
  background: transparent;
  padding: 8px 18px;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  cursor: pointer;
}
.bk-admin-tab.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

/* --- Admin: calendar --- */
.bk-cal-legend {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin: 0 0 20px; font-size: 13px; color: var(--ink-soft);
}
.bk-cal-legend__item { display: inline-flex; align-items: center; gap: 6px; }
.bk-cal-dot { width: 12px; height: 12px; border-radius: 3px; display: inline-block; background: #ddd; }

.bk-cal-month { margin: 0 0 28px; }
.bk-cal-month__title {
  font-family: var(--serif); font-size: 20px; color: var(--ink); margin: 0 0 10px;
}
.bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.bk-cal-wd {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-mute); text-align: center; padding: 4px 0;
}
.bk-cal-cell {
  min-height: 78px; border: 1px solid var(--line); border-radius: 10px;
  padding: 6px; background: #fff; display: flex; flex-direction: column; gap: 4px;
}
.bk-cal-cell--empty { border: 0; background: transparent; min-height: 0; }
.bk-cal-cell__num { font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.bk-cal-cell.is-out { background: #f6f3ec; opacity: .55; }
.bk-cal-cell.is-today { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.bk-cal-cell.is-clickable { cursor: pointer; }
.bk-cal-cell.is-clickable:hover { border-color: var(--ink-mute); }
.bk-cal-cell__chips { display: flex; flex-direction: column; gap: 3px; }
.bk-cal-chip {
  border: 0; border-left: 3px solid var(--ink-mute);
  border-radius: 4px; padding: 2px 6px; cursor: pointer;
  font: inherit; font-size: 11px; line-height: 1.3; text-align: left;
  display: flex; justify-content: space-between; gap: 4px; align-items: center;
  background: #eee; color: var(--ink);
}
.bk-cal-chip:hover { filter: brightness(0.96); }
.bk-cal-chip__ref { font-family: monospace; font-weight: 600; }
.bk-cal-chip__meta { color: var(--ink-soft); white-space: nowrap; }

/* category colors (shared by dots + chips) */
.bk-cal-dot.bk-cat-spearfishing, .bk-cal-chip.bk-cat-spearfishing { background: #fff1c2; border-left-color: var(--sun-deep); }
.bk-cal-dot.bk-cat-jetski, .bk-cal-chip.bk-cat-jetski { background: #d2ecff; border-left-color: var(--baby-deep); }
.bk-cal-dot.bk-cat-adventure, .bk-cal-chip.bk-cat-adventure { background: #ffe2d1; border-left-color: var(--peach-deep); }

/* --- Admin: day detail overlay --- */
.bk-admin-detail-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 20, 20, .5);
  display: flex; align-items: flex-start; justify-content: center;
  padding: clamp(20px, 6vh, 80px) 16px; overflow-y: auto;
}
.bk-admin-detail {
  position: relative; background: #fff; border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px); max-width: 560px; width: 100%;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .4);
}
.bk-admin-detail__title { font-family: var(--serif); font-size: 24px; margin: 6px 0 18px; color: var(--ink); }

@media (max-width: 560px) {
  .bk-cal-grid { gap: 3px; }
  .bk-cal-cell { min-height: 56px; padding: 4px; border-radius: 8px; }
  .bk-cal-chip { font-size: 10px; padding: 2px 4px; }
}

/* full-width submit utility */
.btn--full { width: 100%; justify-content: center; }
