:root {
  --ink: #071d2f;
  --ink-2: #0b2a43;
  --navy: #092b4a;
  --white: #ffffff;
  --paper: #f4f6f7;
  --line: #d7dce0;
  --muted: #5d6871;
  --orange: #f15a24;
  --orange-dark: #c94514;
  --success: #146b49;
  --shadow: 0 22px 60px rgba(11, 18, 24, .12);
  --radius: 6px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Manrope, Archivo, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid #ffb399; outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .75rem 1rem; background: var(--white); color: var(--ink); }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.section--tight { padding: 3.25rem 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--paper { background: var(--paper); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2rem; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; font-weight: 750; letter-spacing: -.035em; line-height: 1.04; }
h1 { max-width: 13ch; font-size: clamp(3.1rem, 8vw, 6.8rem); }
h2 { max-width: 17ch; font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
p { margin: 0 0 1.25rem; }
.lede { max-width: 62ch; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.section--dark .lede { color: #bac2c9; }
.section-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.section-head p { max-width: 55ch; margin: 0; color: var(--muted); }
.section--dark .section-head p { color: #bac2c9; }
.kicker { color: var(--orange); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.placeholder { display: inline; padding: .08em .3em; border: 1px dashed currentColor; color: var(--orange-dark); font-weight: 750; background: #fff5f1; }
.section--dark .placeholder, .footer .placeholder { color: #ffb399; background: rgba(240, 90, 40, .08); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 88px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .97);
  color: var(--navy);
  backdrop-filter: blur(12px);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: transparent; box-shadow: 0 10px 28px rgba(7, 29, 47, .12); }
.header-inner { height: 100%; display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img { width: clamp(205px, 19vw, 280px); height: 72px; object-fit: contain; object-position: left center; }
.brand-name { display: none; font-weight: 850; letter-spacing: .02em; text-transform: uppercase; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(.8rem, 1.6vw, 1.6rem); }
.desktop-nav a { color: #435463; font-size: .84rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.phone-link { color: var(--navy); font-size: .87rem; font-weight: 800; text-decoration: none; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid #8b99a4; color: var(--navy); background: transparent; border-radius: 4px; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s ease; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .75rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 3px;
  background: var(--orange);
  color: var(--white);
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: .015em;
  line-height: 1.15;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn--secondary { border-color: rgba(255,255,255,.7); background: rgba(16,20,23,.15); }
.btn--secondary:hover { border-color: var(--white); background: rgba(16,20,23,.55); }
.btn--dark { background: var(--ink); }
.btn--dark:hover { background: var(--navy); }
.btn--ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero {
  position: relative;
  min-height: calc(92vh - 88px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero__media, .hero__media::after { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__media::after { content: ""; background: linear-gradient(90deg, rgba(8,13,18,.92) 0%, rgba(8,13,18,.62) 46%, rgba(8,13,18,.18) 78%), linear-gradient(0deg, rgba(8,13,18,.72) 0%, transparent 55%); }
.hero__content { position: relative; z-index: 1; width: 100%; padding: clamp(5rem, 10vw, 9rem) 0 4.75rem; }
.hero__content p { max-width: 55ch; margin: 1.5rem 0 2rem; color: #e5e8ea; font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-note { margin-top: 2rem; color: #c7cdd1; font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.page-hero { position: relative; overflow: hidden; padding: clamp(6rem, 11vw, 10rem) 0 5rem; background: var(--ink); color: var(--white); }
.page-hero--image { min-height: 62vh; display: flex; align-items: flex-end; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { height: 100%; object-fit: cover; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,15,20,.9), rgba(9,15,20,.35)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 15ch; font-size: clamp(3rem, 7vw, 5.7rem); }
.page-hero p { max-width: 58ch; margin: 1.4rem 0 0; color: #d6dce0; font-size: 1.18rem; }

.credibility { position: relative; z-index: 5; background: var(--white); box-shadow: 0 -14px 40px rgba(0,0,0,.13); }
.credibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { min-height: 126px; display: flex; flex-direction: column; justify-content: center; padding: 1.3rem 1.5rem; border-right: 1px solid var(--line); }
.fact:first-child { border-left: 1px solid var(--line); }
.fact strong { font-size: 1.08rem; line-height: 1.25; }
.fact span { margin-top: .35rem; color: var(--muted); font-size: .78rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card { position: relative; min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: var(--white); background: var(--ink); box-shadow: var(--shadow); }
.service-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover img { transform: scale(1.025); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,14,18,.95), rgba(8,14,18,.08) 72%); }
.service-card__content { position: relative; z-index: 1; padding: 1.75rem; }
.service-card p { margin: .8rem 0 1rem; color: #d7dde1; }
.text-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--orange); font-weight: 850; text-decoration: none; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #3c454c; }
.step { position: relative; padding: 2rem 1.5rem 1rem 0; border-right: 1px solid #3c454c; }
.step:last-child { border-right: 0; }
.step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 2.6rem; color: var(--orange); font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.step h3 { margin-bottom: .8rem; }
.step p { color: #b8c0c6; font-size: .95rem; }

.corridor-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
.port-list { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.port-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.port-list strong { display: block; color: var(--ink); }
.route-board { position: relative; overflow: hidden; padding: 2rem; background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.route-board::after { content: ""; position: absolute; right: -4rem; bottom: -8rem; width: 260px; height: 260px; border: 48px solid rgba(240,90,40,.13); border-radius: 50%; }
.route-board ul { position: relative; z-index: 1; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.route-board li { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.route-board li span:last-child { color: #b9c6d2; }

.image-band { position: relative; min-height: 560px; display: flex; align-items: flex-end; color: var(--white); background: var(--ink); }
.image-band > img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.image-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,14,18,.94), rgba(9,14,18,.12) 70%); }
.image-band__content { position: relative; z-index: 1; width: 100%; padding: 3rem 0; }
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.24); }
.spec { padding: 1.25rem; background: rgba(16,20,23,.84); backdrop-filter: blur(8px); }
.spec span { display: block; margin-bottom: .3rem; color: var(--orange); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.compliance-grid, .two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; align-items: start; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: .9rem 0 .9rem 2rem; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.section--dark .check-list li { border-color: #374047; }
.feature-box { padding: 2rem; border-top: 4px solid var(--orange); background: var(--paper); }
.section--dark .feature-box { background: var(--ink-2); }

.cta-band { padding: 3.8rem 0; background: var(--orange); color: var(--white); }
.cta-band .container { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-band h2 { max-width: 20ch; font-size: clamp(2rem, 4vw, 3.4rem); }
.cta-band p { max-width: 55ch; margin: .8rem 0 0; color: #fff2ed; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .75rem; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; display: flex; justify-content: space-between; gap: 2rem; padding: 1.35rem 0; color: var(--ink); font-size: 1.05rem; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 1.5rem; font-weight: 500; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 75ch; padding: 0 2.5rem 1.35rem 0; color: var(--muted); }

.prose { max-width: 78ch; }
.prose h2 { margin: 3.5rem 0 1rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.prose h3 { margin: 2rem 0 .75rem; }
.prose li { margin-bottom: .65rem; }
.detail-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; }
.aside-card { position: sticky; top: 112px; padding: 1.75rem; border: 1px solid var(--line); background: var(--paper); }
.aside-card h3 { margin-bottom: 1rem; }
.aside-card ul { margin: 0 0 1.5rem; padding-left: 1.2rem; }
.data-list { margin: 0; padding: 0; list-style: none; }
.data-list li { display: grid; grid-template-columns: 11rem 1fr; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.data-list strong { color: var(--ink); }
.data-list span { color: var(--muted); }

.form-shell { display: grid; grid-template-columns: .7fr 1.3fr; gap: 4rem; align-items: start; }
.quote-intro { position: sticky; top: 118px; }
.quote-form { padding: clamp(1.25rem, 3vw, 2.5rem); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 850; }
.field-label-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.field-count, .field-hint { margin: 0; color: var(--muted); font-size: .75rem; }
.field-hint { min-height: 1.2rem; }
.field .required { color: var(--orange-dark); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: .72rem .85rem;
  border: 1px solid #adb6bd;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange-dark); box-shadow: 0 0 0 3px rgba(240,90,40,.17); outline: 0; }
.form-status { margin: 1rem 0 0; padding: .8rem 1rem; background: #edf7f2; color: var(--success); font-weight: 700; }
.form-status.is-error { background: #fff2ed; color: #9d3210; }
.form-status[hidden] { display: none; }
.draft-status { min-height: 1.35rem; margin: .65rem 0 0; color: var(--success); }
.quote-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.text-button { min-height: 44px; padding: .5rem .25rem; border: 0; background: transparent; color: var(--muted); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.text-button:hover { color: var(--ink); }
.quote-readiness { margin-top: 1rem; padding: 1.5rem; border: 1px solid var(--line); background: var(--white); box-shadow: 0 14px 35px rgba(7, 29, 47, .08); }
.quote-readiness__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.quote-readiness__head h3 { font-size: 1.25rem; }
.quote-readiness__head strong { color: var(--orange-dark); font-size: 1rem; }
.readiness-track { height: 8px; margin: .8rem 0 1rem; overflow: hidden; background: #e3e7ea; }
.readiness-track span { display: block; width: 0; height: 100%; background: var(--orange); transition: width .25s ease; }
.quote-readiness > p { margin-bottom: 1rem; color: var(--muted); font-size: .86rem; }
.movement-summary { margin: 0; }
.movement-summary div { display: grid; grid-template-columns: 6rem 1fr; gap: .75rem; padding: .55rem 0; border-top: 1px solid var(--line); }
.movement-summary dt { color: var(--muted); font-size: .75rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.movement-summary dd { margin: 0; font-size: .86rem; font-weight: 750; }
.service-guidance { margin: 1rem 0 0 !important; padding: .8rem; border-left: 3px solid var(--orange); background: var(--paper); color: var(--ink) !important; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 1rem; }
.contact-card { padding: 1.5rem; border: 1px solid var(--line); }
.contact-card span { display: block; color: var(--orange-dark); font-size: .78rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: .5rem; font-size: 1.15rem; }
.contact-card a, .feature-box a[href^="mailto:"] { overflow-wrap: anywhere; }

.footer { padding: 4rem 0 1.5rem; background: #080b0d; color: #d4dade; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, .8fr); gap: 2.5rem; }
.footer-grid > * { min-width: 0; }
.footer-contact-email { overflow-wrap: anywhere; font-size: 1rem; line-height: 1.5; }
.footer-logo { width: 150px; margin-bottom: 1.2rem; padding: .4rem; background: var(--white); border-radius: 3px; }
.footer h3 { margin-bottom: 1rem; color: var(--white); font-size: .83rem; letter-spacing: .1em; text-transform: uppercase; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin: .55rem 0; }
.footer a { color: #c8d0d6; text-decoration: none; }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid #2d3439; color: #8e9aa3; font-size: .78rem; }

.cookie { position: fixed; z-index: 150; right: 1rem; bottom: 1rem; width: min(calc(100% - 2rem), 440px); padding: 1.15rem; border: 1px solid #3a444b; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.cookie[hidden] { display: none; }
.cookie p { margin: 0 0 .8rem; color: #d2d8dc; font-size: .86rem; }
.cookie-actions { display: flex; gap: .6rem; }
.cookie .btn { min-height: 42px; padding: .55rem .8rem; }
.mobile-actions { display: none; }

@media (max-width: 1080px) {
  .desktop-nav, .phone-link { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .menu-toggle { display: block; }
  .brand-name { display: block; }
  .mobile-nav { position: fixed; inset: 88px 0 0; z-index: 99; overflow-y: auto; padding: 2rem 1rem; background: var(--ink); color: var(--white); }
  .mobile-nav[aria-hidden="false"] { display: block; }
  .mobile-nav a { display: block; padding: .9rem 0; border-bottom: 1px solid #323a40; color: var(--white); font-size: 1.1rem; font-weight: 750; text-decoration: none; }
  .fact { padding-inline: 1rem; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 780px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .site-header { height: 76px; }
  .header-inner { gap: .75rem; }
  .brand img { width: min(58vw, 230px); height: 60px; }
  .brand-name { font-size: .8rem; }
  .header-actions > .btn { display: none; }
  .mobile-nav { inset: 76px 0 0; }
  .hero { min-height: 760px; }
  .hero__media img { object-position: 65% center; }
  .hero__media::after { background: linear-gradient(0deg, rgba(8,13,18,.94) 0%, rgba(8,13,18,.65) 64%, rgba(8,13,18,.2)); }
  .hero__content { padding-bottom: 3rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .section-head, .corridor-grid, .compliance-grid, .two-col, .detail-grid, .form-shell { grid-template-columns: 1fr; gap: 2rem; }
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(odd) { border-left: 1px solid var(--line); }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 410px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-bottom: 1px solid #3c454c; }
  .step:nth-child(2n) { padding-left: 1.5rem; border-right: 0; }
  .specs { grid-template-columns: 1fr; }
  .cta-band .container { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .aside-card, .quote-intro { position: static; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :last-child { grid-column: auto; }
  .mobile-actions { position: fixed; z-index: 120; left: 0; right: 0; bottom: 0; height: 64px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); box-shadow: 0 -8px 26px rgba(0,0,0,.2); }
  .mobile-actions a { display: flex; align-items: center; justify-content: center; border-right: 1px solid #354048; color: var(--white); font-size: .78rem; font-weight: 850; text-decoration: none; }
  .mobile-actions a:last-child { border-right: 0; background: var(--orange); }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 1.4rem), var(--max)); }
  .section { padding: 4rem 0; }
  .button-row .btn { width: 100%; }
  .brand-name { display: none; }
  .hero { min-height: 710px; }
  .hero__content p { font-size: 1.05rem; }
  .fact { min-height: 112px; padding: 1rem .75rem; }
  .fact strong { font-size: .94rem; }
  .fact span { font-size: .67rem; }
  .steps { grid-template-columns: 1fr; }
  .step, .step:nth-child(2n) { padding: 1.5rem 0; border-right: 0; }
  .step::before { margin-bottom: 1rem; }
  .port-list { grid-template-columns: 1fr; }
  .image-band { min-height: 720px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .quote-actions .btn { width: 100%; }
  .quote-actions .text-button { width: 100%; }
  .data-list li { grid-template-columns: 1fr; gap: .2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Refined navy / orange system: clear type, open photography, useful quote controls. */
:root { --max: 1320px; --orange-dark: #b73709; }
:focus-visible { outline: 3px solid #b73709; outline-offset: 4px; }
.section--dark :focus-visible, .hero :focus-visible, .footer :focus-visible { outline-color: #ff9568; }
.site-header { background: #fff; backdrop-filter: none; }
.desktop-nav a { font-size: .875rem; padding: 1rem 0; border-bottom: 2px solid transparent; }
.desktop-nav a[aria-current="page"] { border-color: var(--orange); }
.btn { cursor: pointer; color: var(--ink); }
.btn:hover { background: #ff793d; }
.btn--dark, .btn--secondary { color: #fff; }
.btn--dark:hover { background: #123c5d; }
.btn--secondary:hover { background: rgba(7,29,47,.8); }
.btn--ghost:hover { background: var(--paper); }
.eyebrow, .text-link, .kicker { color: var(--orange-dark); font-size: .875rem; }
.hero .eyebrow, .section--dark .eyebrow, .page-hero .eyebrow, .section--dark .text-link, .route-board .kicker { color: #ff9361; }
.hero { min-height: 650px; height: min(760px, calc(100svh - 88px)); align-items: center; }
.hero__media img { object-position: 62% center; }
.hero__media::after { background: linear-gradient(90deg,rgba(7,29,47,.96),rgba(7,29,47,.7) 42%,rgba(7,29,47,.08) 83%); }
.hero__content { padding: 4.5rem 0; }
.hero h1 { font-size: clamp(3.4rem,6.6vw,6.1rem); max-width: 11ch; }
.hero__content .eyebrow { margin: 0 0 1.4rem; font-size: .875rem; }
.hero__content p:not(.eyebrow) { max-width: 44ch; font-size: 1.15rem; }
.hero-note { font-size: .875rem; letter-spacing: .015em; text-transform: none; max-width: 42ch; }
.credibility { box-shadow: none; border-bottom: 1px solid var(--line); }
.fact { min-height: 108px; }
.fact span { font-size: .875rem; letter-spacing: 0; text-transform: none; font-weight: 500; }
.route-start { background: var(--paper); padding: 2.8rem 0 3.2rem; border-bottom: 1px solid var(--line); }
.route-start__heading { display: flex; gap: 2rem; align-items: center; margin-bottom: 1.6rem; }
.route-start__heading .eyebrow { flex-shrink: 0; margin: 0; }
.route-start h2 { font-size: 1.65rem; max-width: none; }
.route-start__form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 1rem; align-items: end; }
.route-start__form .btn { min-height: 54px; }
.home-page .service-card { min-height: 0; background: #fff; color: var(--ink); box-shadow: none; border: 1px solid var(--line); }
.home-page .service-card img { position: static; height: auto; aspect-ratio: 16/10; object-fit: cover; }
.home-page .service-card::after { display: none; }
.home-page .service-card__content { flex: 1; display: flex; flex-direction: column; padding: 1.6rem; }
.home-page .service-card h3 { font-size: 1.65rem; }
.home-page .service-card p { color: var(--muted); }
.home-page .service-card .text-link { margin-top: auto; padding-top: .65rem; font-size: 1rem; }
.service-index { display: block; color: var(--orange-dark); font-size: .875rem; font-weight: 800; margin-bottom: .8rem; }
.step + .step { padding-left: 1.5rem; }
.step::before { font-size: 1rem; }
.route-board { box-shadow: none; }
.route-board::after { display: none; }
.cta-band, .cta-band p { color: var(--ink); }
.cta-band .btn--secondary { color: var(--ink); border-color: var(--ink); background: transparent; }
.cta-band .btn--secondary:hover { background: #ff793d; }
.footer { background: var(--ink); }
.footer-logo { width: 240px; max-width: 100%; padding: .7rem; }
.footer h3, .footer-bottom, .spec span { font-size: .875rem; }
.page-hero { padding: 5.2rem 0 4.6rem; }
.page-hero h1 { font-size: clamp(3rem,6vw,5.2rem); }
.page-hero--image { min-height: 560px; }
.field, .form-shell > *, .route-start__form > * { min-width: 0; }
.field label, .field-count, .field-hint, .movement-summary dt { font-size: .875rem; }
.field input, .field select, .field textarea { font-size: 1rem; }
.field input:user-invalid, .field select:user-invalid { border-color: #a32a16; }
.quote-page .section:first-child { padding: 3.5rem 0 5rem; }
.quote-page .form-shell { grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 3rem; }
.quote-page h1 { font-size: clamp(2.8rem,4.4vw,4.3rem); }
.quote-intro { position: static; }
.quote-intro .feature-box { padding: 1.3rem; background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--orange); }
.quote-intro .feature-box h3 { font-size: 1.15rem; margin-bottom: .65rem; }
.quote-intro .feature-box p { font-size: .95rem; margin-bottom: .6rem; }
.quote-form { box-shadow: 0 8px 28px rgba(7,29,47,.05); border: 1px solid var(--line); }
.form-section-title { display: flex; gap: .85rem; padding: 1rem 0 .4rem; border-top: 1px solid var(--line); margin-top: .75rem; }
.form-section-title:first-child { padding-top: 0; border: 0; margin-top: 0; }
.form-section-title > span { color: var(--orange-dark); font-weight: 800; font-size: .875rem; }
.form-section-title h2 { font-size: 1.3rem; line-height: 1.3; }
.form-section-title p { color: var(--muted); font-size: .875rem; margin: .3rem 0 0; }
.quote-readiness { box-shadow: none; }
.movement-summary dd { overflow-wrap: anywhere; }
.quote-review { width: min(720px,calc(100% - 2rem)); max-height: calc(100svh - 2rem); border: 0; padding: clamp(1.25rem,4vw,2.5rem); color: var(--ink); box-shadow: var(--shadow); }
.quote-review::backdrop { background: rgba(7,29,47,.75); }
.review-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.review-heading h2 { font-size: clamp(1.8rem,4vw,2.5rem); }
.review-close { flex-shrink: 0; width: 44px; height: 44px; border: 1px solid var(--line); background: white; color: var(--ink); font-size: 1.7rem; cursor: pointer; }
.review-notice { font-size: .95rem; border-left: 3px solid var(--orange); padding: .7rem 1rem; background: var(--paper); }
.quote-review pre { font: inherit; font-size: .95rem; white-space: pre-wrap; overflow-wrap: anywhere; padding: 1.2rem; background: var(--paper); }
[data-review-status] { margin-top: 1rem; font-size: .95rem; }
@media(min-width: 781px) and (max-width: 1080px) { .header-inner { grid-template-columns: 1fr auto; } }
@media(max-width: 1080px) {
 .route-start__form { grid-template-columns: 1fr 1fr; }
 .route-start__heading { display: block; }
 .route-start__heading .eyebrow { margin-bottom: .8rem; }
 .quote-page .form-shell { gap: 1.5rem; }
}
@media(max-width: 780px) {
 .header-inner { grid-template-columns: 1fr auto; }
 .hero { height: auto; min-height: 640px; align-items: flex-end; }
 .hero__media img { object-position: 70% center; }
 .hero__media::after { background: linear-gradient(0deg,rgba(7,29,47,.98),rgba(7,29,47,.76) 50%,rgba(7,29,47,.18)); }
 .hero__content { padding: 3rem 0; }
 .hero h1 { font-size: clamp(3.1rem,10vw,4.8rem); }
 .hero__content p:not(.eyebrow) { font-size: 1.0625rem; }
 .quote-page .form-shell { grid-template-columns: 1fr; }
 .quote-intro .lede { margin-top: 1rem !important; }
 .quote-intro .feature-box { margin-top: 1rem !important; }
 .quote-readiness { display: none; }
 .quote-page .section:first-child { padding-top: 2.5rem; }
 .cookie { bottom: calc(76px + env(safe-area-inset-bottom)); }
 .mobile-actions { height: calc(64px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); }
 .mobile-actions a { font-size: .875rem; }
 .mobile-actions a:last-child { color: var(--ink); }
 .page-hero--image { min-height: 460px; }
}
@media(max-width: 520px) {
 .container { width: calc(100% - 2rem); }
 .hero { min-height: 660px; }
 .hero-note { font-size: .875rem; }
 .fact { padding: 1.1rem .75rem; }
 .fact strong { font-size: .95rem; }
 .fact span { font-size: .875rem; }
 .route-start__form { grid-template-columns: 1fr; }
 .route-start { padding: 2.25rem 0; }
 .step + .step { padding-left: 0; }
 .route-board { padding: 1.3rem; }
 .route-board li { display: block; }
 .route-board li span { display: block; }
 .quote-page h1 { font-size: 2.8rem; }
 .footer-bottom { gap: .5rem; }
}
