/* =============================================================================
   NEW PASS GRILL & BAIT SHOP — Shared Stylesheet
   A landmark since 1929 · Sarasota, FL
   -----------------------------------------------------------------------------
   Aesthetic: "well-designed coastal fish camp" — weathered dock wood, deep Gulf
   teal, warm sand/cream, sun-faded coral, hand-painted-sign character.

   STRUCTURE
     1.  Design tokens (CSS custom properties) — RETUNE THE BRAND HERE
     2.  Reset & base
     3.  Typography
     4.  Layout helpers (container, section, grid)
     5.  Decorative elements (badge, dividers, textures, eyebrows)
     6.  Buttons
     7.  Header / navigation
     8.  Footer
     9.  Hero
     10. Reusable section blocks (split, business cards, features)
     11. Menus (item / price / description rows + tabs)
     12. Galleries, apparel lookbook, lightbox
     13. Contact / info / hours / map
     14. Placeholder boxes (for assets not yet supplied)
     15. Motion / reveal-on-scroll
     16. Responsive (mobile-first; breakpoints scale UP)
   ============================================================================ */


/* =============================================================================
   1. DESIGN TOKENS  —  ⚙️  edit these to retune the whole site
   ============================================================================ */
:root {
  /* ---- Color: weathered dock + deep Gulf + warm sand + sun-faded coral ---- */
  --gulf-deep:    #0E433F;   /* primary dark teal — header, footer, deep panels */
  --gulf:         #155E58;   /* mid teal */
  --gulf-light:   #2C7A72;   /* lighter teal accents */
  --seafoam:      #8FB9AE;   /* muted desaturated teal */
  --driftwood:    #7A6048;   /* weathered wood brown */
  --driftwood-dk: #54422F;   /* dark wood */
  --sand:         #EFE2CA;   /* warm sand — section bands */
  --sand-deep:    #E4D2B2;   /* deeper sand */
  --cream:        #FBF5E9;   /* page background — sun-bleached paper */
  --coral:        #D6553C;   /* sun-faded coral — primary accent / CTAs */
  --coral-deep:   #B5402A;   /* coral hover */
  --brass:        #B5852F;   /* aged brass — badge / fine detail */
  --ink:          #241E17;   /* warm near-black — body text */
  --ink-soft:     #4E4538;   /* muted body text */
  --line:         #D8C7A6;   /* hairline borders on cream */

  /* ---- Brand-on-dark text ---- */
  --on-dark:        #F6EEDD;
  --on-dark-soft:   #C7CBC2;

  /* ---- Typography ---- */
  --font-display: 'Ultra', 'Rockwell', Georgia, serif;          /* painted-sign slab */
  --font-body:    'Libre Franklin', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-script:  'Caveat', 'Segoe Script', cursive;            /* hand accent (sparingly) */

  /* fluid type scale (mobile → desktop) */
  --fs-eyebrow: 0.78rem;
  --fs-base:    1.0625rem;                                /* 17px body */
  --fs-lg:      1.1875rem;
  --fs-h3:      clamp(1.35rem, 1.0rem + 1.6vw, 1.9rem);
  --fs-h2:      clamp(1.9rem, 1.2rem + 3.0vw, 3.1rem);
  --fs-h1:      clamp(2.6rem, 1.4rem + 5.4vw, 5.2rem);
  --fs-hero:    clamp(3.0rem, 1.4rem + 7.2vw, 6.4rem);

  /* ---- Spacing / rhythm ---- */
  --space-section: clamp(3.5rem, 7vw, 7rem);
  --container:     1200px;
  --container-narrow: 880px;
  --radius:     14px;
  --radius-sm:  8px;

  /* ---- Elevation ---- */
  --shadow-sm: 0 2px 8px rgba(36,30,23,0.10);
  --shadow-md: 0 12px 30px -12px rgba(36,30,23,0.32);
  --shadow-lg: 0 30px 60px -24px rgba(14,67,63,0.45);

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  280ms;

  /* ---- Z-index scale ---- */
  --z-header: 100;
  --z-drawer: 120;
  --z-lightbox: 200;

  /* ---- Logo (swap real logo here — see README) ---- */
  --logo-src: url("../images/logo-placeholder.svg");
}


/* =============================================================================
   2. RESET & BASE
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  /* faint sun-bleached paper grain — subtle, never kitschy */
  background-image:
    radial-gradient(circle at 12% 18%, rgba(213,85,60,0.035), transparent 38%),
    radial-gradient(circle at 88% 8%, rgba(21,94,88,0.045), transparent 40%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--coral-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--coral); }
ul[role="list"] { list-style: none; padding: 0; }

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

::selection { background: var(--coral); color: #fff; }

/* skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--coral); color: #fff; padding: 0.6rem 1rem;
  border-radius: var(--radius-sm); z-index: 300; font-weight: 700;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 12px; color:#fff; }


/* =============================================================================
   3. TYPOGRAPHY
   ============================================================================ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.02;
  letter-spacing: 0.005em; color: var(--ink); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.1; }
h4 { font-family: var(--font-body); font-weight: 800; font-size: 1.05rem;
  letter-spacing: 0.04em; text-transform: uppercase; }

p { max-width: 68ch; }
.lead { font-size: var(--fs-lg); color: var(--ink-soft); line-height: 1.65; }
strong, b { font-weight: 700; }

.script { font-family: var(--font-script); font-weight: 700; color: var(--coral);
  line-height: 1; }

/* "painted on weathered wood" headline treatment for hero + big titles */
.headline-painted {
  color: var(--cream);
  text-shadow: 0 1px 0 rgba(0,0,0,0.18), 0 0.06em 0.06em rgba(0,0,0,0.28);
}

.text-coral { color: var(--coral); }
.text-gulf  { color: var(--gulf); }


/* =============================================================================
   4. LAYOUT HELPERS
   ============================================================================ */
.container { width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-section); position: relative; }
.section--sand  { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--gulf  { background: var(--gulf-deep); color: var(--on-dark); }
.section--gulf h1, .section--gulf h2, .section--gulf h3 { color: var(--cream); }
.section--gulf p { color: var(--on-dark-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.stack > * + * { margin-top: 1.1rem; }


/* =============================================================================
   5. DECORATIVE ELEMENTS
   ============================================================================ */

/* small uppercase label with a little hand-drawn fish/wave flourish */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--fs-eyebrow); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px; background: currentColor; opacity: 0.6;
}
.section--gulf .eyebrow { color: var(--brass); }

/* EST. 1929 rope badge (used in hero, footer, accents) */
.est-badge {
  width: 96px; height: 96px; flex: none; display: grid; place-items: center;
  border-radius: 50%;
  color: var(--brass);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}
.est-badge svg { width: 100%; height: 100%; }

/* rope / stitched divider */
.rope-divider {
  height: 14px; width: 100%;
  background-image: repeating-linear-gradient(
    -45deg, var(--driftwood) 0 8px, transparent 8px 16px);
  opacity: 0.5; border: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* wood-grain top/bottom edge for dark bands */
.edge-wood { height: 8px; background:
  linear-gradient(90deg, var(--driftwood-dk), var(--driftwood), var(--driftwood-dk)); }

/* curved wave separator between sections */
.wave-sep { display: block; width: 100%; height: 48px; }
.wave-sep path { fill: currentColor; }


/* =============================================================================
   6. BUTTONS
   ============================================================================ */
.btn {
  --btn-bg: var(--coral); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 800; font-size: 0.98rem;
  letter-spacing: 0.03em; text-transform: uppercase;
  padding: 0.95rem 1.6rem; min-height: 48px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; border-radius: 999px;
  cursor: pointer; text-decoration: none; line-height: 1;
  box-shadow: var(--shadow-sm);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover { background: var(--coral-deep); color:#fff; transform: translateY(-2px);
  box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--cream);
  border-color: rgba(246,238,221,0.7);
}
.btn--ghost:hover { background: rgba(246,238,221,0.12); border-color: var(--cream); color:#fff; }

.btn--ink { --btn-bg: var(--gulf-deep); --btn-fg: var(--cream); }
.btn--ink:hover { background: var(--gulf); color:#fff; }

.btn--outline {
  --btn-bg: transparent; --btn-fg: var(--gulf-deep);
  border-color: var(--gulf-deep);
}
.btn--outline:hover { background: var(--gulf-deep); color: var(--cream); }

.btn--sm { padding: 0.7rem 1.15rem; min-height: 42px; font-size: 0.85rem; }


/* =============================================================================
   7. HEADER / NAVIGATION
   ============================================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(14,67,63,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  color: var(--on-dark);
  border-bottom: 1px solid rgba(246,238,221,0.12);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

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

/* brand / logo */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none;
  color: var(--cream); }
/* Logo: the real swap point is the <img src> in the header/footer markup.
   See README → "Swapping the logo". The emblem is near-square, so it's sized
   taller than a typical wordmark lockup. */
.brand__logo { height: 60px; width: auto; }
.brand:hover { color: #fff; }

/* primary nav (desktop) */
.nav__menu { display: none; }       /* hidden on mobile, shown ≥1000px */
.nav__list { display: flex; align-items: center; gap: 0.35rem; list-style: none;
  margin: 0; padding: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-weight: 600; font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--on-dark); text-decoration: none;
  padding: 0.65rem 0.85rem; border-radius: 999px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav__link:hover, .nav__link:focus-visible { background: rgba(246,238,221,0.12); color:#fff; }
.nav__link[aria-current="page"] { color: var(--coral); }
.nav__link[aria-current="page"]::after,
.nav__item--current > .nav__link::after {
  content: ""; }

/* dropdown: On the Water */
.nav__item--has-menu { position: relative; }
.nav__toggle-caret { width: 10px; height: 10px; transition: transform var(--dur) var(--ease); }
.nav__item--has-menu:hover .nav__toggle-caret,
.nav__item--has-menu:focus-within .nav__toggle-caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
  background: var(--cream); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 0.5rem;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.nav__item--has-menu:hover .nav__dropdown,
.nav__item--has-menu:focus-within .nav__dropdown,
.nav__dropdown.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a {
  display: block; padding: 0.7rem 0.85rem; border-radius: var(--radius-sm);
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.95rem;
  text-transform: none; letter-spacing: 0;
}
.nav__dropdown a:hover { background: var(--sand); color: var(--gulf-deep); }
.nav__dropdown a span { display: block; font-weight: 400; font-size: 0.82rem;
  color: var(--ink-soft); text-transform: none; letter-spacing: 0; }

.nav__cta { display: none; }

/* hamburger */
.nav__burger {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 48px; height: 48px; padding: 12px; background: transparent;
  border: 1px solid rgba(246,238,221,0.35); border-radius: 10px; cursor: pointer;
}
.nav__burger span { display: block; height: 2px; width: 100%; background: var(--cream);
  border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px);
  background: var(--gulf-deep); color: var(--on-dark);
  z-index: var(--z-drawer);
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
  display: flex; flex-direction: column; padding: 1.5rem 1.25rem 2rem;
  overflow-y: auto; box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem; }
.drawer__close { background: transparent; border: 1px solid rgba(246,238,221,0.35);
  color: var(--cream); width: 44px; height: 44px; border-radius: 10px; cursor: pointer;
  font-size: 1.4rem; line-height: 1; }
.drawer__list { list-style: none; margin: 0; padding: 0; }
.drawer__list a { display: block; padding: 0.9rem 0.5rem; color: var(--cream);
  text-decoration: none; font-weight: 600; font-size: 1.1rem; letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(246,238,221,0.12); }
.drawer__list a[aria-current="page"] { color: var(--coral); }
.drawer__sub { list-style: none; margin: 0; padding: 0 0 0.5rem 1rem; }
.drawer__sub a { font-size: 0.98rem; font-weight: 500; padding: 0.6rem 0.5rem;
  color: var(--on-dark-soft); border-bottom: none; }
.drawer__group-label { padding: 0.9rem 0.5rem 0.2rem; font-family: var(--font-body);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem;
  color: var(--brass); }
.drawer .btn { margin-top: 1.5rem; }
.scrim {
  position: fixed; inset: 0; background: rgba(20,16,12,0.55); z-index: var(--z-header);
  opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur);
}
.scrim.is-open { opacity: 1; visibility: visible; }


/* =============================================================================
   8. FOOTER
   ============================================================================ */
.site-footer { background: var(--gulf-deep); color: var(--on-dark);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; position: relative; }
.site-footer a { color: var(--on-dark); }
.site-footer a:hover { color: var(--coral); }

.footer__grid { display: grid; gap: 2.5rem; }
.footer__brand .brand__logo { height: 150px; }
.footer__tag { font-family: var(--font-script); font-size: 1.6rem; color: var(--brass);
  margin-top: 0.5rem; }
.footer__col h4 { color: var(--cream); margin-bottom: 1rem; }
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: 0.55rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.footer__list svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--brass); }
.footer__phones a { display: block; font-weight: 600; }
.footer__phones span { color: var(--on-dark-soft); font-weight: 400; font-size: 0.85rem; }
.footer__map { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(246,238,221,0.15);
  min-height: 200px; }
.footer__map iframe { width: 100%; height: 100%; min-height: 200px; border: 0; display: block; }

.footer__social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer__social a { display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid rgba(246,238,221,0.25); color: var(--cream); }
.footer__social a:hover { background: var(--coral); border-color: var(--coral); color:#fff; }
.footer__social svg { width: 20px; height: 20px; }

.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(246,238,221,0.15); display: flex; flex-wrap: wrap;
  gap: 0.5rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: var(--on-dark-soft); }
.footer__bottom nav { display: flex; gap: 1rem; flex-wrap: wrap; }


/* =============================================================================
   9. HERO
   ============================================================================ */
.hero { position: relative; min-height: min(88vh, 760px);
  display: grid; align-items: end; overflow: hidden;
  color: var(--cream); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {            /* legibility wash + warm coastal tone */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,67,63,0.25) 0%, rgba(14,67,63,0.05) 35%, rgba(20,16,12,0.78) 100%),
    linear-gradient(90deg, rgba(20,16,12,0.45), transparent 60%);
}
.hero__inner { padding-block: clamp(3rem, 8vw, 6rem); }
.hero__badge { margin-bottom: 1.2rem; }
.hero__logo { height: clamp(96px, 14vw, 150px); width: auto; margin-bottom: 1rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.45)); }
.hero h1 { font-size: clamp(1.85rem, 0.6rem + 4.9vw, 4.5rem); max-width: none; line-height: 1.06; }
.hero h1 br { display: block; }
.hero__payoff { color: var(--coral); display: inline-block; margin-top: 0.12em; }
.hero__sub { font-size: clamp(1.05rem, 0.9rem + 1vw, 1.4rem); max-width: 40ch;
  margin-top: 1.1rem; color: var(--on-dark); font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }

/* compact page hero (interior pages) */
.page-hero { position: relative; color: var(--cream); overflow: hidden;
  display: grid; align-items: center; min-height: clamp(280px, 42vw, 460px); isolation: isolate; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,67,63,0.5), rgba(20,16,12,0.72)); }
.page-hero__inner { padding-block: clamp(2.5rem, 5vw, 4rem); }
.page-hero h1 { font-size: var(--fs-h1); color: var(--cream);
  text-shadow: 0 1px 0 rgba(0,0,0,0.22), 0 0.05em 0.05em rgba(0,0,0,0.3); }
.page-hero p { color: var(--on-dark); margin-top: 0.8rem; font-size: var(--fs-lg);
  max-width: 50ch; text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.page-hero--gulf { background: var(--gulf-deep); }     /* fallback when no image */
.breadcrumbs { font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--on-dark-soft); margin-bottom: 0.8rem; }
.breadcrumbs a { color: var(--brass); text-decoration: none; }
.breadcrumbs a:hover { color: var(--cream); }


/* =============================================================================
   10. REUSABLE SECTION BLOCKS
   ============================================================================ */

/* split: image + text */
.split { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md);
  aspect-ratio: 4/3; object-fit: cover; }
.split__media--tall img { aspect-ratio: 3/4; }
.split .est-badge { position: absolute; bottom: -28px; right: -10px; }

/* Real-logo medallion overlapping split images (replaces the old EST badge) */
.logo-medallion {
  position: absolute; bottom: -22px; right: -12px;
  width: clamp(92px, 10vw, 116px); aspect-ratio: 1;
  display: grid; place-items: center; padding: 18px;
  background: var(--cream); border: 3px solid var(--brass); border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.logo-medallion img { width: 100%; height: auto; }

/* three-business cards */
.biz-cards { display: grid; gap: clamp(1.25rem, 3vw, 1.75rem); }
.biz-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 360px; display: grid; align-items: end; color: var(--cream);
  text-decoration: none; box-shadow: var(--shadow-md); isolation: isolate;
}
.biz-card img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2; transition: transform 600ms var(--ease); }
.biz-card::after { content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,67,63,0.05) 30%, rgba(20,16,12,0.85)); }
.biz-card:hover img { transform: scale(1.05); }
.biz-card__body { padding: 1.5rem; }
.biz-card__body h3 { color: var(--cream); }
.biz-card__body p { color: var(--on-dark); font-size: 0.96rem; margin-top: 0.4rem; }
.biz-card__more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem;
  color: var(--brass); }
.biz-card:hover .biz-card__more { color: var(--coral); }

/* feature cards (icons + text) */
.features { display: grid; gap: clamp(1.25rem, 3vw, 1.75rem); }
.feature { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); }
.section--gulf .feature { background: rgba(246,238,221,0.06); border-color: rgba(246,238,221,0.16); }
.section--gulf .feature p { color: var(--on-dark-soft); }
.feature__icon { width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 12px; background: var(--coral); color: #fff; margin-bottom: 1rem; }
.section--gulf .feature__icon { background: var(--brass); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: 0.02em; }
.section--gulf .feature h3 { color: var(--cream); }

/* big call-to-action band */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; color: var(--cream); }
.cta-band .hero__cta { justify-content: center; }
/* CTA band on a light (sand/cream) section needs dark text, not cream.
   Note: section--sand and cta-band sit on the SAME element → compound selector. */
.section--sand.cta-band h2, .section--cream.cta-band h2 { color: var(--ink); }
.section--sand.cta-band .lead, .section--cream.cta-band .lead { color: var(--ink-soft); }

/* info / fact strip */
.fact-strip { display: grid; gap: 1.5rem; text-align: center; }
.fact { }
.fact__num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--coral); line-height: 1; }
.section--gulf .fact__num { color: var(--brass); }
.fact__label { font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.82rem; margin-top: 0.4rem; }

/* pull-quote */
.pull-quote { border-left: 4px solid var(--coral); padding-left: 1.5rem;
  font-family: var(--font-script); font-size: clamp(1.6rem, 1rem + 2.6vw, 2.6rem);
  line-height: 1.2; color: var(--gulf-deep); max-width: 22ch; }
.section--gulf .pull-quote { color: var(--cream); border-color: var(--brass); }


/* =============================================================================
   11. MENUS
   ============================================================================ */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  margin-bottom: 2.5rem; }
.menu-tab {
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.7rem 1.25rem; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--gulf-deep);
  border: 2px solid var(--line); text-decoration: none;
  transition: all var(--dur) var(--ease);
}
.menu-tab:hover { border-color: var(--gulf); color: var(--gulf); }
.menu-tab[aria-selected="true"], .menu-tab.is-active {
  background: var(--gulf-deep); color: var(--cream); border-color: var(--gulf-deep); }

.menu-cats { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 760px) { .menu-cats { grid-template-columns: 1fr 1fr; column-gap: 3.5rem; } }

.menu-cat { break-inside: avoid; }
.menu-cat__title { font-family: var(--font-display); font-size: var(--fs-h3);
  color: var(--gulf-deep); display: flex; align-items: baseline; gap: 0.75rem; }
.menu-cat__title::after { content:""; flex: 1; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 10px); }
.menu-cat__note { font-size: 0.92rem; color: var(--ink-soft); font-style: italic;
  margin: 0.5rem 0 1rem; }

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-item { padding: 0.7rem 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item__row { display: flex; gap: 0.75rem; align-items: baseline;
  justify-content: space-between; }
.menu-item__name { font-weight: 700; color: var(--ink); }
.menu-item__tag { font-family: var(--font-script); font-size: 1.1rem; color: var(--coral);
  margin-left: 0.4rem; }
.menu-item__dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px);
  min-width: 1.5rem; }
.menu-item__price { font-weight: 800; color: var(--gulf-deep); white-space: nowrap;
  font-variant-numeric: tabular-nums; }
.menu-item__desc { color: var(--ink-soft); font-size: 0.94rem; margin-top: 0.15rem;
  max-width: 60ch; }

.menu-notices { margin-top: 3rem; background: var(--sand); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.75rem; }
.menu-notices h4 { color: var(--gulf-deep); margin-bottom: 0.6rem; }
.menu-notices p { font-size: 0.9rem; color: var(--ink-soft); }
.menu-notices ul { margin: 0; padding-left: 1.1rem; font-size: 0.9rem; color: var(--ink-soft); }
.menu-notices li { margin-bottom: 0.3rem; }


/* =============================================================================
   12. GALLERIES / APPAREL / LIGHTBOX
   ============================================================================ */
.gallery-grid { columns: 2; column-gap: 0.9rem; }
@media (min-width: 700px)  { .gallery-grid { columns: 3; column-gap: 1rem; } }
@media (min-width: 1100px) { .gallery-grid { columns: 4; } }
.gallery-grid figure { break-inside: avoid; margin: 0 0 0.9rem; }
.gallery-item {
  display: block; width: 100%; border: none; padding: 0; cursor: pointer;
  background: var(--sand); border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative;
}
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 500ms var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,67,63,0.35));
  opacity: 0; transition: opacity var(--dur) var(--ease); }
.gallery-item:hover::after { opacity: 1; }

/* apparel lookbook */
.apparel-grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.apparel-card { background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.apparel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.apparel-card__img { aspect-ratio: 1/1; background: #fff; display: grid; place-items: center; }
.apparel-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 0.5rem; }
.apparel-card__body { padding: 0.9rem 1.1rem 1.2rem; }
.apparel-card__body h3 { font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  text-transform: none; letter-spacing: 0; line-height: 1.3; }
.apparel-card__body p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.2rem; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: var(--z-lightbox);
  background: rgba(14,16,15,0.92); display: grid; place-items: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur); }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: min(94vw, 1200px); max-height: 84vh; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); }
.lightbox__cap { color: var(--on-dark-soft); text-align: center; margin-top: 0.8rem;
  font-size: 0.9rem; }
.lightbox__btn { position: absolute; background: rgba(246,238,221,0.12); border: 1px solid rgba(246,238,221,0.3);
  color: var(--cream); width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: 1.5rem; transition: background var(--dur) var(--ease); }
.lightbox__btn:hover { background: var(--coral); border-color: var(--coral); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox__prev { left: 0.5rem; } .lightbox__next { right: 0.5rem; }
}


/* =============================================================================
   13. CONTACT / INFO / HOURS
   ============================================================================ */
.info-cards { display: grid; gap: 1.25rem; }
.info-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm); }
.info-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.03em; display: flex; align-items: center; gap: 0.6rem; }
.info-card h3 svg { width: 22px; height: 22px; color: var(--coral); }
.info-card a { font-weight: 600; color: var(--gulf-deep); }
.info-card a:hover { color: var(--coral); }
/* the "Call" card reuses .footer__phones on a light card — keep the — Grill / — Captain Matt
   labels dark and readable (the footer version is light for the dark footer) */
.info-card .footer__phones span { color: var(--ink-soft); font-weight: 500; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td { padding: 0.5rem 0; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--gulf-deep); }
.hours-table tr:last-child td { border-bottom: none; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }


/* =============================================================================
   14. PLACEHOLDER BOXES (for assets not yet supplied)
   ============================================================================ */
.ph-box {
  display: grid; place-items: center; text-align: center; gap: 0.4rem;
  background:
    repeating-linear-gradient(45deg, rgba(213,85,60,0.06) 0 14px, transparent 14px 28px),
    var(--sand);
  border: 2px dashed var(--coral); border-radius: var(--radius);
  color: var(--coral-deep); padding: 2rem; min-height: 220px; aspect-ratio: 4/3;
}
.ph-box__label { font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.78rem; }
.ph-box__desc { color: var(--ink-soft); font-size: 0.85rem; max-width: 34ch; }
.ph-box svg { width: 40px; height: 40px; opacity: 0.6; }

/* inline "[PLACEHOLDER — confirm with owner]" copy tag */
.ph-tag { display: inline-block; background: rgba(213,85,60,0.12); color: var(--coral-deep);
  border: 1px solid rgba(213,85,60,0.4); border-radius: 6px; padding: 0.05em 0.5em;
  font-size: 0.82em; font-weight: 700; letter-spacing: 0.01em; }


/* =============================================================================
   15. MOTION / REVEAL-ON-SCROLL
   ============================================================================ */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-visible { opacity: 1; transform: none;
  transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal[data-delay="1"].is-visible { transition-delay: 90ms; }
.reveal[data-delay="2"].is-visible { transition-delay: 180ms; }
.reveal[data-delay="3"].is-visible { transition-delay: 270ms; }
.reveal[data-delay="4"].is-visible { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .biz-card img, .gallery-item img, .apparel-card { transition: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}


/* =============================================================================
   16. RESPONSIVE (mobile-first → scale up)
   ============================================================================ */
@media (min-width: 700px) {
  .biz-cards   { grid-template-columns: repeat(3, 1fr); }
  .features    { grid-template-columns: repeat(2, 1fr); }
  .fact-strip  { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .apparel-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards  { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .nav__burger { display: none; }
  .nav__menu   { display: flex; align-items: center; gap: 1rem; }
  .nav__cta    { display: inline-flex; }
  .split       { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .features--3 { grid-template-columns: repeat(3, 1fr); }
  .apparel-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; }
}

@media (min-width: 1200px) {
  .apparel-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================================
   17. CHARTERS / TRIPS / BOOKING (added in content fill-in)
   ============================================================================ */

/* let menu-list price rows live inside cards and on dark sections */
.feature .menu-list { margin-top: 1rem; }
.feature .menu-cat__note { margin-top: 0; }
.section--gulf .menu-item { border-bottom-color: rgba(246,238,221,0.18); }
.section--gulf .menu-item__name { color: var(--cream); }
.section--gulf .menu-item__price { color: var(--brass); }
.section--gulf .menu-item__desc { color: var(--on-dark-soft); }
.section--gulf .menu-item__dots { border-bottom-color: rgba(246,238,221,0.28); }

/* trip card meta line (boat / capacity) */
.trip-meta { font-weight: 700; color: var(--gulf); font-size: 0.86rem;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.section--gulf .trip-meta { color: var(--brass); }

/* checklist (what's included) */
.checklist { list-style: none; margin: 1rem 0; padding: 0; display: grid; gap: 0.6rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; }
.checklist li svg { width: 22px; height: 22px; flex: none; color: var(--coral); margin-top: 2px; }
.section--gulf .checklist li svg { color: var(--brass); }

/* captains line */
.captains { font-weight: 600; }

/* FareHarbor booking embed */
.booking-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-md); background: #fff; }
.booking-embed iframe { width: 100%; height: 820px; min-height: 760px; border: 0; display: block; }
@media (max-width: 640px) { .booking-embed iframe { height: 900px; } }

/* utilities */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--ink-soft); }
.nowrap { white-space: nowrap; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
