/* =========================================================================
   Lodestar Movers — Design System (Celestial)
   Navy + gold, white, warm soft-gold accent. Premium, precise, timeless.
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #0B1E3B;
  --navy-800: #12294c;
  --navy-700: #1a3a63;
  --navy-600: #234b7a;
  --green-700: #a8842f;   /* deep gold */
  --green-600: #C9A24B;   /* Lodestar gold (primary accent) */
  --green-500: #d0ab57;   /* gold */
  --green-100: #f3ead2;   /* soft gold tint */
  --amber-500: #C9A24B;   /* gold */
  --amber-400: #E4CD97;   /* soft gold */

  /* Neutrals */
  --ink: #e9eff6;
  --slate-700: #c4d0de;
  --slate-500: #96a7bb;
  --slate-400: #8496aa;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.22);
  --paper: #0B1E3B;
  --paper-2: #10294a;
  --white: #ffffff;

  /* System */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 31, 51, .06), 0 1px 3px rgba(11, 31, 51, .05);
  --shadow-md: 0 10px 30px -12px rgba(11, 31, 51, .18);
  --shadow-lg: 0 30px 60px -24px rgba(11, 31, 51, .28);
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-display: "Archivo", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; color: var(--navy-900); font-weight: 700; }

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--paper2 { background: var(--paper-2); }
.section--navy { background: var(--navy-900); color: #dbe6ef; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-600);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--green-500); border-radius: 2px; }
.section--navy .eyebrow { color: var(--amber-400); }
.section--navy .eyebrow::before { background: var(--amber-500); }

.display { font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 800; letter-spacing: -0.03em; }
.h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; }
.h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--slate-700); line-height: 1.6; max-width: 60ch; }
.section--navy .lede { color: #b9c8d6; }
.muted { color: var(--slate-500); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease, color .16s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green-600); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--amber-400); box-shadow: var(--shadow-md); }
.btn--amber { background: var(--amber-500); color: var(--navy-900); }
.btn--amber:hover { background: var(--amber-400); box-shadow: var(--shadow-md); }
.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-700); }
.btn--ghost { background: transparent; color: var(--navy-900); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy-900); background: #fff; }
.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { background: var(--paper); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 246, 242, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand__name { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; font-size: 1.12rem; color: var(--navy-900); line-height: 1; }
.brand__name span { display: block; font-size: .64rem; letter-spacing: .18em; font-weight: 600; color: var(--green-600); text-transform: uppercase; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-display); font-weight: 500; font-size: .96rem;
  color: var(--slate-700); padding: 9px 14px; border-radius: 8px; transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--navy-900); background: rgba(20,52,82,.06); }
.nav__links a[aria-current="page"] { color: var(--navy-900); }
.nav__links a[aria-current="page"]::after { content: ""; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 600; color: var(--navy-900); font-size: .95rem; }
.nav__phone svg { width: 16px; height: 16px; color: var(--green-600); }

.nav__toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 10px; background: #fff; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -6px; }
.nav__toggle span::after { position: absolute; top: 6px; }
body.nav-open .nav__toggle span { background: transparent; }
body.nav-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed; inset: 74px 0 auto 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 28px;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
    display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow-md); max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav__links { display: flex; flex-direction: column; gap: 0; width: 100%; }
  body.nav-open .nav__menu { opacity: 1; transform: none; pointer-events: auto; }
  .nav__menu a.nav-link { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; padding: 13px 6px; border-bottom: 1px solid var(--line); color: var(--navy-800); }
  .nav__menu .btn { margin-top: 14px; }
  .nav__menu .nav__phone { display: inline-flex !important; padding: 14px 6px; font-size: 1.05rem; }
}
@media (min-width: 941px) {
  .nav__menu { display: contents; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(48px, 7vw, 92px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(24px, 3.5vw, 48px); align-items: center; }
.hero__eyebrow { margin-bottom: 20px; }
.hero h1 { margin-bottom: 22px; }
.hero .lede { margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px 34px; align-items: center; }
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy-900); letter-spacing: -0.02em; }
.hero__trust-item span { font-size: .86rem; color: var(--slate-500); }
.hero__media { position: relative; }
.hero__media > img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 4/3.5; }
.hero__badge {
  position: absolute; left: -18px; bottom: -18px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 13px 16px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; border: 1px solid var(--line); max-width: 236px;
}
.hero__badge img { height: 26px; width: auto; border-radius: 0; box-shadow: none; aspect-ratio: auto; }
.hero__badge span { font-size: .78rem; color: var(--slate-500); line-height: 1.35; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media > img { aspect-ratio: 16/11; }
  .hero__badge { left: 12px; bottom: -14px; }
}

/* ---------- Marquee / areas ribbon ---------- */
.ribbon { background: var(--navy-900); color: #cdd9e4; padding-block: 15px; }
.ribbon__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 18px; }
.ribbon__label { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--amber-400); flex-shrink: 0; }
.ribbon__list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 16px; }
.ribbon__list li { display: inline-flex; align-items: center; font-family: var(--font-display); font-weight: 500; font-size: .92rem; color: #cdd9e4; white-space: nowrap; }
.ribbon__list li:not(:last-child)::after { content: "•"; margin-left: 16px; color: rgba(255,255,255,.32); font-size: .5em; }

/* ---------- Section heading block ---------- */
.head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 56px); }
.head--center { margin-inline: auto; text-align: center; }
.head .eyebrow { margin-bottom: 16px; }
.head h2 { margin-bottom: 16px; }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
  height: 100%;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--green-100); color: var(--green-700); margin-bottom: 20px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--slate-700); font-size: .98rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--green-700); }
.card__link svg { width: 15px; height: 15px; transition: transform .16s; }
.card--hover:hover .card__link svg { transform: translateX(3px); }

/* ---------- Feature row (why us) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 780px) { .features { grid-template-columns: 1fr; } }
.feature { display: flex; gap: 16px; align-items: flex-start; padding: 4px; }
.feature__num { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--green-500); line-height: 1; flex-shrink: 0; }
.feature h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature p { color: var(--slate-500); font-size: .95rem; }

/* ---------- Split / about block ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.split--media-first .split__media { order: -1; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split__media { order: -1; } }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; }
.split__media--tall img { aspect-ratio: 4/4.6; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 8px; }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); letter-spacing: -0.03em; color: #fff; }
.stat span { color: #9fb3c4; font-size: .92rem; }
.stats--light { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: clamp(28px, 4vw, 40px); }
.stats--light .stat b { color: var(--navy-900); }
.stats--light .stat span { color: var(--slate-500); }

/* ---------- Timeline (about) ---------- */
.timeline { display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: 180px 1fr; gap: 32px; padding: 30px 0; border-top: 1px solid var(--line); }
.tl-item:first-child { border-top: 0; }
.tl-item h3 { font-size: 1.35rem; }
.tl-phase { font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-600); }
.tl-item p { color: var(--slate-700); }
.tl-item p + p { margin-top: 12px; }
@media (max-width: 700px) { .tl-item { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- Areas chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-strong); font-family: var(--font-display); font-weight: 500; font-size: .94rem; color: var(--navy-800);
}
.chip svg { width: 14px; height: 14px; color: var(--green-600); }
.section--navy .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #e7eef4; }
.section--navy .chip svg { color: var(--amber-400); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step__n { width: 44px; height: 44px; border-radius: 12px; background: var(--navy-900); color: #fff; font-family: var(--font-display); font-weight: 800; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--slate-500); font-size: .95rem; }

/* ---- Process flow (connected steps) ---- */
.steps--flow .step { position: relative; text-align: center; padding: 0 14px; }
.section--navy .steps--flow .step p { color: #9fb3c4; }
.steps--flow .step h3 { font-size: 1.12rem; }
.steps--flow .step__n {
  width: 58px; height: 58px; border-radius: 50%; font-size: 1.3rem;
  background: var(--green-600); color: var(--navy-900); margin: 0 auto 20px;
  position: relative; z-index: 2; box-shadow: 0 0 0 6px rgba(30,163,106,.14);
}

/* Desktop (4 across): connector line + arrowhead between nodes */
@media (min-width: 901px) {
  .steps--flow .step:not(:last-child)::before {
    content: ""; position: absolute; top: 28px; z-index: 1; height: 2px;
    left: calc(50% + 37px); width: calc(100% - 74px);
    background: rgba(255, 255, 255, .16);
  }
  .steps--flow .step:not(:last-child)::after {
    content: ""; position: absolute; top: 23px; left: calc(100% - 5px); z-index: 2;
    width: 11px; height: 11px; transform: rotate(45deg);
    border-top: 2.5px solid var(--green-500); border-right: 2.5px solid var(--green-500);
  }
}

/* Tablet + mobile: vertical timeline */
@media (max-width: 900px) {
  .steps.steps--flow { grid-template-columns: 1fr; gap: 0; max-width: 460px; margin-inline: auto; }
  .steps--flow .step {
    text-align: left; display: grid; grid-template-columns: 58px 1fr;
    column-gap: 20px; padding: 0 0 34px; align-items: start;
  }
  .steps--flow .step:last-child { padding-bottom: 0; }
  .steps--flow .step__n { grid-column: 1; grid-row: 1; margin: 0; }
  .steps--flow .step h3 { grid-column: 2; grid-row: 1; align-self: center; }
  .steps--flow .step p { grid-column: 2; grid-row: 2; margin-top: 6px; }
  .steps--flow .step:not(:last-child)::before {
    content: ""; position: absolute; left: 28px; top: 64px; bottom: 6px; width: 2px;
    background: rgba(255, 255, 255, .16); z-index: 1;
  }
}

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 50% -10%, rgba(30,163,106,.22), transparent 70%); pointer-events: none; }
.cta-band h2 { color: #fff; margin-bottom: 16px; position: relative; }
.cta-band p { color: #b9c8d6; max-width: 52ch; margin: 0 auto 30px; position: relative; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* ---------- FAQ ---------- */
.faq-cat { margin-bottom: 44px; }
.faq-cat > h3 { font-size: 1.35rem; margin-bottom: 6px; display: flex; align-items: center; gap: 12px; }
.faq-cat > h3 .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green-500); }
.faq-cat > p { color: var(--slate-500); margin-bottom: 18px; }
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-trigger {
  width: 100%; text-align: left; background: none; border: 0; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy-900);
}
.acc-trigger:hover { background: var(--paper); }
.acc-icon { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; border: 1.5px solid var(--line-strong); position: relative; transition: transform .22s, border-color .2s; }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; background: var(--green-600); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.acc-icon::before { width: 11px; height: 2px; }
.acc-icon::after { width: 2px; height: 11px; transition: transform .22s; }
.acc-item[data-open="true"] .acc-icon { border-color: var(--green-500); }
.acc-item[data-open="true"] .acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.acc-panel__inner { padding: 0 24px 22px; color: var(--slate-700); }

/* ---------- Forms ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 860px) { .form-wrap { grid-template-columns: 1fr; } }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--navy-800); margin-bottom: 7px; }
.field label .req { color: var(--green-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm); transition: border-color .16s, box-shadow .16s, background .16s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); background: #fff; box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
.field textarea { resize: vertical; min-height: 92px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field--row { grid-template-columns: 1fr; } }
.field__hint { font-size: .82rem; color: var(--slate-400); margin-top: 6px; }
.field .error-msg { display: none; color: #c0392b; font-size: .82rem; margin-top: 6px; }
.field.invalid input, .field.invalid select { border-color: #e07a6b; }
.field.invalid .error-msg { display: block; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--slate-700); margin-bottom: 22px; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--green-600); }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--green-100); color: var(--green-600); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 32px; height: 32px; }

.quote-aside .contact-line { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.quote-aside .contact-line:last-child { border-bottom: 0; }
.quote-aside .ci { width: 44px; height: 44px; border-radius: 12px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; flex-shrink: 0; }
.quote-aside .ci svg { width: 20px; height: 20px; }
.quote-aside .contact-line b { font-family: var(--font-display); display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-400); font-weight: 600; }
.quote-aside .contact-line a, .quote-aside .contact-line span { color: var(--navy-900); font-weight: 500; font-size: 1.05rem; }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate-700); }
.checklist li svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--green-600); margin-top: 1px; }
.checklist li b { color: var(--navy-900); }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: .82rem; color: var(--slate-400); font-family: var(--font-display); font-weight: 500; letter-spacing: .02em; margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.post-card__meta .pill { background: var(--green-100); color: var(--green-700); padding: 3px 9px; border-radius: 99px; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.post-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.post-card p { color: var(--slate-500); font-size: .95rem; margin-bottom: 18px; flex: 1; }
.post-card__link { font-family: var(--font-display); font-weight: 600; font-size: .92rem; color: var(--green-700); display: inline-flex; align-items: center; gap: 6px; }
.post-card__link svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .16s; }
.post-card:hover .post-card__link svg { transform: translateX(3px); }

/* ---------- Article ---------- */
.article { max-width: 720px; margin-inline: auto; }
.article__head { text-align: center; margin-bottom: 40px; }
.article__meta { font-family: var(--font-display); font-weight: 500; color: var(--slate-400); font-size: .9rem; margin-bottom: 16px; display: flex; gap: 12px; justify-content: center; align-items: center; }
.article__hero { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 44px; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.prose { color: var(--slate-700); font-size: 1.08rem; line-height: 1.75; }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: 1.6rem; margin-top: 1.8em; color: var(--navy-900); }
.prose h3 { font-size: 1.25rem; margin-top: 1.5em; color: var(--navy-900); }
.prose ul { display: grid; gap: 10px; margin-left: 2px; }
.prose ul li { position: relative; padding-left: 28px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); }
.prose strong { color: var(--navy-900); }
.prose blockquote { border-left: 3px solid var(--green-500); background: var(--green-100); padding: 16px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--navy-800); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2em 0; }

/* ---------- Page header (interior) ---------- */
.page-hero { padding-block: clamp(48px, 7vw, 84px); background: var(--paper-2); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; margin-bottom: 18px; }
.page-hero .lede { margin-bottom: 0; }
.breadcrumbs { font-size: .86rem; color: var(--slate-400); margin-bottom: 20px; font-family: var(--font-display); font-weight: 500; }
.breadcrumbs a:hover { color: var(--green-700); }
.breadcrumbs span { color: var(--slate-500); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #a9bccb; padding-block: 64px 34px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer__brand img { width: 46px; height: 46px; }
.footer__brand b { font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 1.15rem; }
.footer p.about { color: #92a6b6; font-size: .95rem; max-width: 34ch; }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a, .footer ul span { color: #a9bccb; font-size: .95rem; transition: color .15s; }
.footer ul a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #cdd9e4; transition: background .16s, color .16s; }
.footer__social a:hover { background: var(--green-600); color: var(--navy-900); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 22px; font-size: .84rem; color: #7e93a4; }
.footer__bottom a:hover { color: #fff; }
.footer__canadian { display: inline-flex; align-items: center; gap: 8px; }
.footer__canadian img { height: 14px; width: auto; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 12px; } .mt-4 { margin-top: 24px; } .mt-6 { margin-top: 36px; }
.mb-4 { margin-bottom: 24px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: 999px; background: var(--green-100); color: var(--green-700); font-family: var(--font-display); font-weight: 600; font-size: .82rem; }
.hide-sm { }
@media (max-width: 620px) { .hide-sm { display: none; } }

/* reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Crew & pricing explorer (interactive)
   ============================================================ */
.explorer { max-width: 940px; margin-inline: auto; }
.seg {
  display: inline-flex; gap: 4px; padding: 5px; border-radius: 999px;
  background: var(--paper-2); border: 1px solid var(--line); margin-inline: auto;
}
.section--navy .seg { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.seg__btn {
  border: 0; background: transparent; border-radius: 999px; padding: 11px 22px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--slate-500);
  transition: background .18s, color .18s, box-shadow .18s; white-space: nowrap;
}
.section--navy .seg__btn { color: #9fb3c4; }
.seg__btn:hover { color: var(--navy-900); }
.section--navy .seg__btn:hover { color: #fff; }
.seg__btn.is-active { background: var(--green-600); color: #fff; box-shadow: var(--shadow-sm); }
.section--navy .seg__btn.is-active { background: var(--amber-500); color: var(--navy-900); }

.explorer__stage { margin-top: 28px; }
.explorer__panel { display: none; }
.explorer__panel.is-active { display: block; animation: hbm-fade .3s ease; }
@keyframes hbm-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.plan-card {
  display: grid; grid-template-columns: 1.05fr 1.35fr; gap: clamp(24px, 4vw, 44px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow-md); align-items: center; text-align: left;
}
@media (max-width: 720px) { .plan-card { grid-template-columns: 1fr; gap: 24px; } }
.plan-card__price { display: flex; flex-direction: column; }
.plan-card__rate { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 6vw, 3.6rem); letter-spacing: -0.03em; color: var(--navy-900); line-height: 1; }
.plan-card__rate span { font-size: 1.05rem; font-weight: 600; color: var(--slate-500); letter-spacing: 0; }
.plan-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.plan-tag { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px; background: var(--green-100); color: var(--green-700); font-family: var(--font-display); font-weight: 600; font-size: .82rem; }
.plan-tag svg { width: 14px; height: 14px; }
.plan-card__best h3 { font-size: 1.3rem; margin-bottom: 8px; }
.plan-card__best p { color: var(--slate-700); }
.plan-card__best .pop { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px; font-family: var(--font-display); font-weight: 700; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--amber-500); }
.explorer__note {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px;
  margin-top: 26px; text-align: center; color: var(--slate-500); font-size: .92rem;
}
.explorer__note b { color: var(--navy-900); font-weight: 600; }
.section--navy .explorer__note { color: #9fb3c4; }
.section--navy .explorer__note b { color: #fff; }
.explorer__note span { display: inline-flex; align-items: center; gap: 7px; }
.explorer__note span svg { width: 15px; height: 15px; color: var(--green-500); }
.section--navy .explorer__note span svg { color: var(--amber-400); }

/* ============================================================
   Honest billing (transparency points)
   ============================================================ */
.billing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .billing-grid { grid-template-columns: 1fr; } }
.billing-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.billing-card__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; margin-bottom: 16px; }
.billing-card__ico svg { width: 24px; height: 24px; }
.billing-card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.billing-card p { color: var(--slate-700); font-size: .97rem; }
.billing-card--wide { grid-column: 1 / -1; background: var(--navy-900); border-color: var(--navy-700); color: #dbe6ef; }
.billing-card--wide h3 { color: #fff; }
.billing-card--wide p { color: #b9c8d6; }
.billing-card--wide .billing-card__ico { background: rgba(255,255,255,.08); color: var(--amber-400); }

/* ============================================================
   Help spectrum (how much do you want us to do)
   ============================================================ */
.help-scale { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
@media (max-width: 820px) { .help-scale { grid-template-columns: 1fr; } }
.help-step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); position: relative; }
.help-step__k { font-family: var(--font-display); font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--green-600); margin-bottom: 12px; display: block; }
.help-step h3 { font-size: 1.24rem; margin-bottom: 10px; }
.help-step p { color: var(--slate-700); font-size: .97rem; margin-bottom: 14px; }
.help-step ul { display: grid; gap: 8px; }
.help-step li { display: flex; gap: 10px; align-items: flex-start; color: var(--slate-600, var(--slate-500)); font-size: .92rem; }
.help-step li svg { width: 17px; height: 17px; color: var(--green-500); flex-shrink: 0; margin-top: 2px; }
.help-step--full { border-color: #cbe8d8; background: var(--green-100); }
.help-banner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; justify-content: center;
  margin-top: 26px; padding: 22px 28px; border-radius: var(--radius); text-align: center;
  background: var(--navy-900); color: #dbe6ef;
}
.help-banner b { color: #fff; font-family: var(--font-display); }
.help-banner .big { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--amber-400); letter-spacing: -0.02em; }

/* ============================================================
   Storage scenarios
   ============================================================ */
.storage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 760px) { .storage-grid { grid-template-columns: 1fr; } }
.storage-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.storage-card__tag { display: inline-flex; align-self: flex-start; align-items: center; gap: 7px; padding: 6px 13px; border-radius: 999px; background: var(--paper-2); color: var(--slate-700); font-family: var(--font-display); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.storage-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.storage-card > p { color: var(--slate-700); margin-bottom: 18px; }
.storage-card__price { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.storage-card__price b { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--navy-900); letter-spacing: -0.02em; }
.storage-card__price small { display: block; color: var(--slate-500); font-size: .88rem; margin-top: 2px; }

/* ============================================================
   Service-area interactive map
   ============================================================ */
.area-map-wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(28px, 4vw, 52px); align-items: center; }
@media (max-width: 860px) { .area-map-wrap { grid-template-columns: 1fr; } }
.area-map__img {
  display: block; width: 100%; height: auto; max-width: 680px; margin-inline: auto;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid var(--line); background: var(--paper-2);
}

/* ============================================================
   Quote chat assistant (AI widget)
   ============================================================ */
.hbm-chat-launch {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px 13px 16px; border: none; border-radius: 999px;
  background: var(--green-600); color: #fff; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  box-shadow: 0 12px 28px -8px rgba(20,106,69,.5); transition: transform .16s, background .16s, box-shadow .16s;
}
.hbm-chat-launch:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(20,106,69,.55); }
.hbm-chat-launch svg { width: 22px; height: 22px; }
.hbm-chat-launch.is-hidden { display: none; }
@media (max-width: 520px) { .hbm-chat-launch { right: 14px; bottom: 14px; padding: 13px 18px 13px 15px; } .hbm-chat-launch .hbm-launch-label { display: none; } }

.hbm-chat-panel {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  width: min(390px, calc(100vw - 28px)); height: min(600px, calc(100vh - 40px));
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  display: none; flex-direction: column; box-shadow: 0 32px 64px -20px rgba(11,31,51,.4);
  opacity: 0; transform: translateY(12px) scale(.98); transition: opacity .2s ease, transform .2s ease;
}
.hbm-chat-panel.is-open { display: flex; opacity: 1; transform: none; }
@media (max-width: 520px) { .hbm-chat-panel { right: 0; bottom: 0; width: 100vw; height: 100dvh; border-radius: 0; } }

.hbm-chat-head { background: var(--navy-900); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.hbm-chat-head img { width: 38px; height: 38px; object-fit: contain; }
.hbm-chat-head .hbm-h-title { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; line-height: 1.1; }
.hbm-chat-head .hbm-h-sub { font-size: .78rem; color: #9fb8cc; display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.hbm-chat-head .hbm-dot { width: 7px; height: 7px; border-radius: 50%; background: #34d17f; display: inline-block; }
.hbm-chat-close { margin-left: auto; width: 34px; height: 34px; border-radius: 9px; border: none; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.hbm-chat-close:hover { background: rgba(255,255,255,.2); }
.hbm-chat-close svg { width: 18px; height: 18px; }

.hbm-chat-body { flex: 1; overflow-y: auto; padding: 20px 18px; background: var(--paper); display: flex; flex-direction: column; gap: 12px; }
.hbm-msg { max-width: 82%; padding: 11px 15px; border-radius: 16px; font-size: .95rem; line-height: 1.5; white-space: pre-wrap; word-wrap: break-word; }
.hbm-msg--bot { background: #fff; border: 1px solid var(--line); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 5px; }
.hbm-msg--user { background: var(--navy-800); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; }
.hbm-typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: 13px 16px; background: #fff; border: 1px solid var(--line); border-radius: 16px; border-bottom-left-radius: 5px; }
.hbm-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--slate-400); animation: hbm-bounce 1.2s infinite ease-in-out; }
.hbm-typing span:nth-child(2) { animation-delay: .15s; } .hbm-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes hbm-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-5px); opacity: 1; } }

.hbm-chat-foot { border-top: 1px solid var(--line); padding: 12px; background: #fff; }
.hbm-chat-inputrow { display: flex; gap: 8px; align-items: flex-end; }
.hbm-chat-input { flex: 1; resize: none; border: 1.5px solid var(--line-strong); border-radius: 12px; padding: 11px 13px; font: inherit; font-size: .95rem; max-height: 110px; line-height: 1.4; }
.hbm-chat-input:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(201,162,75,.18); }
.hbm-chat-send { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; border: none; background: var(--green-600); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .15s; }
.hbm-chat-send:hover { background: var(--green-700); }
.hbm-chat-send:disabled { background: var(--slate-400); cursor: not-allowed; }
.hbm-chat-send svg { width: 20px; height: 20px; }
.hbm-chat-disclaimer { text-align: center; font-size: .72rem; color: var(--slate-400); margin-top: 8px; }
.hbm-chat-disclaimer a { color: var(--green-700); font-weight: 600; }

/* ---------- Reviews / testimonials ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); height: 100%;
  display: flex; flex-direction: column; gap: 14px; position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.review-card__stars { display: inline-flex; gap: 3px; color: var(--amber-500); }
.review-card__stars svg { width: 20px; height: 20px; }
.review-card__text { color: var(--slate-700); font-size: .98rem; line-height: 1.65; }
.review-card__author { margin-top: auto; font-family: var(--font-display); font-weight: 700; color: var(--navy-900); }
.review-card__author::before { content: "— "; color: var(--slate-400); }

/* ---------- Photo gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
.gallery__item {
  display: block; padding: 0; margin: 0; border: 0; cursor: pointer;
  background: var(--paper-2); border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-sm); aspect-ratio: 1 / 1;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.06); }
.gallery__item:focus-visible { outline: 3px solid var(--green-500); outline-offset: 2px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; background: rgba(8,18,30,.92); padding: clamp(12px, 3vw, 40px); }
.lightbox.is-open { display: flex; }
body.lb-lock { overflow: hidden; }
.lightbox__stage { margin: 0; max-width: min(1200px, 92vw); max-height: 88vh; display: flex; align-items: center; justify-content: center; cursor: zoom-out; }
.lightbox__img { max-width: 100%; max-height: 88vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 24px 70px rgba(0,0,0,.55); cursor: default; }
.lightbox__close { position: absolute; top: 14px; right: 18px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 1.9rem; line-height: 1; cursor: pointer; }
.lightbox__close:hover { background: rgba(255,255,255,.26); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox__nav:hover { background: rgba(255,255,255,.26); }
.lightbox__nav--prev { left: clamp(8px, 2vw, 28px); }
.lightbox__nav--next { right: clamp(8px, 2vw, 28px); }
.lightbox__count { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); color: #fff; font-family: var(--font-display); font-size: .9rem; letter-spacing: .04em; opacity: .85; }
.lightbox :focus-visible { outline: 3px solid var(--amber-400); outline-offset: 2px; }
@media (max-width: 600px) { .lightbox__nav { width: 44px; height: 44px; font-size: 1.6rem; } .lightbox__close { top: 8px; right: 10px; } }

/* ---------- Section photo banners ---------- */
.section-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.section-banner img { width: 100%; height: clamp(220px, 34vw, 400px); object-fit: cover; display: block; }
.section-banner__cap { position: absolute; inset: auto 0 0 0; padding: clamp(18px, 3.5vw, 36px); background: linear-gradient(to top, rgba(11,31,51,.82), rgba(11,31,51,.15) 70%, rgba(11,31,51,0)); color: #fff; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.section-banner__cap h3 { color: #fff; font-size: clamp(1.3rem, 2.6vw, 2rem); margin: 0; }
.section-banner__cap p { color: #e7eef4; margin: 0; max-width: 54ch; font-size: .98rem; }
.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); background: var(--paper-2); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Full-bleed hero ---------- */
.hero--full { padding: 0; min-height: min(86vh, 780px); display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; z-index: 0; }
/* Desktop only: zoom in and reframe so all three movers sit clear of the info card. Mobile hero is unchanged. */
@media (min-width: 761px) {
  .hero__bg { transform: scale(1.4); transform-origin: 26% 68%; }
}
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(8,18,30,.64) 0%, rgba(8,18,30,.36) 44%, rgba(8,18,30,0) 74%); }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__card {
  max-width: 360px; width: 100%;
  background: rgba(255,255,255,.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.6); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: clamp(26px, 3vw, 42px);
}
.hero--full h1.display { font-size: clamp(2.1rem, 4.4vw, 3.1rem); margin-bottom: 16px; }
.hero--full .hero__eyebrow { margin-bottom: 16px; }
.hero--full .lede { margin-bottom: 26px; font-size: clamp(1rem, 1.3vw, 1.12rem); }
.hero--full .hero__cta { margin-bottom: 26px; }
.hero--full .hero__trust { gap: 16px 22px; }
.hero--full .hero__trust-item b { font-size: 1.3rem; }
.hero--full .hero__badge { left: auto; right: clamp(14px, 3vw, 30px); bottom: clamp(14px, 3vw, 30px); z-index: 3; }
.hero-note { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.hero-note__inner { padding-block: 16px; display: flex; flex-direction: column; gap: 10px; }
.hero-note .hero__trust { gap: 12px 28px; }
.hero-note__fine { margin: 0; font-size: .82rem; color: var(--slate-500); line-height: 1.5; }

@media (max-width: 760px) {
  /* Stack on phones: photo as a full-width banner, info card below it */
  .hero--full { display: block; min-height: 0; padding: 0; }
  .hero__bg { position: static; width: 100%; height: auto; }
  .hero__scrim { display: none; }
  .hero__inner { padding-top: clamp(22px, 6vw, 30px); padding-bottom: clamp(4px, 2vw, 10px); }
  .hero__card { max-width: none; background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .hero--full .hero__badge { display: none; }
}

/* ---------- Carousel (gallery + reviews) ---------- */
.carousel { position: relative; }
.carousel__viewport {
  display: flex; gap: clamp(12px, 2vw, 18px);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
  padding: 4px 2px 8px;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__slide { flex: 0 0 86%; scroll-snap-align: start; }
.carousel__arrow {
  position: absolute; top: calc(50% - 14px); transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .94); color: var(--navy-900); box-shadow: var(--shadow-md);
  display: none; align-items: center; justify-content: center;
  transition: background .15s ease, opacity .15s ease;
}
.carousel__arrow svg { width: 22px; height: 22px; }
.carousel__arrow:hover { background: #fff; }
.carousel__arrow:disabled { opacity: .3; cursor: default; box-shadow: var(--shadow-sm); }
.carousel__arrow--prev { left: 6px; }
.carousel__arrow--next { right: 6px; }
.carousel__dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 18px; }
.carousel__dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: var(--line-strong); cursor: pointer; transition: background .15s ease, transform .15s ease; }
.carousel__dot.is-active { background: var(--green-600); transform: scale(1.3); }
@media (min-width: 761px) { .carousel__arrow { display: inline-flex; } }

/* Gallery carousel: one photo at a time, sliver of the next peeking */
.gallery-carousel .gallery__item { aspect-ratio: 3 / 2; }
/* Reviews carousel: one review card at a time, kept readable */
.reviews-carousel .carousel__slide { display: flex; }
.reviews-carousel .review-card { width: 100%; max-width: 760px; margin-inline: auto; }

/* Real horizontal logo in header */
.brand img.brand__logo{width:auto;height:48px;object-fit:contain;}
@media(max-width:600px){.brand img.brand__logo{height:38px;}}

/* =========================================================================
   NAVY-DOMINANT THEME OVERRIDES  (navy backgrounds · white text · gold accents)
   ========================================================================= */
h1, h2, h3, h4 { color: #ffffff; }
.hero__trust-item b { color: #ffffff; }
.eyebrow { color: var(--amber-400); }
.eyebrow::before { background: var(--amber-500); }

/* header / nav */
.site-header { background: rgba(9,20,40,.85); border-bottom-color: rgba(255,255,255,.10); }
.nav__links a { color: #c4d0de; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.08); }
.nav__phone { color: #fff; }
.nav__toggle { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.22); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { background: #fff; }

/* sections */
.section--navy { background: #08152b; }
.page-hero { background: #10294a; border-bottom-color: rgba(255,255,255,.10); }
.ribbon { background: #08152b; }
.hero-note { background: #10294a; border-bottom-color: rgba(255,255,255,.10); }
.hero-note__fine { color: #96a7bb; }

/* cards / panels that were white */
.card { background: #12294c; border-color: rgba(255,255,255,.10); }
.accordion { background: #12294c; border-color: rgba(255,255,255,.10); }
.acc-trigger { color: #fff; }
.acc-trigger:hover { background: rgba(255,255,255,.04); }
.post-card { background: #12294c; border-color: rgba(255,255,255,.10); }
.chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #e7eef4; }
.feature__num { color: var(--amber-400); }

/* forms */
.form-card { background: #12294c; border-color: rgba(255,255,255,.10); }
.field label { color: #dbe6f0; }
.field input, .field select, .field textarea { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #fff; }
.field input::placeholder, .field textarea::placeholder { color: #8fa0b4; }
.field input:focus, .field select:focus, .field textarea:focus { background: rgba(255,255,255,.10); border-color: var(--amber-400); }
.quote-aside .contact-line { border-bottom-color: rgba(255,255,255,.10); }
.quote-aside .contact-line a, .quote-aside .contact-line span { color: #fff; }
.prose blockquote { color: #dbe6f0; background: rgba(201,162,75,.12); }

/* buttons */
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--light { background: #fff; color: var(--navy-900); }

/* hero */
.hero__card { background: rgba(11,30,59,.66); -webkit-backdrop-filter: saturate(160%) blur(12px); backdrop-filter: saturate(160%) blur(12px); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.hero__card h1.display { color: #fff; }
.hero__card .lede { color: #d6e0ec; }
.hero__badge { background: rgba(11,30,59,.82); border: 1px solid rgba(255,255,255,.14); }
.hero__badge span { color: #d6e0ec; }
.hero__scrim { background: linear-gradient(100deg, rgba(6,14,26,.78) 0%, rgba(6,14,26,.5) 46%, rgba(6,14,26,.12) 80%); }
@media (max-width: 700px){ .hero__card { background: rgba(11,30,59,.9); } }

/* cta band accent -> gold */
.cta-band::before { background: radial-gradient(600px 300px at 50% -10%, rgba(201,162,75,.22), transparent 70%); }

/* dark theme: remaining light cards */
.plan-card { background: #12294c; border-color: rgba(201,162,75,.35); }
.plan-card__rate { color: #fff; }
.plan-card__rate span { color: var(--slate-500); }
.billing-card, .help-step, .storage-card, .review-card { background: #12294c; border-color: rgba(255,255,255,.10); box-shadow: none; }
.card--pop, .plan-card__best { color: var(--slate-700); }
