/* ==========================================================================
   Access Big Island Hawaii — site stylesheet
   Palette sampled from the logo: navy #003463, ocean #027BB2,
   lehua green #2F7632, lava orange #F46604.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  color-scheme: light;

  --navy:        #003463;
  --navy-900:    #00223f;
  --navy-700:    #004a8a;
  --ocean:       #027BB2;
  --ocean-dark:  #0a6291;   /* AA on white for text-sized links */
  --ocean-light: #e8f3fa;
  --green:       #2F7632;
  --green-dark:  #245c27;
  --green-light: #ecf4ec;
  --lava:        #F46604;   /* logo orange — decorative use only (icons, focus ring, gradients) */
  --lava-btn:    #C25000;   /* 4.8:1 with white — safe for button text */
  --lava-btn-hv: #9E4200;
  --lava-text:   #A34400;   /* 5.5:1 on --lava-light — safe for small bold text */
  --lava-dark:   #c25000;
  --lava-light:  #fdeee2;

  --sand:        #fbf8f3;
  --sand-2:      #f4efe7;
  --white:       #ffffff;
  --ink:         #1b2430;
  --ink-2:       #46515f;
  --ink-3:       #6b7684;
  --line:        #e3ddd3;
  --line-strong: #cfc7ba;

  --font-display: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Atkinson Hyperlegible", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--1: clamp(0.95rem, 0.92rem + 0.15vw, 1.02rem);
  --step-0:  clamp(1.06rem, 1.02rem + 0.2vw, 1.16rem);
  --step-1:  clamp(1.25rem, 1.16rem + 0.42vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.33rem + 0.85vw, 2rem);
  --step-3:  clamp(1.85rem, 1.55rem + 1.5vw, 2.7rem);
  --step-4:  clamp(2.2rem, 1.7rem + 2.5vw, 3.6rem);

  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 7vw, 6.5rem);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(0, 34, 63, .06), 0 2px 8px rgba(0, 34, 63, .05);
  --shadow:    0 2px 4px rgba(0, 34, 63, .05), 0 12px 28px -8px rgba(0, 34, 63, .16);
  --shadow-lg: 0 4px 8px rgba(0, 34, 63, .06), 0 28px 60px -18px rgba(0, 34, 63, .28);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); letter-spacing: -0.01em; }
h4 { font-size: var(--step-0); letter-spacing: 0; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--ocean-dark); text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover { color: var(--navy); }

img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }
li:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--navy-900); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

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

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: .75rem; top: -100%;
  z-index: 200;
  background: var(--navy); color: #fff;
  padding: .85rem 1.25rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

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

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--sand { background: var(--sand-2); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: #dce9f4; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy a { color: #9fd4f2; }
.section--navy a:hover { color: #fff; }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: var(--step-1); color: var(--ink-2); line-height: 1.5; }
.section--navy .section-head p { color: #b9d2e6; }
/* utility text colours must flip on the dark sections too */
.section--navy .lede,
.section--navy .muted,
.cta-band .lede,
.cta-band .muted { color: #b9d2e6; }
.section--navy strong { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ocean-dark); margin: 0 0 .9rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--ocean), var(--green));
}
.section--navy .eyebrow { color: #7fc4ea; }
.section-head--center .eyebrow { justify-content: center; }

.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.75rem); }
/* min() keeps these from overflowing narrow screens while capping the column count */
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr)); }

.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.75rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-first > .split__media { order: -1; }
  .split--wide-text { grid-template-columns: 1.15fr 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  max-width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  line-height: 1.2; text-decoration: none; text-align: center;
  padding: .95rem 1.6rem; min-height: 50px;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } .btn:hover { transform: none; } }

.btn--primary { background: var(--lava-btn); color: #fff; box-shadow: 0 8px 20px -8px rgba(194,80,0,.65); }
.btn--primary:hover { background: var(--lava-btn-hv); color: #fff; }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-900); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--white); border-color: var(--navy); color: var(--navy); }

.btn--on-dark { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.55); }
.btn--on-dark:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--ocean-light); color: var(--navy); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.header-cta .btn, .callbar .btn, .header-phone { white-space: nowrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  /* positioned ancestor for the mobile nav panel */
  background: rgba(255,255,255,.93);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(.8rem, 2vw, 2rem); min-height: 80px; padding-block: .7rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.brand img { width: 52px; height: 52px; border-radius: 10px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.07rem;
  color: var(--navy); letter-spacing: -0.02em; white-space: nowrap;
}
.brand__tag {
  font-size: .66rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ocean-dark); font-weight: 700; white-space: nowrap;
}

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  background: var(--white); color: var(--navy);
  border: 2px solid var(--line-strong); border-radius: 999px;
  padding: .6rem 1rem; min-height: 46px; cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 4px; }
.nav-toggle__bars span { display: block; width: 18px; height: 2.5px; background: currentColor; border-radius: 2px; }

.site-nav { margin-inline: auto; }
.site-nav li { margin: 0; }
.site-nav ul { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; padding: .55rem .68rem; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: .93rem;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.site-nav a:hover { background: var(--ocean-light); color: var(--navy); }
.site-nav a[aria-current="page"] { color: var(--ocean-dark); box-shadow: inset 0 -3px 0 var(--ocean); border-radius: 8px 8px 0 0; }

.header-cta { display: inline-flex; align-items: center; gap: .7rem; flex: none; }
.header-phone {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: var(--navy); text-decoration: none; white-space: nowrap;
  min-height: 44px; min-width: 44px; padding: 0 .35rem; border-radius: 10px;
}
.header-phone:hover { background: var(--ocean-light); }
.header-phone:hover { color: var(--lava-dark); }

@media (max-width: 1180px) {
  .site-nav a { padding: .5rem .48rem; font-size: .88rem; }
  .header-inner { gap: .6rem; }
}
@media (max-width: 1300px) {
  /* icon-only phone: the tel: link survives, the digits move to the footer */
  .header-phone .header-phone__label { display: none; }
  .header-cta .btn { padding-inline: 1.15rem; }
}
@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { margin-inline: 0; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 1rem var(--gutter) 1.5rem;
    max-height: calc(100dvh - 5rem); overflow-y: auto;
  }
  .site-nav[hidden] { display: none; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: .1rem; }
  .site-nav a { padding: .9rem .75rem; font-size: 1.05rem; border-radius: 10px; }
  .site-nav a[aria-current="page"] { background: var(--ocean-light); box-shadow: inset 3px 0 0 var(--ocean); border-radius: 10px; }
  .header-cta .btn { display: none; }
}
@media (min-width: 941px) {
  .nav-toggle { display: none; }
  .site-nav[hidden] { display: block; }
}
@media (max-width: 560px) {
  .brand__tag { display: none; }
  .brand img { width: 46px; height: 46px; }
  .brand__name { font-size: .97rem; }
  .header-phone { font-size: .95rem; }
}
@media (max-width: 440px) {
  /* logo alone carries the brand; the name stays available to screen readers */
  .brand__text { display: none; }
  .header-inner { gap: .5rem; min-height: 68px; }
  .nav-toggle { padding: .55rem .8rem; }
  .callbar .btn { font-size: .9rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; background: var(--navy-900); color: #fff; overflow: hidden; }
.hero > .container { position: relative; z-index: 2; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(0,22,42,.92) 0%, rgba(0,26,48,.86) 30%, rgba(0,34,63,.52) 52%, rgba(0,34,63,.2) 72%, rgba(0,34,63,.12) 100%),
    linear-gradient(180deg, rgba(0,22,42,.6) 0%, rgba(0,22,42,0) 28%);
}
.hero__inner { padding-block: clamp(3.5rem, 9vw, 7.5rem); max-width: 40rem; }
.hero h1 { color: #fff; margin-bottom: .45em; }
.hero__lede { font-size: var(--step-1); color: #d5e5f2; line-height: 1.5; margin-bottom: 1.9rem; }
.hero .eyebrow { color: #86c9ec; }
.hero .eyebrow::before { background: linear-gradient(90deg, #7fc4ea, #79c47c); }
.hero--short .hero__inner { padding-block: clamp(2.75rem, 6vw, 4.75rem); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: .5rem .75rem;
  margin-top: 2.1rem; padding: 0; list-style: none;
}
.hero-trust li {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .88rem; font-weight: 700;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.26);
  color: #e8f2f9; padding: .45rem .85rem; border-radius: 999px; margin: 0;
}
.hero-trust svg { flex: none; color: #8fd493; }

/* Page hero (interior pages) */
.page-hero { background: var(--navy); color: #cfe2f0; position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; right: -10%; top: -40%;
  width: 55vw; height: 140%; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(2,123,178,.5), transparent 62%);
  pointer-events: none;
}
.page-hero__inner { position: relative; padding-block: clamp(2.75rem, 6vw, 5rem); max-width: 48rem; }
.page-hero h1 { color: #fff; }
.page-hero p { font-size: var(--step-1); color: #bcd6e9; line-height: 1.5; }
.page-hero .eyebrow { color: #86c9ec; }
.page-hero .eyebrow::before { background: linear-gradient(90deg, #7fc4ea, #79c47c); }

/* Breadcrumb */
.crumbs { font-size: .85rem; padding-top: 1.1rem; color: #9fbdd4; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.crumbs li { margin: 0; display: inline-flex; gap: .4rem; align-items: center; }
.crumbs li + li::before { content: "/"; color: #5f89a8; align-self: center; }
.crumbs a { color: #bcd6e9; display: inline-block; padding: .2rem .35rem; margin-left: -.35rem; min-height: 24px; }

/* ---------- Wave divider ---------- */
.wave { display: block; width: 100%; height: clamp(28px, 4vw, 54px); }
.wave path { fill: var(--sand); }
.wave--to-white path { fill: var(--white); }
.wave--to-sand2 path { fill: var(--sand-2); }
.wave--to-navy path { fill: var(--navy); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-2); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--ocean-light); color: var(--ocean-dark);
}
.card__icon--green { background: var(--green-light); color: var(--green-dark); }
.card__icon--lava  { background: var(--lava-light); color: var(--lava-dark); }
.card__link {
  margin-top: auto; padding-top: 1.1rem;
  font-family: var(--font-display); font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem; align-self: flex-start;
}
.card__link:hover { gap: .7rem; }
.card--flat { box-shadow: none; background: transparent; border-style: dashed; }

/* Track cards (the two big service doors) */
.track-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.track-card__media { aspect-ratio: 16 / 10; background: var(--navy-900); }
.track-card__media img { width: 100%; height: 100%; object-fit: cover; }
.track-card__body { padding: clamp(1.5rem, 3vw, 2.25rem); display: flex; flex-direction: column; flex: 1; }
.track-card__body h3 { font-size: var(--step-2); }
.track-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.track-card ul li {
  position: relative; padding-left: 1.75rem; margin-bottom: .55rem; color: var(--ink-2);
}
.track-card ul li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--green);
}
.track-card .btn-row { margin-top: auto; }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 0; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .8rem; font-weight: 700; font-family: var(--font-display);
  padding: .32rem .7rem; border-radius: 999px;
  background: var(--green-light); color: var(--green-dark);
  border: 1px solid #cfe3d0; margin: 0;
}
.chip--ocean { background: var(--ocean-light); color: var(--ocean-dark); border-color: #c8e2f1; }
.chip--lava  { background: var(--lava-light); color: var(--lava-text); border-color: #f7dcc6; }
.chip--warn  { background: #fdf6e3; color: #8a6100; border-color: #efe0bb; }

/* ---------- Destination cards ---------- */
.dest {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%;
}
.dest__media { aspect-ratio: 4 / 3; background: var(--ocean-light); position: relative; }
.dest__media img { width: 100%; height: 100%; object-fit: cover; }
.dest__media--tall { aspect-ratio: 3 / 4; }
.dest__noimg {
  aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 1rem;
  background: linear-gradient(140deg, var(--navy) 0%, var(--ocean) 100%);
  color: rgba(255,255,255,.9);
}
.dest__noimg svg { width: 46px; height: 46px; opacity: .85; }
.dest__body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; gap: .7rem; }
.dest__body h3 { font-size: var(--step-0); margin: 0; }
.dest__body p { font-size: var(--step--1); color: var(--ink-2); margin: 0; }
.dest__body .chips { margin-top: auto; padding-top: .3rem; }

/* ---------- Stats ---------- */
.stats { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.stat { background: var(--white); padding: 1.5rem 1.25rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: var(--step-2); color: var(--navy); line-height: 1; display: block; }
.stat__label { font-size: .85rem; color: var(--ink-3); margin-top: .45rem; display: block; line-height: 1.35; }
.section--navy .stats { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.2); }
.section--navy .stat { background: var(--navy); }
.section--navy .stat__num { color: #fff; }
.section--navy .stat__label { color: #a9c6dd; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; gap: clamp(1.1rem, 2.4vw, 1.75rem); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.steps > li { counter-increment: step; margin: 0; position: relative; padding-top: 3.9rem; }
.steps > li::before {
  content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  background: var(--navy); color: #fff;
}
.steps h3 { font-size: var(--step-0); margin-bottom: .35rem; }
.steps p { color: var(--ink-2); font-size: var(--step--1); }
.section--navy .steps > li::before { background: #fff; color: var(--navy); }

/* vertical variant: number sits beside the step, not above it */
.steps--vertical { grid-template-columns: 1fr; gap: 1.4rem; }
.steps--vertical > li { padding-top: 0; padding-left: 4.15rem; min-height: 52px; }
.steps--vertical > li::before { width: 46px; height: 46px; font-size: 1.15rem; top: -2px; }
.steps--vertical h3 { margin-bottom: .2rem; }
.section--navy .steps p { color: #b9d2e6; }

/* ---------- Spec list ---------- */
.spec { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.spec > div {
  display: grid; grid-template-columns: minmax(9.5rem, 38%) 1fr;
  gap: .5rem 1rem; padding: .85rem 1.2rem; border-bottom: 1px solid var(--line);
}
.spec > div:last-child { border-bottom: 0; }
.spec dt { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: var(--step--1); }
.spec dd { margin: 0; color: var(--ink-2); font-size: var(--step--1); }
@media (max-width: 520px) { .spec > div { grid-template-columns: 1fr; gap: .1rem; } }

/* ---------- Placeholder marker ---------- */
.tbd {
  display: inline-block;
  background: #fff4d6; color: #7a5600;
  border: 1px dashed #d9b866; border-radius: 6px;
  padding: 0 .4em; font-size: .93em; font-weight: 700;
  font-family: var(--font-display);
}

/* ---------- Feature list ---------- */
.ticks { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.ticks li { position: relative; padding-left: 2.1rem; margin-bottom: .7rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23245c27' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
}
.section--navy .ticks li::before { background-color: rgba(255,255,255,.16); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238fd493' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }

/* ---------- Media frame ---------- */
.frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--navy-900);
  position: relative;
}
.frame img { width: 100%; }
.frame--tall { aspect-ratio: 3/4; }
.frame--tall img, .frame--crop img { height: 100%; object-fit: cover; }
.frame--crop { aspect-ratio: 4/3; }
.frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.25rem .95rem;
  background: linear-gradient(transparent, rgba(0,26,48,.85));
  color: #e4eef6; font-size: .85rem; line-height: 1.4;
}
figure { margin: 0; }

/* ---------- Quote ---------- */
.quote {
  background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--ocean);
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column;
}
.quote blockquote { margin: 0 0 1rem; font-size: var(--step-1); line-height: 1.45; color: var(--navy); font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }
.quote figcaption { margin-top: auto; font-size: .88rem; color: var(--ink-3); }
.quote figcaption strong { display: block; color: var(--navy); font-size: .97rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.25rem;
  padding: 1.25rem .25rem;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-0);
  color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--ocean-dark); }
.faq summary::after {
  content: ""; flex: none; width: 24px; height: 24px; margin-top: .15em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003463' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/18px no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
@media (prefers-reduced-motion: reduce) { .faq summary::after { transition: none; } }
.faq details > div { padding: 0 .25rem 1.4rem; color: var(--ink-2); max-width: 70ch; }

/* ---------- Callout ---------- */
.callout {
  background: var(--ocean-light); border: 1px solid #c8e2f1;
  border-radius: var(--radius); padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.callout--lava { background: var(--lava-light); border-color: #f7dcc6; }
.callout--green { background: var(--green-light); border-color: #cfe3d0; }
.callout h3 { font-size: var(--step-0); margin-bottom: .45rem; }
.callout p { color: var(--ink-2); font-size: var(--step--1); }

/* ---------- Big CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy) 45%, #024f7e 100%);
  color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: auto -10% -60% auto; right: -5%;
  width: 46rem; height: 46rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,102,4,.28), transparent 60%);
}
.cta-band__inner { position: relative; padding-block: clamp(3rem, 6vw, 5rem); text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe2f0; font-size: var(--step-1); line-height: 1.5; }
.cta-band .btn-row { justify-content: center; margin-top: 1.9rem; }

/* ---------- Contact rows ---------- */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.contact-list li { margin: 0; background: var(--white); padding: 1.25rem 1.35rem; display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ci {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: var(--ocean-light); color: var(--ocean-dark);
}
.contact-list h3 { font-size: .95rem; margin: 0 0 .15rem; }
.contact-list p, .contact-list a { font-size: var(--step--1); margin: 0; }
.contact-list a { overflow-wrap: anywhere; }
.contact-list li > div { min-width: 0; }
.contact-list .muted { color: var(--ink-3); font-size: .85rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #a9c1d5; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer h2, .site-footer h3 { color: #fff; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.7fr 1fr 1.1fr 1.3fr; } }
/* fr tracks default to min-width:auto, which a long email address would blow out */
.footer-grid > * { min-width: 0; }
.site-footer a { overflow-wrap: anywhere; }
.footer-brand { max-width: 25rem; }
.footer-brand img { width: 74px; height: 74px; border-radius: 14px; margin-bottom: 1rem; }
.footer-brand p { font-size: var(--step--1); line-height: 1.6; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .25rem; }
.site-footer a { color: #cfe0ee; text-decoration: none; font-size: var(--step--1);
  display: inline-block; padding-block: .3rem; min-height: 24px; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .82rem; color: #8aa6bd;
}
.footer-bottom p { margin: 0; }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.callbar .btn { flex: 1; padding-inline: .75rem; font-size: .95rem; }
@media (max-width: 720px) {
  .callbar { display: flex; }
  body { padding-bottom: 4.6rem; }
}

/* ---------- Utilities ---------- */
.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink-2); }
.muted { color: var(--ink-3); }
.small { font-size: .86rem; line-height: 1.5; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: clamp(2rem,4vw,3rem); }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }

/* ---------- Print (brochure hand-outs) ---------- */
@media print {
  .site-header, .callbar, .nav-toggle, .site-nav, .btn, .crumbs { display: none !important; }
  body { background: #fff; font-size: 11pt; padding-bottom: 0; }
  .hero::after { background: none; }
  .hero, .page-hero, .cta-band, .section--navy { background: #fff !important; color: #000 !important; }
  .hero h1, .page-hero h1, .cta-band h2, .section--navy h2, .section--navy h3 { color: #000 !important; }
  .hero__media { display: none; }
  .hero__lede, .page-hero p, .cta-band p, .section--navy .section-head p { color: #333 !important; }
  .section { padding-block: 1.25rem; }
  .card, .dest, .track-card, .quote, .spec { box-shadow: none; border: 1px solid #bbb; break-inside: avoid; }
  .site-footer { background: #fff; color: #333; }
  .site-footer a, .site-footer h3 { color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
