/* =====================================================================
   HOOKED REEL GOOD — STYLES
   ---------------------------------------------------------------------
   Brand colors live in :root below. Change a color once here and it
   updates across the entire site.
   ===================================================================== */

/* ---------- Fonts (self-hosted in /fonts — no outside requests) ---------- */
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/barlow-condensed-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/barlow-condensed-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/barlow-condensed-latin-800-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/inter-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/inter-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/inter-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/inter-latin-700-normal.woff2") format("woff2"); }

/* ---------- Brand tokens ---------- */
:root {
  /* BRAND COLORS — match "--navy" to your logo's exact navy if needed */
  --navy:        #04234e;
  --navy-deep:   #021833;
  --navy-soft:   #163c72;
  --white:       #ffffff;
  --slate:       #56657a;
  --slate-light: #8a97a8;
  --mist:        #eef1f5;
  --stone:       #f6f5f1;
  --tan:         #d7b77f;   /* primary "Book" button color */
  --tan-deep:    #c49e5e;
  --tan-soft:    #efe6d3;
  --forest:      #3f5247;
  --line:        #dde2e9;
  --ink:         #1a2433;

  --font-display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(10, 26, 51, .06), 0 2px 8px rgba(10, 26, 51, .06);
  --shadow-md: 0 6px 24px rgba(10, 26, 51, .12);
  --shadow-lg: 0 18px 48px rgba(10, 26, 51, .22);

  --header-h: 84px;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 32px);
  --section-y: clamp(64px, 9vw, 120px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--navy-soft); text-underline-offset: 3px; }
a:hover { color: var(--navy); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: .01em; color: var(--navy); margin: 0 0 .45em; text-transform: uppercase; }
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.75rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

:focus-visible { outline: 3px solid var(--tan); outline-offset: 3px; border-radius: 3px; }
.section--navy :focus-visible, .site-footer :focus-visible, .hero :focus-visible { outline-color: #fff; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: var(--radius);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }
.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; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 860px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy); --btn-fg: #fff; --btn-bd: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 52px; padding: .8em 1.7em;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .08em; text-transform: uppercase; line-height: 1;
  color: var(--btn-fg); background: var(--btn-bg); border: 2px solid var(--btn-bd); border-radius: var(--radius);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn--book { --btn-bg: var(--tan); --btn-fg: var(--navy-deep); --btn-bd: var(--tan); }
.btn--book:hover { --btn-bg: #e2c48f; --btn-bd: #e2c48f; }
.btn--navy { --btn-bg: var(--navy); --btn-fg: #fff; --btn-bd: var(--navy); }
.btn--navy:hover { --btn-bg: var(--navy-soft); --btn-bd: var(--navy-soft); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: var(--navy); }
.btn--outline:hover { --btn-bg: var(--navy); --btn-fg: #fff; }
.btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.75); }
.btn--ghost:hover { --btn-bg: #fff; --btn-fg: var(--navy); --btn-bd: #fff; }
.btn--lg { min-height: 60px; font-size: 1.3rem; padding: .85em 2em; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row--center { justify-content: center; }
.text-link { font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: var(--navy); display: inline-flex; align-items: center; gap: .4em; }
.text-link::after { content: "→"; transition: transform .2s var(--ease); }
.text-link:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
@supports (backdrop-filter: blur(8px)) { .site-header { background: rgba(255,255,255,.9); backdrop-filter: saturate(1.4) blur(10px); } }
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(10,26,51,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand img { height: 64px; width: auto; max-width: 240px; object-fit: contain; }

.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: clamp(10px, 1.6vw, 26px); }
.main-nav a {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; padding: 8px 2px; position: relative; white-space: nowrap;
}
.main-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; background: var(--tan); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.main-nav a:not(.btn):hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav .btn { min-height: 46px; padding: .6em 1.3em; font-size: 1.05rem; margin-left: 6px; }

.nav-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center; color: var(--navy);
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: transform .25s var(--ease), background-color .2s; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -7px; } .nav-toggle-bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }
.header-book { display: none; }

@media (max-width: 1080px) {
  :root { --header-h: 72px; }
  .brand img { height: 56px; max-width: 170px; }
  .nav-toggle { display: inline-flex; }
  .header-book { display: inline-flex; min-height: 44px; padding: .55em 1em; font-size: 1rem; margin-left: auto; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
    background: var(--navy-deep);
    padding: 28px var(--gutter) 40px; overflow-y: auto;
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
  }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .main-nav li:last-child { border: 0; padding-top: 22px; }
  .main-nav a { display: block; color: #fff; font-size: 1.6rem; padding: 16px 4px; }
  .main-nav a:not(.btn)::after { display: none; }
  .main-nav a[aria-current="page"] { color: var(--tan); }
  .main-nav .btn { display: flex; width: 100%; margin: 0; font-size: 1.3rem; min-height: 58px; color: var(--navy-deep); }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 420px) {
  .header-book { font-size: .92rem; padding: .55em .8em; letter-spacing: .05em; }
  .brand img { max-width: 130px; }
}

/* ---------- Mobile sticky booking bar ---------- */
.mobile-cta { display: none; }
@media (max-width: 767px) {
  .mobile-cta {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(10,26,51,.97); box-shadow: 0 -6px 24px rgba(0,0,0,.18);
    transform: translateY(110%); transition: transform .3s var(--ease);
  }
  .mobile-cta.is-visible { transform: none; }
  .mobile-cta .btn { flex: 1; min-height: 52px; font-size: 1.1rem; padding-inline: .8em; }
  .mobile-cta .btn--ghost { flex: 0 0 auto; }
  .site-footer { padding-bottom: 76px; }
  body.nav-open .mobile-cta { transform: translateY(110%); }
}

/* ---------- Eyebrow / headings / motifs ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55em; margin: 0 0 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: .22em; text-transform: uppercase; color: var(--slate);
}
.eyebrow svg { width: 16px; height: 22px; color: var(--tan-deep); flex: none; }
.section--navy .eyebrow, .hero .eyebrow, .feature .eyebrow { color: var(--tan); }
.section--navy .eyebrow svg, .feature .eyebrow svg { color: var(--tan); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--slate); font-size: 1.12rem; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--slate); }

.mountain-rule { display: flex; align-items: center; gap: 14px; color: var(--line); margin: 0 auto; max-width: 280px; }
.mountain-rule::before, .mountain-rule::after { content: ""; flex: 1; height: 1px; background: currentColor; }
.mountain-rule svg { width: 54px; height: 20px; color: var(--tan-deep); }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); position: relative; }
.section--stone { background: var(--stone); }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: rgba(255,255,255,.86); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy a:not(.btn) { color: #fff; }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.ridge-top { position: relative; }
.ridge-top::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 44px; pointer-events: none;
  background: var(--white);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 44' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1200v8l-80 22-60-14-110 26-90-30-70 12-120-22-100 30-70-16-130 28-90-24-80 10-100-20-100 18V0z'/%3E%3C/svg%3E") top/100% 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 44' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1200v8l-80 22-60-14-110 26-90-30-70 12-120-22-100 30-70-16-130 28-90-24-80 10-100-20-100 18V0z'/%3E%3C/svg%3E") top/100% 100% no-repeat;
}
.ridge-top.from-stone::before { background: var(--stone); }
.ridge-top.from-mist::before { background: var(--mist); }

/* ---------- Placeholder images: subtle corner tag hidden once replaced ---------- */
.img-frame { position: relative; overflow: hidden; background: var(--mist); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; color: #fff; overflow: hidden;
  min-height: min(92vh, 900px); min-height: min(92svh, 900px);
  display: flex; align-items: center;
  padding-block: clamp(56px, 10vh, 120px) clamp(96px, 14vh, 150px);
}
.hero-media { position: absolute; inset: -40px 0 0 0; z-index: -2; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,26,51,.9) 0%, rgba(10,26,51,.72) 42%, rgba(10,26,51,.25) 75%, rgba(10,26,51,.15) 100%),
    linear-gradient(0deg, rgba(10,26,51,.55) 0%, rgba(10,26,51,0) 35%);
}
.hero-content { max-width: 720px; }
.hero-logo {
  display: inline-block; background: #fff; border-radius: var(--radius-lg); padding: 10px 14px; margin-bottom: 26px;
  box-shadow: var(--shadow-lg);
}
.hero-logo img { height: clamp(84px, 11vw, 120px); width: auto; max-width: 300px; object-fit: contain; }
.hero-kicker {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1rem, 1.6vw, 1.2rem); letter-spacing: .24em;
  color: var(--tan); text-transform: uppercase; margin: 0 0 10px; line-height: 1.2;
}
.hero-title {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; color: #fff;
  font-size: clamp(3.4rem, 10vw, 7.2rem); line-height: .9; letter-spacing: .005em; margin: 0 0 18px;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero-sub {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1.15; text-transform: uppercase; letter-spacing: .03em;
  color: #fff; margin: 0 0 16px;
}
.hero-text { font-size: clamp(1.02rem, 1.4vw, 1.15rem); color: rgba(255,255,255,.88); max-width: 600px; margin-bottom: 30px; }
.hero-note { margin: 22px 0 0; font-size: .88rem; color: rgba(255,255,255,.72); display: flex; gap: 8px; align-items: flex-start; }
.hero-note svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--tan); }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.8); text-decoration: none;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .25em; font-size: .8rem; text-transform: uppercase;
}
.scroll-cue span.mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; position: relative; }
.scroll-cue span.mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: #fff; animation: cue 1.8s infinite; }
.scroll-cue:hover { color: #fff; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue span.mouse::after { animation: none; } }
@media (max-width: 767px) {
  .hero { text-align: center; align-items: flex-end; min-height: auto; padding-block: 48px 90px; }
  .hero::before { background: linear-gradient(0deg, rgba(10,26,51,.94) 0%, rgba(10,26,51,.78) 55%, rgba(10,26,51,.45) 100%); }
  .hero-content { margin-inline: auto; }
  .hero .btn-row { justify-content: center; }
  .hero .btn-row .btn { width: 100%; }
  .hero-note { justify-content: center; text-align: left; }
  .scroll-cue { display: none; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; isolation: isolate; color: #fff; padding-block: clamp(72px, 12vw, 150px) clamp(56px, 8vw, 96px); overflow: hidden; background: var(--navy); }
.page-hero .hero-media { inset: 0; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10,26,51,.9), rgba(10,26,51,.55)); }
.page-hero h1 { color: #fff; margin-bottom: .3em; max-width: 900px; }
.page-hero p { color: rgba(255,255,255,.88); max-width: 680px; font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.page-hero .eyebrow { color: var(--tan); }
.page-hero--plain { background: var(--navy); }
.page-hero--plain::before { display: none; }
.breadcrumb { font-size: .85rem; margin-bottom: 18px; color: rgba(255,255,255,.7); }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; opacity: .6; }

/* ---------- Conditions bar ---------- */
.conditions-bar { background: var(--tan-soft); color: var(--navy-deep); border-block: 1px solid #e3d6ba; }
.conditions-bar .container { display: flex; gap: 12px; align-items: center; justify-content: center; padding-block: 14px; text-align: center; font-size: .95rem; font-weight: 500; }
.conditions-bar svg { width: 20px; height: 20px; flex: none; color: var(--tan-deep); }
.notice {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius);
  background: var(--tan-soft); border-left: 4px solid var(--tan-deep); color: var(--navy-deep); font-size: .95rem; margin: 0 0 1.2em;
}
.notice svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--tan-deep); }
.notice p:last-child { margin: 0; }
.notice--navy { background: rgba(255,255,255,.08); border-left-color: var(--tan); color: rgba(255,255,255,.9); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Value cards ---------- */
.value-strip { margin-top: calc(-1 * clamp(40px, 6vw, 70px)); position: relative; z-index: 2; padding-bottom: clamp(48px, 7vw, 90px); }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px 26px;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  position: relative; overflow: hidden;
}
.value-card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--navy); transform: scaleX(.18); transform-origin: left; transition: transform .35s var(--ease); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfd6e0; }
.value-card:hover::after { transform: scaleX(1); }
.value-card .icon { width: 46px; height: 46px; color: var(--navy); margin-bottom: 16px; }
.value-card h3 { font-size: 1.45rem; margin-bottom: .35em; }
.value-card p { margin: 0; color: var(--slate); font-size: .98rem; }
@media (max-width: 767px) { .value-strip { margin-top: 0; padding-top: 40px; } }

/* ---------- Feature (ice fishing) ---------- */
.feature { position: relative; isolation: isolate; color: #fff; overflow: hidden; padding-block: clamp(80px, 12vw, 160px); background: var(--navy-deep); }
.feature .hero-media { inset: -60px 0; }
.feature::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(10,26,51,.92) 0%, rgba(10,26,51,.7) 45%, rgba(10,26,51,.2) 100%); }
.feature h2 { color: #fff; font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: .92; }
.feature-body { max-width: 620px; }
.feature-body > p { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: rgba(255,255,255,.9); }
.feature-spots { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin: 28px 0 30px; list-style: none; padding: 0; }
.feature-spots li { border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius); padding: 14px 16px; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.feature-spots strong { display: block; font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .04em; text-transform: uppercase; color: #fff; line-height: 1.1; }
.feature-spots span { font-size: .88rem; color: rgba(255,255,255,.75); }
.fine-print { font-size: .86rem; color: rgba(255,255,255,.72); margin-top: 20px; display: flex; gap: 8px; align-items: flex-start; }
.fine-print svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--tan); }
@media (max-width: 767px) { .feature::before { background: linear-gradient(0deg, rgba(10,26,51,.95) 20%, rgba(10,26,51,.65) 100%); } .feature .btn { width: 100%; } }
@media (max-width: 420px) { .feature-spots { grid-template-columns: 1fr; } }

/* ---------- Trip (location) cards ---------- */
.trip-card {
  position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 460px; border-radius: var(--radius-lg); overflow: hidden; color: #fff; text-decoration: none;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.trip-card .trip-media { position: absolute; inset: 0; z-index: -2; }
.trip-card .trip-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.trip-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10,26,51,.96) 0%, rgba(10,26,51,.75) 42%, rgba(10,26,51,.1) 75%); transition: opacity .35s; }
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trip-card:hover .trip-media img { transform: scale(1.06); }
.trip-body { padding: 26px 24px 24px; }
.trip-card h3 { color: #fff; font-size: clamp(1.6rem, 2.2vw, 1.95rem); margin-bottom: .3em; }
.trip-species { font-family: var(--font-display); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--tan); font-size: .98rem; margin-bottom: 10px; }
.trip-card p { color: rgba(255,255,255,.88); font-size: .97rem; margin-bottom: 18px; }
.trip-badge { position: absolute; top: 16px; left: 16px; background: #fff; color: var(--navy); font-family: var(--font-display); font-weight: 700; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; padding: 6px 10px; border-radius: 4px; display: inline-flex; gap: 6px; align-items: center; }
.trip-badge svg { width: 14px; height: 14px; }
.trip-card .btn { min-height: 48px; font-size: 1.05rem; width: 100%; }
@media (max-width: 640px) { .trip-card { min-height: 400px; } }

/* ---------- Species tiles ---------- */
.species-tile { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.species-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.species-tile .img-frame { aspect-ratio: 4 / 3; }
.species-tile .img-frame img { transition: transform .7s var(--ease); }
.species-tile:hover .img-frame img { transform: scale(1.05); }
.species-body { padding: 22px 22px 24px; }
.species-body h3 { font-size: 1.75rem; margin-bottom: .3em; }
.species-body p { color: var(--slate); margin: 0; font-size: .98rem; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; flex-direction: column; position: relative; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured { border: 2px solid var(--navy); }
.price-card--featured::before { content: "Our Recommendation"; position: absolute; top: -13px; left: 24px; background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; padding: 4px 10px; border-radius: 4px; }
.price-card h3 { font-size: 1.7rem; margin-bottom: .5em; }
.price-prefix { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); font-weight: 600; min-height: 1.3em; }
.price-card .price-amount { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--navy); margin: 4px 0 14px; }
.price-card .price-amount small { font-size: 1rem; font-weight: 600; color: var(--slate); letter-spacing: .05em; }
.price-card .price-amount--contact { font-size: 2.1rem; margin-top: 8px; text-transform: uppercase; }
.price-card p { color: var(--slate); font-size: .95rem; flex: 1; }
.price-card .btn { margin-top: 8px; width: 100%; min-height: 48px; font-size: 1.05rem; }
.pricing-note { text-align: center; color: var(--slate); font-size: .95rem; margin: 26px auto 0; max-width: 720px; }

/* ---------- Reasons ---------- */
.reasons { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 0; border-top: 1px solid rgba(255,255,255,.15); }
.reason { padding: 30px 22px 10px; border-right: 1px solid rgba(255,255,255,.12); }
.reason:last-child { border-right: 0; }
.reason .num { font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: .2em; color: var(--tan); }
.reason .icon { width: 40px; height: 40px; color: #fff; margin: 12px 0 14px; }
.reason h3 { font-size: 1.4rem; }
.reason p { font-size: .96rem; color: rgba(255,255,255,.78); margin: 0; }
@media (max-width: 1024px) { .reasons { grid-template-columns: repeat(2, minmax(0,1fr)); } .reason { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 28px; } }
@media (max-width: 560px) { .reasons { grid-template-columns: 1fr; } }
.reasons--light { border-top-color: var(--line); }
.reasons--light .reason { border-color: var(--line); }
.reasons--light .reason .icon { color: var(--navy); }
.reasons--light .reason .num { color: var(--tan-deep); }
.reasons--light .reason p { color: var(--slate); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(18px, 3vw, 40px); counter-reset: step; list-style: none; padding: 0; margin: 0 0 44px; }
.step { position: relative; padding-top: 8px; }
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 5rem; line-height: .9; color: transparent; -webkit-text-stroke: 2px var(--navy); display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.7rem; }
.step p { color: var(--slate); margin: 0; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 44px; left: 110px; right: -10px; height: 1px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px); }
@media (max-width: 767px) { .steps { grid-template-columns: 1fr; } .step:not(:last-child)::after { display: none; } .step-num { font-size: 4rem; } }

/* ---------- Gallery (masonry via CSS columns) ---------- */
.gallery { columns: 3 300px; column-gap: 16px; }
.gallery--home { columns: 4 240px; }
.gallery-item { break-inside: avoid; margin: 0 0 16px; position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery-item a { display: block; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--mist); }
.gallery-item img { width: 100%; transition: transform .6s var(--ease), filter .3s; }
.gallery-item a::after { content: ""; position: absolute; inset: 0; background: rgba(10,26,51,0); transition: background .3s; }
.gallery-item a:hover img { transform: scale(1.04); }
.gallery-item a:hover::after { background: rgba(10,26,51,.2); }
.gallery-item .zoom { position: absolute; right: 10px; bottom: 10px; z-index: 1; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--navy); display: grid; place-items: center; opacity: 0; transform: translateY(6px); transition: .25s var(--ease); }
.gallery-item .zoom svg { width: 18px; height: 18px; }
.gallery-item a:hover .zoom, .gallery-item a:focus-visible .zoom { opacity: 1; transform: none; }
.gallery-item figcaption { position: absolute; left: 10px; bottom: 10px; z-index: 1; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(10,26,51,.72); padding: 4px 8px; border-radius: 3px; pointer-events: none; }
@media (hover: none) { .gallery-item .zoom { opacity: 1; transform: none; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(6,14,28,.95); display: none; align-items: center; justify-content: center; padding: 60px 70px; }
.lightbox.is-open { display: flex; }
.lightbox figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 150px); max-height: calc(100svh - 150px); width: auto; height: auto; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox figcaption { color: rgba(255,255,255,.85); font-size: .95rem; margin-top: 14px; text-align: center; }
.lb-btn { position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.2); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; top: 28px; left: 24px; color: rgba(255,255,255,.7); font-size: .85rem; letter-spacing: .1em; }
@media (max-width: 640px) { .lightbox { padding: 70px 12px 90px; } .lb-prev, .lb-next { top: auto; bottom: 18px; transform: none; } .lb-prev { left: calc(50% - 64px); } .lb-next { right: calc(50% - 64px); } }

/* ---------- Testimonials ---------- */
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; display: flex; flex-direction: column; margin: 0; position: relative; }
.testimonial .quote-mark { width: 34px; height: 34px; color: var(--tan); margin-bottom: 14px; }
.testimonial blockquote { margin: 0 0 18px; font-size: 1.05rem; color: var(--ink); flex: 1; }
.testimonial figcaption strong { display: block; font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .06em; text-transform: uppercase; color: var(--navy); }
.testimonial figcaption span { font-size: .88rem; color: var(--slate); }
.testimonial--placeholder { border-style: dashed; border-width: 2px; background: repeating-linear-gradient(135deg, #fff 0 14px, #fafbfc 14px 28px); align-items: center; text-align: center; justify-content: center; min-height: 250px; }
.testimonial--placeholder blockquote { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; text-transform: uppercase; color: var(--navy); line-height: 1.1; flex: 0; }
.testimonial--placeholder p { color: var(--slate); font-size: .92rem; margin: 0 0 16px; }
.stars { display: flex; gap: 3px; color: var(--tan-deep); margin-bottom: 12px; }
.stars svg { width: 18px; height: 18px; }
.testimonial--placeholder .stars { color: var(--line); justify-content: center; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy); color: rgba(255,255,255,.88); text-align: center; padding-block: clamp(80px, 11vw, 140px); isolation: isolate; }
.cta-band::before { content: ""; position: absolute; inset: auto 0 0 0; height: 55%; z-index: -1; opacity: .5;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' preserveAspectRatio='none'%3E%3Cpath fill='%230a1a33' d='M0 300V190l120-70 90 40 140-110 110 80 90-50 160 120 120-90 130 70 100-60 150 110 110-70 120 50v110z'/%3E%3Cpath fill='%23081528' d='M0 300V240l160-50 130 40 170-80 150 70 140-40 170 60 150-50 170 50 200-30v90z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat; }
.cta-band h2 { color: #fff; font-size: clamp(2.8rem, 8vw, 5.4rem); line-height: .92; }
.cta-band p { max-width: 640px; margin: 0 auto 30px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); }
.cta-band .contact-inline { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; font-size: 1rem; }
.contact-inline a { color: #fff; text-decoration: none; display: inline-flex; gap: 8px; align-items: center; font-weight: 500; }
.contact-inline a:hover { text-decoration: underline; }
.contact-inline svg { width: 18px; height: 18px; color: var(--tan); }
.cta-band .hook-mark { width: 42px; height: 56px; color: var(--tan); margin: 0 auto 18px; }
@media (max-width: 560px) { .cta-band .btn-row .btn { width: 100%; } }

/* ---------- Split / content layouts ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split .img-frame { border-radius: var(--radius-lg); aspect-ratio: 4 / 3; box-shadow: var(--shadow-md); }
.split .img-frame--tall { aspect-ratio: 4 / 5; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--reverse > :first-child { order: 0; } }

.check-list { list-style: none; padding: 0; margin: 0 0 1.2em; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .42em; width: 18px; height: 18px; border-radius: 50%; background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/12px no-repeat; }
.section--navy .check-list li::before { background-color: var(--tan); }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0 0 18px; }
.tag-list li { font-family: var(--font-display); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .92rem; background: var(--mist); color: var(--navy); padding: 6px 12px; border-radius: 4px; }
.tag-list--ice li.ice { background: var(--navy); color: #fff; }

/* Location sections */
.location { padding-block: clamp(56px, 8vw, 100px); border-bottom: 1px solid var(--line); }
.location:nth-of-type(even) { background: var(--stone); }
.location .facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin: 22px 0 26px; }
.location .fact { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.location .fact dt { font-family: var(--font-display); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; color: var(--slate); }
.location .fact dd { margin: 2px 0 0; font-weight: 600; color: var(--navy); }
@media (max-width: 480px) { .location .facts { grid-template-columns: 1fr; } }
.jump-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.jump-nav a { color: #fff; border: 1px solid rgba(255,255,255,.4); padding: 10px 16px; border-radius: 4px; text-decoration: none; font-family: var(--font-display); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .95rem; min-height: 44px; display: inline-flex; align-items: center; }
.jump-nav a:hover { background: #fff; color: var(--navy); }

/* Trip type cards */
.type-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.type-card .img-frame { aspect-ratio: 16 / 10; }
.type-card .body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.type-card .body p { color: var(--slate); flex: 1; }

/* About / guide profile */
.profile-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; margin: 26px 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.profile-list div { padding: 16px 18px; border-bottom: 1px solid var(--line); }
.profile-list div:nth-child(odd) { border-right: 1px solid var(--line); }
.profile-list div.wide { grid-column: 1 / -1; border-right: 0; }
.profile-list dt { font-family: var(--font-display); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; color: var(--slate); }
.profile-list dd { margin: 4px 0 0; font-weight: 500; color: var(--navy); }
@media (max-width: 560px) { .profile-list { grid-template-columns: 1fr; } .profile-list div:nth-child(odd) { border-right: 0; } }
/* Dashed "fill me in" chip for owner-supplied info */
.fill-in { display: inline-block; border: 1.5px dashed var(--tan-deep); background: #fbf7ef; color: #7a5a22; padding: 1px 8px; border-radius: 4px; font-size: .92em; font-weight: 500; }
.pull-quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.15; color: var(--navy); text-transform: uppercase; border-left: 4px solid var(--tan); padding-left: 20px; margin: 0 0 24px; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem, 2vw, 1.5rem); text-transform: uppercase; letter-spacing: .02em; color: var(--navy); line-height: 1.2;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--navy); position: relative; transition: background .2s, transform .3s var(--ease); }
.faq-item summary .pm::before, .faq-item summary .pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--navy); transform: translate(-50%,-50%); transition: transform .3s var(--ease), background .2s; }
.faq-item summary .pm::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] summary .pm { background: var(--navy); }
.faq-item[open] summary .pm::before { background: #fff; }
.faq-item[open] summary .pm::after { transform: translate(-50%,-50%) rotate(0deg); background: #fff; }
.faq-item summary:hover { color: var(--navy-soft); }
.faq-answer { padding: 0 4px 24px; color: var(--slate); max-width: 780px; }
.faq-answer p:last-child { margin: 0; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px 20px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: .95rem; color: var(--navy); margin-bottom: 6px; }
.field .req { color: #b23a2a; margin-left: 2px; }
.field .hint { font-size: .82rem; color: var(--slate); margin-top: 5px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 14px; font: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid #c9d1dc; border-radius: var(--radius); transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.field select { background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2311264a' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 14px center/18px no-repeat; padding-right: 42px; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(17,38,74,.14); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b23a2a; }
.field .error { color: #b23a2a; font-size: .85rem; margin-top: 5px; display: none; font-weight: 500; }
.field.has-error .error { display: block; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-footer { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.form-footer .small { font-size: .85rem; color: var(--slate); margin: 0; }
.form-status { display: none; border-radius: var(--radius); padding: 20px 22px; margin-top: 20px; }
.form-status.is-visible { display: block; }
.form-status h3 { font-size: 1.5rem; margin-bottom: .3em; }
.form-status--success { background: #eef6f0; border: 1px solid #b7d6bf; color: #1f4a2c; }
.form-status--success h3 { color: #1f4a2c; }
.form-status--error { background: #fbeeec; border: 1px solid #e8c1ba; color: #6e2317; }
.form-status--error h3 { color: #6e2317; }
.form-status--info { background: var(--tan-soft); border: 1px solid #e3d6ba; color: var(--navy-deep); }
.form-status .btn-row { margin-top: 14px; }
.btn[disabled] { opacity: .65; cursor: progress; transform: none; }

.booking-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (max-width: 960px) { .booking-layout { grid-template-columns: 1fr; } }
.side-card { background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; margin-bottom: 20px; }
.side-card h2, .side-card h3 { font-size: 1.6rem; }
.side-card--navy { background: var(--navy); color: rgba(255,255,255,.88); border: 0; }
.side-card--navy h2, .side-card--navy h3 { color: #fff; }
.side-card ol { padding-left: 1.2em; margin: 0; }
.side-card ol li { margin-bottom: 8px; }
.online-box { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 22px 26px; margin-bottom: 26px; }
.online-box p { margin: 0; color: rgba(255,255,255,.85); }
.online-box strong { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .04em; color: #fff; display: block; line-height: 1.1; }
@media (max-width: 560px) { .online-box .btn { width: 100%; } }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border: 0; }
.contact-list svg { width: 22px; height: 22px; flex: none; color: var(--navy); margin-top: 2px; }
.contact-list .label { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.contact-list a { font-weight: 600; word-break: break-word; }
.side-card--navy .contact-list li { border-color: rgba(255,255,255,.14); }
.side-card--navy .contact-list svg { color: var(--tan); }
.side-card--navy .contact-list .label { color: rgba(255,255,255,.65); }
.side-card--navy .contact-list a { color: #fff; }

/* Legal placeholder pages */
.legal-placeholder { border: 2px dashed var(--tan-deep); background: #fbf7ef; border-radius: var(--radius-lg); padding: 28px; margin: 0 0 28px; }
.legal-placeholder h2 { font-size: 1.6rem; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-top: 1.4em; }
.prose h3 { margin-top: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.75); padding-top: clamp(56px, 8vw, 90px); font-size: .96rem; }
.site-footer a:not(.btn) { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer a:not(.btn):hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-logo { display: inline-block; background: #fff; border-radius: var(--radius); padding: 8px 10px; margin-bottom: 16px; }
.footer-logo img { height: 84px; width: auto; max-width: 200px; object-fit: contain; }
.footer-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; letter-spacing: .06em; color: #fff; margin: 0; line-height: 1; }
.footer-tagline { font-family: var(--font-display); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--tan); margin: 6px 0 16px; font-size: .95rem; }
.site-footer h2 { font-size: 1.15rem; letter-spacing: .16em; color: #fff; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.social { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; color: #fff; transition: background .2s, border-color .2s; }
.social a:hover { background: var(--tan); border-color: var(--tan); color: var(--navy-deep); text-decoration: none; }
.social svg { width: 20px; height: 20px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--tan); }
.footer-regs { border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px; font-size: .88rem; color: rgba(255,255,255,.65); }
.footer-regs p { margin: 0 0 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; font-size: .86rem; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-bottom li { margin: 0; }

/* ---------- Reveal on scroll (only when JS is running) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal-d1 { transition-delay: .08s; } .js .reveal-d2 { transition-delay: .16s; } .js .reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- Owner setup checklist (only shows when previewing locally) ---------- */
.setup-badge { position: fixed; left: 12px; bottom: 12px; z-index: 400; max-width: 320px; background: #fff; color: var(--ink); border: 2px solid var(--tan-deep); border-radius: var(--radius); box-shadow: var(--shadow-lg); font-size: .82rem; padding: 12px 14px; }
.setup-badge strong { display: block; color: var(--navy); margin-bottom: 4px; }
.setup-badge ul { margin: 4px 0 0; padding-left: 1.1em; }
.setup-badge button { position: absolute; top: 4px; right: 6px; border: 0; background: none; font-size: 1.2rem; cursor: pointer; color: var(--slate); width: 32px; height: 32px; }
@media (max-width: 767px) { .setup-badge { bottom: 88px; left: 8px; right: 8px; max-width: none; } }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: clamp(28px, 4vw, 48px); }
.muted { color: var(--slate); }
[hidden] { display: none !important; }

/* ---------- Print ---------- */
@media print {
  .site-header, .mobile-cta, .site-footer .social, .scroll-cue, .setup-badge { display: none !important; }
  .hero, .feature, .cta-band, .page-hero { color: #000; background: none !important; }
  .hero::before, .feature::before, .page-hero::before { display: none; }
}
.social--light { margin-top: 0; }
.social--light a { border-color: var(--line); color: var(--navy); background: #fff; }
.social--light a:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.footer-regs a:not(.btn), .footer-bottom p a { text-decoration: underline; }
