/* ==========================================================================
   NorthRun Fishing — Kenai Peninsula guide
   Palette + type derived from Brandon's logo: navy, sage/olive, slate-steel,
   paper white. Classic badge-brand feel, light/dark section rhythm.
   ========================================================================== */

:root {
  /* brand color (sampled from logo) */
  --navy:        #1E3848;   /* NORTHRUN ink, dark sections */
  --navy-deep:   #142734;
  --navy-card:   #1B3443;
  --sage:        #6E7A4D;   /* "FISHING" olive */
  --sage-bright: #8C9A5E;   /* accent / action */
  --sage-go:     #9CAB66;
  --steel:       #5E8197;   /* water, mountains */
  --steel-light: #9DB6C2;   /* KENAI RIVER */
  --paper:       #F4F2EB;   /* light sections */
  --paper-2:     #EBE7DC;
  --paper-card:  #FFFFFF;

  /* type */
  --display: "Saira Condensed", "Arial Narrow", sans-serif;
  --body:    "Archivo", system-ui, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

  /* metrics */
  --wrap: 1140px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 5px;

  /* adaptive (overridden per section) */
  --ink: var(--paper);
  --muted: var(--steel-light);
  --hair: rgba(244,242,235,.14);
  --card: var(--navy-card);
}

/* reset ------------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--navy);
  color: var(--paper);
  line-height: 1.62;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.07rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--sage-go); outline-offset: 3px; border-radius: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--sage); color: #fff; padding: .6rem 1rem; font-weight: 700; }
.skip:focus { left: 1rem; top: 1rem; }

/* section themes ---------------------------------------------------------- */
section { padding-block: clamp(4rem, 3rem + 5vw, 7.5rem); position: relative; }
.s-dark   { background: var(--navy);      --ink: var(--paper); --muted:#9FB2BB; --hair: rgba(244,242,235,.14); --card: var(--navy-card); color: var(--ink); }
.s-darker { background: var(--navy-deep); --ink: var(--paper); --muted:#90A6B0; --hair: rgba(244,242,235,.12); --card: var(--navy-card); color: var(--ink); }
.s-light  { background: var(--paper);     --ink: var(--navy);  --muted:#5A6B70; --hair: rgba(30,56,72,.15);   --card: var(--paper-card); color: var(--ink); }
.s-light2 { background: var(--paper-2);   --ink: var(--navy);  --muted:#5A6B70; --hair: rgba(30,56,72,.15);   --card: var(--paper-card); color: var(--ink); }

/* shared type ------------------------------------------------------------- */
.eyebrow {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--sage-bright);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content:""; width: 1.7rem; height: 2px; background: var(--sage); display: inline-block; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; line-height: 1; letter-spacing: .005em; text-transform: uppercase; }
h2 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.7rem); color: var(--ink); }
h2 em { font-style: normal; color: var(--sage-bright); }
.lede { color: var(--muted); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem); max-width: 54ch; font-family: var(--body); text-transform: none; line-height: 1.55; }
.section-head { max-width: 48ch; }
.section-head h2 { margin-top: 1rem; }

/* buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-weight: 700; font-size: .96rem;
  padding: .95rem 1.6rem; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  line-height: 1;
}
.btn-primary { background: var(--sage); color: #fff; }
.btn-primary:hover { background: var(--sage-go); transform: translateY(-2px); }
.btn-ink { background: var(--navy); color: var(--paper); }
.btn-ink:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-ghost { border-color: currentColor; color: var(--ink); opacity: .85; }
.btn-ghost:hover { opacity: 1; border-color: var(--sage-bright); color: var(--sage-bright); transform: translateY(-2px); }
.btn svg { width: 1.05em; height: 1.05em; }

/* header ------------------------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center;
  padding-block: 1.1rem; transition: background .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(20,39,52,.86); backdrop-filter: blur(12px); border-bottom-color: rgba(244,242,235,.12); padding-block: .65rem; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* wordmark (matches logo lockup) */
.brand { display: flex; flex-direction: column; line-height: .95; }
.brand .mark { font-family: var(--display); font-weight: 700; font-size: 1.6rem; letter-spacing: .01em; color: var(--paper); }
.brand .mark b { font-weight: 700; }
.brand .row2 { display: flex; align-items: center; gap: .5rem; margin-top: .25rem; }
.brand .fishing { font-family: var(--display); font-weight: 600; font-size: .82rem; letter-spacing: .42em; color: var(--sage-bright); }
.brand .tag { font-family: var(--mono); font-size: .54rem; letter-spacing: .26em; color: var(--steel-light); text-transform: uppercase; }
.brand .row2::before, .brand .row2 .fishing::after { content:""; }

.header-cta { display: flex; align-items: center; gap: 1.25rem; }
.header-phone { font-family: var(--mono); font-size: .9rem; color: var(--paper); letter-spacing: .02em; }
.header-phone:hover { color: var(--sage-go); }
@media (max-width: 760px){ .header-phone { display: none; } .brand .mark { font-size: 1.35rem; } }

/* hero — full-bleed photo */
.hero { min-height: 100svh; display: flex; align-items: flex-end; padding-bottom: clamp(2rem,5vw,4rem); padding-top: 8rem; overflow: hidden; background: var(--navy-deep); position: relative; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::after {
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,39,52,.15) 0%, rgba(20,39,52,.35) 55%, rgba(20,39,52,.92) 100%),
    linear-gradient(90deg, rgba(20,39,52,.6) 0%, rgba(20,39,52,.1) 55%, transparent 100%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero__inner { max-width: 62rem; }
.hero h1 { font-size: clamp(3.2rem, 2rem + 8vw, 8rem); font-weight: 700; margin-top: 1.4rem; letter-spacing: .005em; color: var(--paper); line-height: .92; }
.hero h1 em { font-style: normal; color: var(--sage-go); }
.hero__sub { margin-top: 1.7rem; color: var(--steel-light); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }

.runline { margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid rgba(244,242,235,.14); display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.runline div { padding: 1.1rem 1rem 0; }
.runline dt { font-family: var(--mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-bright); }
.runline dd { font-size: .92rem; margin-top: .35rem; color: var(--paper); }
@media (max-width: 720px){ .runline { grid-template-columns: repeat(2,1fr); } }

/* intro ------------------------------------------------------------------- */
.intro__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.intro p { font-size: clamp(1.25rem, 1rem + 1.1vw, 1.85rem); font-family: var(--display); font-weight: 500; line-height: 1.18; color: var(--ink); text-transform: none; }
.intro p strong { color: var(--sage); font-weight: 600; }
.intro__aside { font-family: var(--mono); font-size: .82rem; color: var(--muted); border-left: 2px solid var(--sage); padding-left: 1.4rem; line-height: 1.95; }
.intro__aside b { color: var(--steel); font-weight: 700; display: block; letter-spacing: .12em; text-transform: uppercase; font-size: .68rem; margin-bottom: .4rem; }
@media (max-width: 820px){ .intro__grid { grid-template-columns: 1fr; } }

/* trips ------------------------------------------------------------------- */
.trips__top { display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem,4vw,3.5rem); }
.trip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 760px){ .trip-grid { grid-template-columns: 1fr; } }
.trip {
  position: relative; border: 1px solid var(--hair); border-radius: var(--radius);
  background: var(--card); overflow: hidden; display: flex; flex-direction: column; min-height: 22rem;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.trip:hover { border-color: var(--sage); transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(20,39,52,.5); }
.trip__art { height: 11rem; position: relative; overflow: hidden; border-bottom: 1px solid var(--hair); background: var(--navy-deep); }
.trip__art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.trip__num { position: absolute; top: .9rem; right: 1.1rem; font-family: var(--mono); font-size: .7rem; color: var(--steel-light); letter-spacing: .15em; z-index: 2; }
.trip__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.trip h3 { font-size: 1.7rem; color: var(--ink); }
.trip__season { font-family: var(--mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); margin-top: .6rem; }
.trip p { color: var(--muted); margin-top: .9rem; font-size: .95rem; flex: 1; }
.trip__link { margin-top: 1.3rem; font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; color: var(--ink); display: inline-flex; align-items: center; gap: .5rem; }
.trip__link::after { content:"\2192"; transition: transform .2s ease; color: var(--sage); }
.trip:hover .trip__link::after { transform: translateX(4px); }

/* run timing (signature) -------------------------------------------------- */
.runs__head { display:flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.gauge { border: 1px solid var(--hair); border-radius: var(--radius); overflow: hidden; background: rgba(0,0,0,.15); font-family: var(--mono); }
.gauge__inner { min-width: 0; }
.gauge__row { display: grid; grid-template-columns: 10rem repeat(6, 1fr); border-top: 1px solid var(--hair); }
.gauge__row:first-child { border-top: 0; }
.gauge__row.head { background: rgba(0,0,0,.18); }
.gauge__row.head span { color: var(--steel-light); font-size: .7rem; letter-spacing: .12em; }
.gauge__label, .gauge__cell, .gauge__row.head span { padding: .85rem .6rem; display: flex; align-items: center; justify-content: center; text-align: center; }
.gauge__label { justify-content: flex-start; text-align: left; font-family: var(--body); font-weight: 700; font-size: .84rem; color: var(--ink); border-right: 1px solid var(--hair); line-height: 1.12; text-transform: none; }
.gauge__cell { border-right: 1px solid var(--hair); position: relative; font-size: .58rem; letter-spacing: .08em; color: transparent; }
.gauge__cell:last-child { border-right: 0; }
.gauge__cell .bar { position: absolute; inset: 26% 8%; border-radius: 2px; }
.gauge__cell.avail .bar { background: rgba(94,129,151,.34); border: 1px solid rgba(157,182,194,.5); }
.gauge__cell.peak  .bar { background: var(--sage-go); box-shadow: 0 0 14px rgba(140,154,94,.5); }
.gauge__cell.peak  { color: #15200f; font-weight: 700; }
.gauge__cell.peak span { position: relative; z-index: 1; }
.gauge__legend { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.25rem; font-family: var(--mono); font-size: .72rem; color: var(--muted); letter-spacing: .04em; }
.gauge__legend i { width: .9rem; height: .9rem; display: inline-block; border-radius: 2px; vertical-align: -1px; margin-right: .45rem; }
.gauge__legend .i-peak { background: var(--sage-go); }
.gauge__legend .i-avail { background: rgba(94,129,151,.34); border: 1px solid rgba(157,182,194,.5); }
.gauge__note { margin-top: 1.1rem; font-size: .82rem; color: var(--muted); max-width: 62ch; }
.gauge__note a { color: var(--steel-light); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px){ .gauge { overflow-x: auto; } .gauge__inner { min-width: 620px; } }

/* included ---------------------------------------------------------------- */
.kit__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
@media (max-width: 760px){ .kit__grid { grid-template-columns: 1fr; } }
.kit__col { border: 1px solid var(--hair); border-radius: var(--radius); padding: 2rem; background: var(--card); }
.kit__col h3 { font-size: 1.5rem; display: flex; align-items: center; gap: .7rem; color: var(--ink); }
.kit__col h3 .tag { font-family: var(--mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; padding: .3rem .55rem; border-radius: 999px; }
.kit__col.inc h3 .tag { background: rgba(110,122,77,.18); color: var(--sage); }
.kit__col.bring h3 .tag { background: rgba(94,129,151,.18); color: var(--steel); }
.kit__col li { padding: .7rem 0; border-top: 1px solid var(--hair); color: var(--muted); display: flex; gap: .7rem; align-items: flex-start; font-size: .96rem; }
.kit__col li:first-of-type { border-top: 0; }
.kit__col li::before { content:""; flex: none; width: .5rem; height: .5rem; margin-top: .55rem; border-radius: 50%; background: var(--steel); }
.kit__col.inc li::before { background: var(--sage); }

/* why --------------------------------------------------------------------- */
.why__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.why .pull { font-family: var(--display); font-size: clamp(1.6rem,1.1rem+1.8vw,2.4rem); color: var(--ink); line-height: 1.08; text-transform: uppercase; }
.why .pull em { font-style: normal; color: var(--sage-go); }
.why p { color: var(--muted); margin-top: 1.3rem; font-size: 1.06rem; }
.guide-card { border: 1px solid var(--hair); border-radius: var(--radius); background: var(--card); padding: 2rem; position: relative; overflow: hidden; }
.guide-card__art { height: 12.5rem; border-radius: var(--radius); overflow: hidden; margin: -2rem -2rem 1.6rem; border-bottom: 1px solid var(--hair); position: relative; background: var(--paper); }
.guide-card__art img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }
.guide-card .name { font-family: var(--display); font-size: 1.7rem; color: var(--ink); }
.guide-card .role { font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); margin-top: .45rem; }
.guide-card .bio { color: var(--muted); margin-top: 1rem; font-size: .95rem; }

/* faq --------------------------------------------------------------------- */
.faq__grid { margin-top: 3rem; border-top: 1px solid var(--hair); }
.faq details { border-bottom: 1px solid var(--hair); }
.faq summary { cursor: pointer; list-style: none; padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 2rem; font-family: var(--display); font-size: clamp(1.2rem,1rem+.6vw,1.55rem); align-items: center; color: var(--ink); text-transform: uppercase; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content:"+"; font-family: var(--mono); color: var(--sage); font-size: 1.5rem; flex: none; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); padding-bottom: 1.5rem; max-width: 72ch; }
.faq a { color: var(--steel); text-decoration: underline; text-underline-offset: 3px; }

/* booking band ------------------------------------------------------------ */
.book { text-align: center; background: radial-gradient(80% 130% at 50% 0%, rgba(94,129,151,.25), transparent 60%), var(--navy); }
.book h2 { margin-inline: auto; max-width: 18ch; }
.book .lede { margin: 1.2rem auto 0; text-align: center; }
.book__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2.3rem; }
.book__meta { font-family: var(--mono); font-size: .82rem; color: var(--steel-light); margin-top: 2.2rem; letter-spacing: .03em; display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.book__meta a:hover { color: var(--sage-go); }

/* footer ------------------------------------------------------------------ */
.site-footer { background: var(--navy-deep); border-top: 1px solid rgba(244,242,235,.1); padding-block: clamp(3rem,5vw,4.5rem) 2.5rem; color: var(--paper); }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 760px){ .foot__grid { grid-template-columns: 1fr; gap: 2rem; } }
.foot__grid h4 { font-family: var(--mono); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-bright); margin-bottom: 1rem; font-weight: 400; }
.foot__grid p, .foot__grid a { color: var(--steel-light); font-size: .92rem; line-height: 1.9; }
.foot__grid a:hover { color: var(--paper); }
.foot__brand .mark { font-family: var(--display); font-size: 1.8rem; font-weight: 700; color: var(--paper); text-transform: uppercase; }
.foot__brand .mark em { font-style: normal; color: var(--sage-bright); }
.foot__brand p { margin-top: .8rem; max-width: 36ch; }
.foot__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(244,242,235,.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-family: var(--mono); font-size: .72rem; color: var(--steel-light); letter-spacing: .04em; }

/* mobile sticky call ------------------------------------------------------ */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom)); background: rgba(20,39,52,.94); backdrop-filter: blur(12px); border-top: 1px solid rgba(244,242,235,.12); }
.callbar .btn { width: 100%; justify-content: center; }
@media (max-width: 760px){ .callbar { display: block; } body { padding-bottom: 4.5rem; } }

/* reveal ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .trip:hover { transform: none; }
  .g-item:hover img { transform: none; }
}

/* ==========================================================================
   Revisions — photos, accessible gauge table, gallery, scenic band, a11y
   ========================================================================== */

.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;
}

/* fixed header offset for anchor jumps */
[id] { scroll-margin-top: 5.5rem; }

/* hero photo via CSS (preloaded in head for LCP) */
.hero__bg { background-image: url('assets/brandon-hero.jpg'); background-size: cover; background-position: 50% 15%; }

/* eyebrow contrast on light sections */
.s-light .eyebrow, .s-light2 .eyebrow { color: var(--sage); }
.s-light .eyebrow::before, .s-light2 .eyebrow::before { background: var(--sage); }

/* intro */
.intro p.intro__fact { font-family: var(--body); font-size: .95rem; color: var(--muted); margin-top: 1.4rem; max-width: 60ch; line-height: 1.7; font-weight: 400; }
.intro p.intro__fact a { color: var(--sage); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.intro__aside div { margin-bottom: 1.1rem; }
.intro__aside div:last-child { margin-bottom: 0; }

/* trip cards: real photos + call button */
.trip__art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.trip__art::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(20,39,52,0) 55%, rgba(20,39,52,.35) 100%); }
.trip__cta { margin-top: 1.4rem; align-self: flex-start; }

/* guide photo fills its frame */
.guide-card__art { background: var(--navy-deep); }
.guide-card__art img { width: 100%; height: 100%; object-fit: cover; padding: 0; object-position: 50% 22%; }

/* why: mobile */
@media (max-width: 820px){ .why__grid { grid-template-columns: 1fr; } }
.why .pull { margin-top: 1rem; }

/* faq: sentence-case summaries so they don't compete with H2/H3 */
.faq summary { text-transform: none; }

/* ---- run-timing gauge as accessible table ---- */
.gauge-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--hair); border-radius: var(--radius); }
table.gauge { width: 100%; min-width: 640px; border-collapse: collapse; margin: 0; border: 0; border-radius: 0; background: transparent; font-family: var(--mono); }
.gauge th, .gauge td { border: 1px solid var(--hair); padding: .8rem .5rem; text-align: center; font-weight: 400; }
.gauge thead th { font-size: .7rem; letter-spacing: .1em; color: var(--ink); text-transform: uppercase; background: rgba(20,39,52,.07); }
.s-darker .gauge thead th { background: rgba(0,0,0,.22); }
.gauge th.g-species { text-align: left; font-family: var(--body); font-weight: 700; font-size: .84rem; color: var(--ink); text-transform: none; width: 10rem; }
.gauge thead th.g-species { font-family: var(--mono); font-weight: 400; font-size: .7rem; text-transform: uppercase; color: var(--ink); }
.gauge th.g-species small { display: block; font-family: var(--mono); font-weight: 400; font-size: .6rem; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; margin-top: .15rem; }
.gauge tbody th.g-species { position: sticky; left: 0; background: var(--card); z-index: 1; }
.gauge td { position: relative; }
.gauge td .bar { display: block; height: .8rem; width: 72%; margin: 0 auto; border-radius: 3px; }
.gauge td.avail .bar { background: rgba(94,129,151,.32); border: 1px solid rgba(94,129,151,.6); }
.gauge td.peak { background: var(--sage-go); color: #15200f; font-weight: 700; }
.gauge td.peak .lbl { font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; }

/* ---- scenic full-bleed band ---- */
.scenic { position: relative; display: flex; align-items: center; min-height: 46vh; overflow: hidden; padding-block: clamp(4rem,8vw,7rem); background: var(--navy-deep); }
.scenic__bg { position: absolute; inset: 0; background-image: linear-gradient(180deg, rgba(20,39,52,.5), rgba(20,39,52,.72)), url('assets/drift-boat.jpg'); background-size: cover; background-position: center; }
.scenic__inner { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.scenic__kicker { font-family: var(--display); text-transform: uppercase; color: var(--paper); font-size: clamp(1.7rem,1.2rem+2.6vw,3.2rem); letter-spacing: .01em; line-height: 1.04; max-width: 18ch; }

/* ---- gallery ---- */
/* uniform grid — every tile the same size */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.g-item { margin: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--hair); aspect-ratio: 4 / 3; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.04); }
@media (max-width: 820px){ .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px){ .book { padding-bottom: 6rem; } }
@media (max-width: 460px){ .gallery__grid { grid-template-columns: 1fr; } }

/* trip card banners: keep subjects in frame */
.trip__art img { object-position: center 42%; }
#trip-combo .trip__art img { object-position: center 28%; }
#trip-trout .trip__art img { object-position: center 55%; }
