/* =========================================================
   Captain Skippy Charters — Stylesheet
   Coastal/Classic Long Island palette
   Mobile-first, accessible, system-friendly
   ========================================================= */

/* ---- Design tokens --------------------------------------- */
:root {
  /* Palette */
  --navy-900: #0B2A4A;
  --navy-800: #11365E;
  --navy-700: #16487C;
  --navy-600: #1F5C9A;
  --teal-600: #1B5E7C;

  --sand-50:  #FBF6EA;
  --sand-100: #F4ECD8;
  --sand-200: #E9DDBF;
  --sand-300: #D9C99B;

  --rope-500: #C9A66B;
  --rope-600: #A88649;

  --coral-600: #D94436;
  --coral-700: #B53728;

  --ink-900: #0E1521;
  --ink-700: #2A3140;
  --ink-500: #5E6B7E;
  --ink-300: #9AA4B4;
  --line:    #E5E0D2;
  --white:   #FFFFFF;

  --success: #2C8C5A;
  --warning: #C97A1F;

  /* Type scale */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg:   1.1875rem;
  --fs-xl:   1.4375rem;
  --fs-2xl:  1.875rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3.25rem;
  --fs-5xl:  4.25rem;
  --fs-6xl:  5.5rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 920px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(11,42,74,.06), 0 1px 4px rgba(11,42,74,.04);
  --shadow:    0 4px 16px rgba(11,42,74,.08), 0 2px 6px rgba(11,42,74,.04);
  --shadow-lg: 0 18px 50px -12px rgba(11,42,74,.25), 0 8px 18px -8px rgba(11,42,74,.15);

  --transition: 220ms cubic-bezier(.2,.7,.2,1);
}

/* ---- Base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-900); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--rope-500); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.25rem, 6vw, var(--fs-5xl)); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, var(--fs-3xl)); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: var(--container-narrow); }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rope-600);
  margin: 0 0 1rem;
}
.lede { font-size: var(--fs-lg); color: var(--ink-700); }

/* ---- Skip link ------------------------------------------- */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--navy-900); color: var(--white);
  padding: .6rem 1rem; border-radius: var(--radius);
  z-index: 1000; transition: top var(--transition);
}
.skip-link:focus { top: 1rem; color: var(--white); }

/* ---- Nav ------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 42, 74, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; letter-spacing: -0.01em;
}
.brand:hover { color: var(--white); }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  /* Cream ring + soft shadow so the navy badge pops against the navy nav */
  box-shadow: 0 1px 2px rgba(0,0,0,.35), 0 0 0 2px var(--sand-100);
  background: var(--sand-100);
}
.brand-mark img {
  width: 100%; height: 100%; display: block;
  border-radius: 50%; object-fit: cover;
}
.brand-mark svg { width: 22px; height: 22px; } /* legacy fallback */
.site-footer .brand-mark { box-shadow: 0 1px 2px rgba(0,0,0,.4), 0 0 0 2px var(--rope-500); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small { font-family: var(--font-body); font-weight: 500; font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase; opacity: .7; margin-top: 2px; }

.nav-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 1.5rem; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.85); text-decoration: none;
  font-size: .95rem; font-weight: 500;
  padding: .4rem 0; position: relative; transition: color var(--transition);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--rope-500); border-radius: 2px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--rope-500); color: var(--navy-900);
  padding: .65rem 1.25rem;
  border-radius: 999px; /* pill — no edge clipping, soft */
  font-weight: 700; text-decoration: none; font-size: .92rem;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    inset 0 -1px 0 rgba(0,0,0,.12),
    0 1px 2px rgba(0,0,0,.18),
    0 4px 10px -4px rgba(201,166,107,.5);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta svg { flex-shrink: 0; }
.nav-cta:hover {
  background: var(--sand-100); color: var(--navy-900); transform: translateY(-1px);
  box-shadow:
    inset 0 -1px 0 rgba(0,0,0,.12),
    0 2px 4px rgba(0,0,0,.2),
    0 8px 18px -6px rgba(201,166,107,.55);
}
.nav-cta:active { transform: translateY(0); }

.nav-toggle {
  display: none; background: transparent; border: 0; color: var(--white);
  padding: .4rem; border-radius: var(--radius-sm);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--navy-900); padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-120%); transition: transform var(--transition);
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav-links[data-open="true"] { transform: translateY(0); }
  .nav-links a {
    display: block; padding: .9rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.05rem;
  }
  .nav-links li:last-child a { border-bottom: 0; }
  /* Keep the CTA as flex on mobile so the arrow icon stays inline with the text */
  .nav-links .nav-cta {
    display: flex; align-items: center; justify-content: center;
    gap: .55rem; margin-top: .9rem; padding: 1rem 1.5rem;
    border-bottom: 0; white-space: nowrap;
    border-radius: 999px;
  }
  .nav-links .nav-cta svg { flex-shrink: 0; }
}

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; font-size: .98rem; text-decoration: none;
  border: 0; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn--primary { background: var(--rope-500); color: var(--navy-900); }
.btn--primary:hover { background: var(--sand-100); color: var(--navy-900); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--solid { background: var(--navy-900); color: var(--white); }
.btn--solid:hover { background: var(--navy-800); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); color: var(--white); border-color: var(--white); }
.btn--ghost-dark {
  background: transparent; color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
}
.btn--ghost-dark:hover { background: var(--navy-900); color: var(--white); }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ---- Hero ------------------------------------------------ */
.hero {
  position: relative; min-height: 78vh; display: grid; align-items: end;
  color: var(--white); overflow: hidden; isolation: isolate;
  padding: 7rem 0 3.5rem;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, #0E2C4D 0%, #16487C 100%);
}
.hero-img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 50%;
}
.hero-video { display: block; }
/* On mobile portrait, anchor the drone shot toward the waterline */
@media (max-width: 720px) {
  .hero-video { object-position: 50% 65%; }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* Lighter top half so the sunset reads, deeper bottom so text stays legible over water */
  background: linear-gradient(180deg, rgba(11,42,74,.20) 0%, rgba(11,42,74,.45) 45%, rgba(11,42,74,.92) 100%);
}
.hero-inner { display: grid; gap: 1.5rem; max-width: 760px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero .eyebrow { color: var(--rope-500); }
.hero p.lede { color: rgba(255,255,255,.92); max-width: 620px; font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .5rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  margin-top: 2.2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .9rem;
}
.hero-trust > div { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.9); }
.hero-trust svg { width: 22px; height: 22px; color: var(--rope-500); flex-shrink: 0; }
.hero-trust strong { color: var(--white); }

/* Page-header (lighter hero for inner pages) */
.page-header {
  position: relative; color: var(--white);
  padding: 7.5rem 0 4rem; isolation: isolate; overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--teal-600) 100%);
}
.page-header-img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; opacity: .55;
}
.page-header::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,42,74,.55), rgba(11,42,74,.85));
}
.page-header h1 { color: var(--white); font-size: clamp(2.25rem, 5vw, 3.75rem); margin-bottom: .5rem; }
.page-header p { color: rgba(255,255,255,.92); font-size: var(--fs-lg); max-width: 640px; margin: 0; }
.page-header .breadcrumbs { color: rgba(255,255,255,.75); font-size: .85rem; margin-bottom: 1rem; }
.page-header .breadcrumbs a { color: rgba(255,255,255,.85); text-decoration: none; }
.page-header .breadcrumbs a:hover { color: var(--white); }
.page-header .breadcrumbs span { margin: 0 .4rem; opacity: .5; }

/* ---- Section ---------------------------------------------- */
section { padding: 5rem 0; }
section.tight { padding: 3.5rem 0; }
section.alt { background: var(--white); }
section.dark { background: var(--navy-900); color: rgba(255,255,255,.92); }
section.dark h2, section.dark h3 { color: var(--white); }
section.dark .eyebrow { color: var(--rope-500); }
section.sand { background: var(--sand-100); }
.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: var(--fs-lg); color: var(--ink-700); margin: 0; }

/* ---- Pillar cards (USPs / why us) ----------------------- */
.pillars {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.pillar {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pillar-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--sand-100); display: grid; place-items: center;
  color: var(--navy-800); margin-bottom: 1rem;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.pillar p { color: var(--ink-700); margin: 0; font-size: .98rem; }

/* ---- Trip cards ----------------------------------------- */
.trips { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.trip-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.trip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trip-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.trip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.7,.2,1); }
.trip-card:hover .trip-img img { transform: scale(1.04); }
.trip-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,42,74,.65) 100%);
}
.trip-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--rope-500); color: var(--navy-900);
  padding: .3rem .7rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; z-index: 1;
}
.trip-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; gap: .6rem; }
.trip-card h3 { margin: 0; font-size: 1.4rem; }
.trip-season { font-size: .85rem; color: var(--ink-500); margin: 0; }
.trip-price {
  display: flex; align-items: baseline; gap: .35rem;
  margin: .35rem 0;
  font-family: var(--font-display);
  color: var(--navy-900);
}
.trip-price .amount { font-size: 2rem; font-weight: 700; }
.trip-price .unit { font-size: .9rem; color: var(--ink-500); font-family: var(--font-body); }
.trip-target { font-size: .95rem; color: var(--ink-700); margin: 0; }
.trip-includes { list-style: none; padding: 0; margin: .5rem 0 1.2rem; display: grid; gap: .4rem; }
.trip-includes li { display: flex; gap: .55rem; align-items: flex-start; font-size: .92rem; color: var(--ink-700); }
.trip-includes svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.trip-card .btn { margin-top: auto; }

/* ---- About / split layouts ------------------------------ */
.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split--reverse { direction: ltr; }
@media (min-width: 880px) {
  .split--reverse > :first-child { order: 2; }
}
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split-body h2 { margin-top: 0; }

.creds { display: grid; gap: .9rem; margin: 1.5rem 0 1.8rem; }
.cred { display: flex; gap: .9rem; align-items: flex-start; }
.cred-icon {
  flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--sand-100); color: var(--navy-800);
  display: grid; place-items: center;
}
.cred-icon svg { width: 20px; height: 20px; }
.cred strong { display: block; color: var(--navy-900); font-weight: 700; font-size: .98rem; }
.cred span { color: var(--ink-700); font-size: .92rem; }

/* ---- Stat strip ----------------------------------------- */
.stats {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.stat { text-align: center; padding: .5rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
@media (max-width: 700px) { .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 1rem 0; } .stat:last-child { border-bottom: 0; } }
.stat .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--navy-900); line-height: 1; }
.stat .lbl { font-size: .82rem; color: var(--ink-500); text-transform: uppercase; letter-spacing: .1em; margin-top: .35rem; display: block; }

/* ---- Gallery -------------------------------------------- */
.gallery-grid {
  display: grid; gap: .65rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  display: block; aspect-ratio: 1/1; overflow: hidden;
  border-radius: var(--radius); background: var(--sand-200);
  cursor: zoom-in; border: 0; padding: 0;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 250ms;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.05); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(11,21,33,.94); display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox[data-open="true"] { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(0,0,0,.4); color: var(--white);
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  width: 48px; height: 48px; display: grid; place-items: center;
  cursor: pointer; transition: background var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(0,0,0,.7); }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }
.lightbox-nav svg, .lightbox-close svg { width: 22px; height: 22px; }

/* ---- FAQ accordion -------------------------------------- */
.faq { display: grid; gap: .75rem; max-width: 800px; }
.faq details {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.faq details[open] { box-shadow: var(--shadow); border-color: var(--rope-500); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; color: var(--navy-900); font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 22px; height: 22px; flex-shrink: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B2A4A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") center/contain no-repeat;
  transition: transform var(--transition);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div {
  padding: 0 1.4rem 1.3rem; color: var(--ink-700); line-height: 1.65;
}
.faq details > div p:last-child { margin-bottom: 0; }

/* ---- Forms ---------------------------------------------- */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.form-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field.span-2 { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: .9rem; color: var(--navy-900); }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit; font-size: 1rem;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--sand-50);
  transition: border-color var(--transition), background var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--navy-700); background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-hint { color: var(--ink-500); font-size: .82rem; }

/* ---- Sticky mobile CTA --------------------------------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: var(--navy-900); padding: .8rem 1rem;
  display: none; gap: .6rem; justify-content: center;
  box-shadow: 0 -8px 24px rgba(11,21,33,.25);
}
.sticky-cta a {
  flex: 1; max-width: 220px;
  padding: .85rem 1rem; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem;
  text-align: center; text-decoration: none;
}
.sticky-cta a.call { background: var(--white); color: var(--navy-900); }
.sticky-cta a.book { background: var(--rope-500); color: var(--navy-900); }
@media (max-width: 720px) { .sticky-cta { display: flex; } body { padding-bottom: 70px; } }

/* ---- Booking widget placeholder ------------------------- */
.booking-widget {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; text-align: center;
  border: 2px dashed var(--rope-500); color: var(--ink-700);
}
.booking-widget h3 { color: var(--navy-900); margin-bottom: .5rem; }
.booking-widget .widget-zone {
  margin: 1.5rem auto; padding: 2.5rem 1.5rem;
  background: var(--sand-50); border-radius: var(--radius);
  color: var(--ink-500); font-size: .9rem; max-width: 480px;
}

/* ---- Direct contact cards (book page hero) ------------- */
.direct-contact {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) { .direct-contact { grid-template-columns: 1fr; } }
.direct-contact-card {
  display: flex; gap: 1rem; align-items: center;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-decoration: none; color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.direct-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rope-500);
  color: inherit;
}
.direct-contact-card--phone { background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); color: var(--white); border-color: transparent; }
.direct-contact-card--phone:hover { color: var(--white); }
.direct-contact-card--phone .direct-contact-label,
.direct-contact-card--phone .direct-contact-sub { color: rgba(255,255,255,.7); }
.direct-contact-card--phone .direct-contact-value { color: var(--white); }
.direct-contact-card--phone .direct-contact-ico { background: var(--rope-500); color: var(--navy-900); }

.direct-contact-ico {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sand-100); color: var(--navy-800);
  display: grid; place-items: center;
}
.direct-contact-ico svg { width: 26px; height: 26px; }
.direct-contact-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-500); font-weight: 600; margin-bottom: 2px; }
.direct-contact-value { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--navy-900); line-height: 1.15; word-break: break-word; }
.direct-contact-sub { font-size: .85rem; color: var(--ink-500); margin-top: 4px; }

/* ---- Wave divider --------------------------------------- */
.wave {
  display: block; width: 100%; height: 60px;
  margin-bottom: -1px;
}

/* ---- Footer --------------------------------------------- */
.site-footer {
  background: var(--navy-900); color: rgba(255,255,255,.85);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-family: var(--font-body); font-size: .9rem;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; font-weight: 700; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-grid ul a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .95rem; }
.footer-grid ul a:hover { color: var(--rope-500); }
.footer-brand p { color: rgba(255,255,255,.75); font-size: .95rem; margin-top: .8rem; max-width: 320px; }
.footer-brand .brand { color: var(--white); margin-bottom: 0; }
.footer-contact .contact-item { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .8rem; font-size: .95rem; }
.footer-contact .contact-item svg { width: 18px; height: 18px; color: var(--rope-500); flex-shrink: 0; margin-top: 3px; }
.footer-contact .contact-item a { color: rgba(255,255,255,.92); text-decoration: none; }
.footer-contact .contact-item a:hover { color: var(--rope-500); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 3rem; padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--rope-500); }

/* ---- Map embed ----------------------------------------- */
.map-embed {
  width: 100%; aspect-ratio: 16/9; border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ---- Rate table ---------------------------------------- */
.rate-table {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.rate-row {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr auto;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.rate-row:last-child { border-bottom: 0; }
.rate-row .label { color: var(--navy-900); font-weight: 600; }
.rate-row .sublabel { color: var(--ink-500); font-size: .88rem; display: block; margin-top: 2px; font-weight: 400; }
.rate-row .price { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 1.25rem; }

/* ---- Inline list with dots ---------------------------- */
.species-list {
  list-style: none; padding: 0; margin: 1rem 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.species-list li {
  background: var(--sand-100); color: var(--navy-900);
  padding: .35rem .8rem; border-radius: 999px;
  font-size: .88rem; font-weight: 500;
}

/* ---- Testimonial -------------------------------------- */
.testimonials {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.quote {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.8rem; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
}
.quote .stars { color: var(--rope-500); font-size: 1.1rem; letter-spacing: 2px; }
.quote blockquote { margin: 0; font-style: italic; color: var(--ink-700); font-size: 1.02rem; line-height: 1.6; }
.quote cite { font-style: normal; color: var(--navy-900); font-weight: 600; font-size: .92rem; }
.quote cite small { display: block; color: var(--ink-500); font-weight: 400; font-size: .82rem; margin-top: 2px; }

/* ---- CTA strip ---------------------------------------- */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-900), var(--teal-600));
  border-radius: var(--radius-xl);
  padding: 3rem 2rem; color: var(--white);
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media (max-width: 720px) { .cta-strip { grid-template-columns: 1fr; text-align: center; } }
.cta-strip h2 { color: var(--white); margin: 0 0 .4rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-strip p { color: rgba(255,255,255,.85); margin: 0; }
.cta-strip-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
@media (max-width: 720px) { .cta-strip-actions { justify-content: center; } }

/* ---- Utility ----------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* =========================================================
   Live Conditions (NOAA-powered)
   ========================================================= */
.cond-root { display: grid; gap: 2.5rem; }
.cond-loading {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 3rem; text-align: center; color: var(--ink-500);
  border: 1px dashed var(--line);
}
.cond-error {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; border: 1.5px solid var(--coral-600);
  color: var(--ink-700);
}
.cond-error h3 { color: var(--coral-700); margin-top: 0; }

.cond-section { display: grid; gap: 1.5rem; }
.cond-section-head { max-width: 760px; }
.cond-section-head h2 { margin: .25rem 0 .4rem; }
.cond-section-head p { color: var(--ink-700); margin: 0; }

/* Verdict pill */
.verdict {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .75rem; border-radius: 999px;
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  border: 1.5px solid transparent;
}
.verdict--green  { background: #DCEFE0; color: #1B5E2C; border-color: #2C8C5A; }
.verdict--yellow { background: #FBEFD5; color: #7A4F00; border-color: #C97A1F; }
.verdict--red    { background: #FAD8D3; color: #841E12; border-color: #B53728; }
.verdict--gray   { background: var(--sand-100); color: var(--ink-500); border-color: var(--line); }

/* Today card */
.cond-today {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.cond-today-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .75rem; flex-wrap: wrap; }
.cond-today-head .eyebrow { margin: 0; }
.cond-today-line { font-size: var(--fs-lg); color: var(--ink-700); margin: 0 0 1.5rem; }
.cond-chips { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.cond-chip {
  display: flex; gap: .75rem; align-items: center;
  padding: .9rem 1rem; border-radius: var(--radius);
  background: var(--sand-50); border: 1px solid var(--line);
}
.cond-chip-ico { font-size: 1.6rem; line-height: 1; }
.cond-chip-val { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--navy-900); line-height: 1.1; }
.cond-chip-lbl { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-500); margin-top: 2px; }

.cond-cta-green {
  margin-top: 1.25rem; padding: 1rem 1.25rem;
  background: #DCEFE0; border: 1.5px solid #2C8C5A; border-radius: var(--radius);
  color: #1B5E2C; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.cond-cta-green .btn { margin-left: auto; }
.cond-cta-soft {
  margin-top: 1.25rem; padding: .9rem 1.2rem;
  background: var(--sand-100); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--ink-700); font-size: .95rem;
}

/* Alert banner */
.cond-alert {
  background: #FAD8D3; border: 1.5px solid #B53728; color: #841E12;
  border-radius: var(--radius); padding: 1rem 1.25rem;
  display: flex; gap: .5rem; flex-wrap: wrap; align-items: center;
}
.cond-alert a { color: #841E12; font-weight: 700; }

/* 7-day strip */
.cond-days {
  display: grid; gap: .75rem;
  grid-template-columns: repeat(7, 1fr);
}
@media (max-width: 980px) { .cond-days { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .cond-days { grid-template-columns: repeat(2, 1fr); } }
.cond-day {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem .85rem; display: grid; gap: .35rem;
  text-decoration: none; color: var(--ink-900);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cond-day:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.cond-day--green  { border-top: 4px solid #2C8C5A; }
.cond-day--yellow { border-top: 4px solid #C97A1F; }
.cond-day--red    { border-top: 4px solid #B53728; }
.cond-day--gray   { border-top: 4px solid var(--line); }
.cond-day-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy-900); }
.cond-day-date { font-size: .82rem; color: var(--ink-500); }
.cond-day-summary { font-size: .82rem; color: var(--ink-700); line-height: 1.35; min-height: 2.4em; margin-top: .35rem; }
.cond-day-stats { display: flex; justify-content: center; gap: .8rem; font-size: .82rem; color: var(--ink-700); margin: .35rem 0; }
.cond-day-stats span { font-weight: 600; }
.cond-day .verdict { margin-top: .25rem; font-size: .7rem; padding: .2rem .55rem; }

/* Tide chart + table */
.cond-tide-chart-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--line);
  height: 280px;
}
.tide-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.tide-table th, .tide-table td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .95rem; }
.tide-table thead th { background: var(--sand-100); color: var(--navy-900); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.tide-table tbody th { font-weight: 600; color: var(--navy-900); white-space: nowrap; width: 8em; }
.tide-event { display: inline-block; margin-right: 1rem; margin-bottom: .25rem; }
.tide-event strong { color: var(--navy-900); }
.tide-event em { color: var(--ink-500); font-style: normal; font-size: .85rem; }
.tide-high strong { color: var(--navy-700); }
.tide-low  strong { color: var(--rope-600); }

/* Sun + water-temp strip */
.cond-suntemp {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--line);
  text-align: center;
}
@media (max-width: 500px) { .cond-suntemp { grid-template-columns: 1fr; } }
.cond-suntemp-item strong { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy-900); }
.cond-suntemp-item span   { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-500); margin-top: 4px; }

.cond-source { font-size: .82rem; color: var(--ink-500); text-align: center; margin-top: 0; }
.cond-source a { color: var(--ink-700); }

/* Compact widget for /book page */
.cond-widget {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.5rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.cond-widget-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.cond-widget-head .eyebrow { margin: 0; }
.cond-widget-head a { font-size: .9rem; font-weight: 600; text-decoration: none; }
.cond-widget-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 640px) { .cond-widget-grid { grid-template-columns: 1fr; } }
.cond-widget-day {
  padding: 1rem; background: var(--sand-50); border-radius: var(--radius);
  display: grid; gap: .4rem; text-align: center;
}
.cond-widget-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-500); font-weight: 600; }
.cond-widget-time { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy-900); }
.cond-widget-stats { font-size: .85rem; color: var(--ink-700); }
.cond-widget-day .verdict { margin: 0 auto; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
