/* ============================================================
   JL MARINE TRANSPORT · Design System
   Palette: Deep Water #0E1C28 · Channel #16324A · Amber #E89A4E
            Coral #E4674B · Lake #3E9BD1 · Bone #F5EFE3 · Ink #22303B
   Type: Barlow Condensed (display) · Barlow (body) · max weight 600
   Mobile-first. Breakpoints: 768px, 1024px.
   ============================================================ */

@font-face { font-family: 'Barlow'; src: url('../assets/fonts/Barlow-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Barlow'; src: url('../assets/fonts/Barlow-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Barlow'; src: url('../assets/fonts/Barlow-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('../assets/fonts/BarlowCondensed-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Barlow Condensed'; src: url('../assets/fonts/BarlowCondensed-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }

:root {
  --deep: #0E1C28;
  --deep-2: #0A141D;
  --channel: #16324A;
  --amber: #E89A4E;
  --amber-2: #F0B274;
  --coral: #E4674B;
  --lake: #3E9BD1;
  --bone: #F5EFE3;
  --bone-2: #EDE4D2;
  --ink: #22303B;
  --slate: #8DA2B2;
  --line-dark: rgba(245, 239, 227, .14);
  --line-light: rgba(34, 48, 59, .14);
  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Barlow', 'Helvetica Neue', sans-serif;
  --wrap: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(10, 20, 29, .35);
  --ease: cubic-bezier(.22, .61, .21, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[id] { scroll-margin-top: 92px; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
  overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--amber); color: var(--deep); }

/* ---------- Type ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: .96;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 9.5vw, 5rem); }
h2 { font-size: clamp(2rem, 6vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 3.5vw, 1.6rem); letter-spacing: .03em; }
p { max-width: 62ch; }
.lead { font-size: clamp(1.05rem, 2.6vw, 1.25rem); line-height: 1.55; }
.eyebrow {
  max-width: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8F5013;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--amber); flex: none; }
.on-dark { color: var(--bone); }
.on-dark p { color: var(--slate); }
.on-dark .muted { color: var(--slate); }
.muted { color: #51616E; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 10vw, 120px); }
.section-dark { background: var(--deep); color: var(--bone); }
.section-tint { background: var(--bone-2); }
.section-head { margin-bottom: clamp(32px, 6vw, 56px); }
.section-head p { margin-top: 14px; }
.grid { display: grid; gap: clamp(18px, 3vw, 28px); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.grid > * { min-width: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep);
  background: var(--amber);
  border: 2px solid var(--amber);
  border-radius: 8px;
  padding: 14px 26px;
  min-height: 48px;
  transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s, box-shadow .25s;
}
.btn:hover { background: var(--amber-2); border-color: var(--amber-2); transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(232, 154, 78, .55); }
.btn:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--bone); border-color: rgba(245, 239, 227, .45); }
.btn-ghost:hover { background: rgba(245, 239, 227, .1); border-color: var(--bone); color: var(--bone); box-shadow: none; }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: rgba(34, 48, 59, .35); }
.btn-ghost-dark:hover { background: rgba(34, 48, 59, .06); border-color: var(--ink); color: var(--ink); box-shadow: none; }
.btn-coral { background: #C7492D; border-color: #C7492D; color: #fff; }
.btn-coral:hover { background: #B23F24; border-color: #B23F24; box-shadow: 0 12px 26px -12px rgba(228, 103, 75, .55); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 14px;
}
.site-head.scrolled, body.nav-open .site-head {
  background: rgba(10, 20, 29, .88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .6);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--bone); }
.brand svg { width: 44px; height: 44px; flex: none; }
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-name small {
  display: block;
  font-size: .62rem;
  letter-spacing: .34em;
  color: var(--amber);
  margin-top: 3px;
}
.main-nav { display: none; }
.head-call { display: none; }
.nav-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  gap: 0;
  z-index: 70;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--bone);
  margin-block: 3.5px;
  transition: transform .3s var(--ease), opacity .3s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: linear-gradient(160deg, var(--deep-2), var(--channel));
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
body.nav-open .nav-overlay { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }
.nav-overlay ul { list-style: none; text-align: center; display: grid; gap: 8px; }
.nav-overlay a {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 8vw, 3rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone);
  opacity: 0;
  transform: translateY(18px);
  display: inline-block;
  transition: color .25s, opacity .45s var(--ease), transform .45s var(--ease);
}
body.nav-open .nav-overlay a { opacity: 1; transform: none; }
.nav-overlay a:hover, .nav-overlay a[aria-current="page"] { color: var(--amber); }
.nav-overlay .overlay-phone { font-size: 1.1rem; letter-spacing: .14em; color: var(--amber); margin-top: 22px; }

@media (min-width: 1024px) {
  .nav-toggle, .nav-overlay { display: none; }
  .main-nav { display: flex; align-items: center; gap: 30px; }
  .main-nav a {
    font-family: var(--display);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bone);
    padding-block: 6px;
    border-bottom: 2px solid transparent;
    transition: color .25s, border-color .25s;
  }
  .main-nav a:hover { color: var(--amber); }
  .main-nav a[aria-current="page"] { color: var(--amber); border-color: var(--amber); }
  .head-call { display: inline-flex; padding: 10px 20px; min-height: 42px; font-size: .92rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--bone);
  background: var(--deep);
  overflow: clip;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.kenburns img { animation: kenburns 26s var(--ease) infinite alternate; will-change: transform; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.14) translateY(-1.5%); } }
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 20, 29, .94) 0%, rgba(10, 20, 29, .45) 40%, rgba(10, 20, 29, .3) 100%),
    linear-gradient(105deg, rgba(10, 20, 29, .55) 0%, transparent 60%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(96px, 16vh, 150px) clamp(56px, 9vh, 96px); }
.hero h1 { max-width: 13ch; margin-bottom: 18px; }
.hero .lead { max-width: 52ch; color: rgba(245, 239, 227, .88); margin-bottom: 30px; }
.hero-short { min-height: 72svh; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(245, 239, 227, .4);
  border-radius: 14px;
  display: none;
}
.scroll-cue::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--amber);
  animation: cue 1.8s var(--ease) infinite;
}
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }
@media (min-width: 768px) { .scroll-cue { display: block; } }

/* ---------- Stats ---------- */
.stat-band { border-top: 1px solid var(--line-dark); background: var(--deep-2); }
.stat-band .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.stat {
  padding: clamp(22px, 4vw, 38px) 14px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stat:nth-child(2n) { border-right: 0; }
.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 5.5vw, 2.9rem);
  color: var(--amber);
  line-height: 1;
}
.stat span { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--slate); }
@media (min-width: 768px) {
  .stat-band .wrap { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; }
  .stat:nth-child(2n) { border-right: 1px solid var(--line-dark); }
  .stat:last-child { border-right: 0; }
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: clip;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px -20px rgba(10, 20, 29, .42); }
.card-media { aspect-ratio: 4 / 3; overflow: clip; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: clamp(20px, 3vw, 28px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { color: var(--ink); }
.card-link {
  margin-top: auto;
  font-family: var(--display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link svg { transition: transform .25s var(--ease); }
.card:hover .card-link svg, .card-link:hover svg { transform: translateX(5px); }

/* ---------- Steps (How it works) ---------- */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding: 26px 22px 26px 78px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(22, 50, 74, .35);
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  left: 22px;
  top: 24px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--amber);
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: .98rem; }

/* ---------- Split feature ---------- */
.split { display: grid; gap: clamp(26px, 5vw, 60px); align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.split-media { border-radius: var(--radius); overflow: clip; box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; display: grid; gap: 12px; margin-top: 20px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { flex: none; margin-top: 4px; color: var(--amber); }

/* ---------- Marquee ---------- */
.marquee { overflow: clip; border-block: 1px solid var(--line-dark); padding-block: 16px; }
.marquee-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee span {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--slate);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 44px;
}
.marquee span::after { content: '★'; color: var(--amber); font-size: .8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Rates ---------- */
.rate-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 4px solid var(--channel);
}
.rate-card.featured { border-top-color: var(--amber); }
.rate-tag {
  font-family: var(--display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
}
.rate-price { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 5vw, 2.6rem); color: var(--ink); line-height: 1; }
.rate-price small { font-size: .45em; letter-spacing: .08em; color: #51616E; }
.rate-card ul { list-style: none; display: grid; gap: 9px; font-size: .97rem; }
.rate-card li { display: flex; gap: 10px; }
.rate-card li svg { flex: none; margin-top: 5px; color: var(--amber); }
.fine-print { font-size: .85rem; color: #51616E; max-width: 70ch; }

/* Light cards inside dark sections: hard-reset to ink so the section's
   bone/slate text colors never bleed onto white backgrounds */
.on-dark .rate-card, .on-dark .rate-card h3, .on-dark .rate-card p, .on-dark .rate-card li { color: var(--ink); }
.on-dark .rate-card .rate-tag { color: var(--coral); }
.on-dark .rate-card .rate-price small { color: #51616E; }
.on-dark .est-panel, .on-dark .est-panel p, .on-dark .est-panel label, .on-dark .est-panel b { color: var(--ink); }
.on-dark .est-panel .form-note, .on-dark .est-panel .est-route, .on-dark .est-panel .est-meta span { color: #51616E; }
.on-dark .est-panel .est-placeholder, .on-dark .est-panel .est-placeholder p { color: #596B7A; }

/* ---------- Comic panel (About) ---------- */
.comic-panel {
  position: relative;
  border: 3px solid var(--ink);
  border-radius: 10px;
  overflow: clip;
  box-shadow: 8px 8px 0 var(--amber), var(--shadow);
  background: #fff;
}
.comic-panel img { width: 100%; }
.comic-caption {
  padding: 12px 16px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .85rem;
  border-top: 3px solid var(--ink);
  background: repeating-linear-gradient(45deg, #fff, #fff 6px, rgba(232, 154, 78, .12) 6px, rgba(232, 154, 78, .12) 12px);
}

/* ---------- Quotes ---------- */
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.quote-card blockquote { font-size: 1.05rem; line-height: 1.6; color: var(--ink); }
.quote-card blockquote::before { content: '“'; display: block; font-family: var(--display); font-size: 3rem; line-height: .5; color: var(--amber); margin-bottom: 12px; }
.quote-who { font-size: .9rem; color: #51616E; }
.quote-who b { display: block; font-weight: 600; color: var(--ink); }
.sample-chip {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 3px 10px;
}

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 16px; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line-light);
  border-radius: 8px;
  padding: 13px 14px;
  min-height: 48px;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232, 154, 78, .25);
}
.form-note { font-size: .85rem; color: #51616E; }
.form-status {
  display: none;
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 500;
}
.form-status.ok { display: block; background: rgba(62, 155, 209, .12); border: 1px solid rgba(62, 155, 209, .4); color: #205D80; }
.form-status.err { display: block; background: rgba(228, 103, 75, .1); border: 1px solid rgba(228, 103, 75, .45); color: #A33A24; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Contact extras ---------- */
.contact-rail { display: grid; gap: 18px; align-content: start; }
.rail-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: grid;
  gap: 8px;
}
.rail-card h3 { display: flex; align-items: center; gap: 10px; }
.rail-card h3 svg { color: var(--amber); flex: none; }
.rail-card a.big-tel {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: .05em;
  text-decoration: none;
  color: var(--ink);
}
.rail-card a.big-tel:hover { color: var(--coral); }
.area-map { border-radius: var(--radius); overflow: clip; background: var(--channel); box-shadow: var(--shadow); }
.area-map svg { width: 100%; height: auto; display: block; }

/* ---------- Booking embed ---------- */
.booking-frame {
  border: 0;
  width: 100%;
  height: 620px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.booking-fallback { margin-top: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--channel), var(--deep) 70%);
  color: var(--bone);
  overflow: clip;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 154, 78, .28), transparent 65%);
  pointer-events: none;
}
.cta-band .wrap {
  position: relative;
  display: grid;
  gap: 22px;
  padding-block: clamp(56px, 8vw, 88px);
}
@media (min-width: 1024px) {
  .cta-band .wrap { grid-template-columns: 1.4fr 1fr; align-items: center; }
  .cta-band .btn-row { justify-content: flex-end; }
}

/* ---------- Footer ---------- */
.site-foot { background: var(--deep-2); color: var(--slate); padding-block: clamp(44px, 7vw, 70px) 28px; font-size: .95rem; }
.foot-grid { display: grid; gap: 34px; margin-bottom: 40px; }
@media (min-width: 768px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-foot .brand { margin-bottom: 14px; }
.foot-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 14px;
}
.site-foot ul { list-style: none; display: grid; gap: 9px; }
.site-foot a { color: var(--slate); text-decoration: none; transition: color .25s; }
.site-foot a:hover { color: var(--amber); }
.foot-tag { color: var(--amber); font-family: var(--display); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .8rem; }
.foot-legal {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: .82rem;
}

/* ---------- Brand page ---------- */
.swatch-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.swatch { border-radius: var(--radius); overflow: clip; box-shadow: var(--shadow); background: #fff; }
.swatch-color { height: 110px; }
.swatch-meta { padding: 12px 14px; font-size: .85rem; }
.swatch-meta b { display: block; font-weight: 600; }
.swatch-meta code { color: #51616E; font-size: .82rem; }
.type-specimen { display: grid; gap: 18px; }
.logo-tile {
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}
.icon-row { display: flex; flex-wrap: wrap; gap: 18px; }
.icon-chip {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--channel);
  color: var(--amber);
  display: grid;
  place-items: center;
}

/* ---------- Reveal + parallax ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
[data-plx] { will-change: transform; }

/* Chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--display);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid var(--line-light);
  border-radius: 99px;
  padding: 9px 18px;
  color: var(--ink);
  background: #fff;
}
.on-dark .chip { border-color: var(--line-dark); color: var(--bone); background: transparent; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 100;
  background: var(--amber);
  color: var(--deep);
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 10px; }

/* ---------- Estimator ---------- */
.est-panel {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  color: var(--ink);
}
@media (min-width: 1024px) { .est-panel { grid-template-columns: .9fr 1.1fr; align-items: start; } }
#est-form { display: grid; gap: 16px; }
.est-input-row { display: flex; gap: 8px; }
.est-input-row input { flex: 1; min-width: 0; }
.est-locate {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1.5px solid var(--line-light);
  background: #fff;
  color: var(--channel);
  display: grid;
  place-items: center;
  transition: border-color .25s, color .25s;
}
.est-locate:hover { border-color: var(--amber); color: var(--amber); }
.est-locate.busy { animation: est-pulse 1s ease-in-out infinite; }
@keyframes est-pulse { 50% { opacity: .35; } }
.est-output { display: grid; gap: 18px; align-content: start; }
.est-placeholder {
  border: 2px dashed var(--line-light);
  border-radius: 10px;
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  color: #596B7A;
  padding: 24px;
}
.est-placeholder svg { color: var(--amber); }
.est-output.has-result .est-placeholder { display: none; }
.est-map { height: clamp(240px, 34vw, 360px); border-radius: 10px; overflow: clip; border: 1.5px solid var(--line-light); display: none; }
.est-output.has-result .est-map { display: block; }
.est-result { display: grid; gap: 14px; }
.est-route { font-weight: 500; color: #51616E; font-size: .95rem; }
.est-range { font-family: var(--display); font-weight: 600; font-size: clamp(2.2rem, 6vw, 3rem); line-height: 1; color: var(--ink); }
.est-range span { font-size: .45em; color: #51616E; letter-spacing: .06em; }
.est-meta { display: flex; gap: clamp(18px, 4vw, 34px); flex-wrap: wrap; }
.est-meta b { display: block; font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: var(--ink); }
.est-meta span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #51616E; }
.est-mini { display: grid; gap: 10px; margin-top: 4px; }
.est-mini input, .est-mini select {
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line-light);
  border-radius: 8px;
  padding: 12px 14px;
  min-height: 48px;
  width: 100%;
}
.est-mini input:focus, .est-mini select:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232, 154, 78, .25); }
@media (min-width: 768px) {
  .est-mini { grid-template-columns: 1fr 1fr; }
  .est-mini .btn { grid-column: 1 / -1; }
}
.fine-print a, .on-dark .inline-link { color: var(--amber); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .kenburns img, .marquee-track, .scroll-cue::after { animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .card, .btn, .card-media img { transition: none; }
}

/* Accent colors readable on light backgrounds; brand hues stay on dark */
.on-dark .eyebrow, .hero .eyebrow, .cta-band .eyebrow { color: var(--amber); }
.on-dark .eyebrow::before, .hero .eyebrow::before, .cta-band .eyebrow::before { background: var(--amber); }
.card-link, .rate-tag, .sample-chip, .on-dark .rate-card .rate-tag { color: #C7492D; }
