:root {
  --navy: #16834f;
  --navy-2: #0f6b3f;
  --ink: #24503a;
  --red: #79bd3f;
  --red-dark: #0f6b3f;
  --paper: #f6fbf5;
  --white: #ffffff;
  --muted: #607b6d;
  --line: rgba(22, 131, 79, 0.18);
  --max: 1200px;
  --shadow: 0 22px 70px rgba(20, 110, 63, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 200; top: 1rem; left: 1rem; padding: .7rem 1rem; background: var(--white); color: var(--navy); transform: translateY(-180%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  width: min(calc(100% - 48px), var(--max));
  min-height: 92px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; background: var(--red); clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%); }
.brand-mark span { font-weight: 900; font-size: 1.25rem; line-height: 1; color: var(--white); transform: translate(-1px, -1px); }
.brand-copy { display: grid; line-height: 1; gap: .38rem; }
.brand-copy strong { font-size: .93rem; letter-spacing: .12em; }
.brand-copy small { font-size: .65rem; letter-spacing: .25em; opacity: .7; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { position: relative; text-decoration: none; font-size: .89rem; font-weight: 650; letter-spacing: .02em; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 2px; background: var(--red); transition: right .2s ease; }
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { padding: .7rem 1rem; border: 1px solid rgba(255,255,255,.55); }
.nav-cta:hover { background: var(--white); color: var(--navy); }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; }

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 42%, rgba(38, 90, 122, .4), transparent 28%),
    linear-gradient(120deg, #061421 0%, #0a2033 58%, #0d2a43 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, transparent 5%, black 72%, transparent); }
.hero::after { content: "SCS"; position: absolute; right: -2vw; bottom: -12vw; font-size: min(34vw, 520px); font-weight: 900; line-height: .8; letter-spacing: -.09em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.09); pointer-events: none; }
.hero-grid { position: relative; z-index: 2; width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 150px 0 90px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(350px, .75fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.eyebrow, .section-label { display: flex; align-items: center; gap: .7rem; margin: 0 0 1.5rem; font-size: .73rem; font-weight: 800; letter-spacing: .18em; }
.eyebrow > span { width: 34px; height: 3px; background: var(--red); }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3.2rem, 6.1vw, 6.7rem); line-height: .94; letter-spacing: -.055em; font-weight: 760; }
.hero-lead { max-width: 680px; margin: 2rem 0 0; color: rgba(255,255,255,.76); font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: .8rem; padding: .85rem 1.25rem; border: 1px solid transparent; text-decoration: none; font-weight: 760; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); }
.button-primary:hover { background: var(--red-dark); }
.button-ghost { border-color: rgba(255,255,255,.38); color: var(--white); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.trust-row { display: flex; flex-wrap: wrap; gap: .8rem 1.7rem; margin-top: 2.8rem; color: rgba(255,255,255,.63); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.trust-row span { display: flex; align-items: center; gap: .65rem; }
.trust-row span::before { content: ""; width: 4px; height: 4px; background: var(--red); border-radius: 50%; }

.route-board { position: relative; background: rgba(4,16,27,.72); border: 1px solid rgba(255,255,255,.17); box-shadow: 0 30px 70px rgba(0,0,0,.22); backdrop-filter: blur(14px); }
.board-head { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.12); font-size: .66rem; font-weight: 800; letter-spacing: .13em; color: rgba(255,255,255,.65); }
.live-dot { display: flex; align-items: center; gap: .5rem; }
.live-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #6ece9c; box-shadow: 0 0 0 5px rgba(110,206,156,.1); }
.board-map { position: relative; height: 290px; overflow: hidden; background: radial-gradient(circle at center, rgba(255,255,255,.06), transparent 62%); }
.route-line { position: absolute; display: block; height: 1px; background: linear-gradient(90deg, rgba(216,45,42,.15), var(--red), rgba(216,45,42,.15)); transform-origin: left center; }
.route-line::after { content: ""; position: absolute; width: 7px; height: 7px; right: 25%; top: -3px; border-radius: 50%; background: var(--white); box-shadow: 0 0 14px var(--white); }
.route-a { width: 240px; left: 48%; top: 64%; transform: rotate(-144deg); }
.route-b { width: 180px; left: 46%; top: 60%; transform: rotate(35deg); }
.route-c { width: 210px; left: 48%; top: 62%; transform: rotate(164deg); }
.route-node { position: absolute; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; display: grid; place-items: center; color: rgba(255,255,255,.8); font-size: .7rem; font-weight: 800; letter-spacing: .12em; background: rgba(7,23,39,.9); }
.node-ee { left: 42%; top: 52%; border-color: var(--red); color: var(--white); }
.node-pl { left: 20%; top: 27%; }.node-de { right: 18%; top: 28%; }.node-nl { left: 12%; bottom: 13%; }.node-at { right: 14%; bottom: 12%; }
.board-list > div { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,.11); }
.board-list span { font-size: .66rem; color: var(--red); font-weight: 850; }
.board-list strong { font-size: .82rem; }
.board-list small { color: rgba(255,255,255,.47); font-size: .7rem; }

.section-pad { padding: clamp(5rem, 9vw, 8.5rem) max(24px, calc((100vw - var(--max)) / 2)); }
.section-label { color: var(--muted); }
.section-label span { color: var(--red); }
.section-label.light { color: rgba(255,255,255,.54); }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.intro h2, .section-heading h2, .process h2, .quote h2 { margin: 0; font-size: clamp(2.4rem, 4.5vw, 4.7rem); line-height: 1.02; letter-spacing: -.045em; }
.intro-copy { padding-top: .5rem; }
.intro-copy p { margin: 0 0 1.4rem; color: #4d5b65; font-size: clamp(1.04rem, 1.3vw, 1.2rem); }

.services { background: var(--navy); color: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: 3rem; align-items: end; margin-bottom: 3.7rem; }
.section-heading > p { margin: 0; color: rgba(255,255,255,.59); }
.section-heading.dark > p { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.14); }
.service-card { min-height: 410px; padding: clamp(1.6rem, 3vw, 2.7rem); border-right: 1px solid rgba(255,255,255,.14); display: flex; flex-direction: column; transition: background-color .45s ease, box-shadow .45s ease; }
.service-card:last-child { border-right: 0; }
.service-card.is-active { background: #0d2a43; box-shadow: inset 0 4px 0 var(--red); }
.service-number { color: var(--red); font-size: .72rem; font-weight: 850; letter-spacing: .15em; }
.service-card h3 { margin: auto 0 1rem; font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.12; }
.service-card p { color: rgba(255,255,255,.62); margin: 0 0 1.7rem; }
.service-card ul { list-style: none; margin: 0; padding: 1.3rem 0 0; border-top: 1px solid rgba(255,255,255,.12); }
.service-card li { position: relative; padding-left: 1rem; margin: .5rem 0; font-size: .85rem; color: rgba(255,255,255,.73); }
.service-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 4px; height: 4px; border-radius: 50%; background: var(--red); }

.routes { background: #f8f7f3; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.route-card { min-height: 430px; padding: 1.8rem; background: #fff; display: flex; flex-direction: column; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; }
.route-card:hover { position: relative; z-index: 2; transform: translateY(-5px); box-shadow: var(--shadow); }
.route-card img { width: 62%; max-width: 230px; height: auto; margin: -1rem auto -.5rem; aspect-ratio: 1; object-fit: contain; flex: 0 0 auto; }
.route-card div { margin-top: auto; }
.route-card:not(.route-card-wide) { display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.route-card:not(.route-card-wide) > img { align-self: center; margin: 0 auto; }
.route-card:not(.route-card-wide) > div { margin-top: 0; }
.route-card span { font-size: .65rem; font-weight: 850; letter-spacing: .15em; color: var(--red); }
.route-card h3 { margin: .35rem 0 .4rem; font-size: 1.65rem; }
.route-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.route-card-wide { grid-column: span 2; flex-direction: row; align-items: center; gap: 2rem; }
.route-card-wide img { width: 44%; max-width: 340px; margin: 0; }
.route-card-wide div { margin: 0; }

.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); }
.process-copy p { max-width: 530px; margin: 1.7rem 0 0; color: var(--muted); font-size: 1.1rem; }
.keep-together { white-space: nowrap; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--red); font-weight: 850; font-size: .74rem; letter-spacing: .14em; }
.steps strong { font-size: 1.08rem; }
.steps p { margin: .25rem 0 0; color: var(--muted); font-size: .94rem; }

.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.faq-intro h2 { max-width: 560px; margin: 0; color: var(--navy-2); font-size: clamp(2.4rem, 4.5vw, 4.7rem); line-height: 1.02; letter-spacing: -.045em; }
.faq-intro > p { max-width: 520px; margin: 1.5rem 0 0; color: var(--muted); font-size: 1.05rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.45rem 3rem 1.45rem 0; color: var(--navy-2); font-size: 1.02rem; font-weight: 780; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: .25rem; color: var(--navy); font-size: 1.5rem; font-weight: 400; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 680px; margin: -.3rem 3rem 1.45rem 0; color: var(--muted); }
.contact-links address { font-style: normal; }

.quote { background: linear-gradient(120deg, #081827, #0d2b45); color: var(--white); }
.quote-shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 7vw, 6rem); align-items: start; }
.quote-info > p { margin: 1.5rem 0 0; max-width: 500px; color: rgba(255,255,255,.62); }
.contact-links { margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.15); }
.contact-links > * { display: grid; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.15); text-decoration: none; }
.contact-links small { font-size: .65rem; letter-spacing: .16em; color: rgba(255,255,255,.46); }
.contact-links strong { font-size: .95rem; }
.quote-form { padding: clamp(1.5rem, 4vw, 3rem); background: var(--white); color: var(--ink); box-shadow: 0 28px 80px rgba(0,0,0,.2); }
.quote-form label { display: grid; gap: .45rem; margin-bottom: 1rem; font-size: .76rem; font-weight: 790; letter-spacing: .04em; }
.quote-form label span { color: var(--muted); font-weight: 500; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.quote-form input, .quote-form textarea, .quote-form select { width: 100%; min-height: 49px; padding: .75rem .85rem; color: var(--ink); background: #f8f8f6; border: 1px solid #d9dddf; border-radius: 0; outline: none; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(7,23,39,.08); }
.form-date-control { position: relative; display: block; }
.quote-form .form-date-control > input[type="text"] { padding-right: 48px; }
.form-calendar-button {
  position: absolute; z-index: 2; top: 5px; right: 5px; width: 39px; height: 39px; padding: 0;
  color: var(--navy); background: #e8f5eb; border: 0; font-size: 16px; cursor: pointer;
}
.quote-form .form-date-control > input.form-native-date {
  position: absolute; z-index: 0; top: 5px; right: 5px; width: 1px; min-width: 1px; max-width: 1px;
  height: 1px; min-height: 1px; padding: 0; border: 0; opacity: 0; pointer-events: none;
}
.submit-button { width: 100%; border: 0; margin-top: .25rem; }
.form-note { margin: .8rem 0 0; color: var(--muted); font-size: .74rem; text-align: center; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-success[hidden] { display: none; }
.quote-form.is-sent > :not(.form-success) { display: none; }
.form-success {
  min-height: 500px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(1.5rem, 5vw, 3.5rem); text-align: center; background: #eff9f1; outline: none;
}
.form-success-icon {
  display: grid; place-items: center; width: 76px; height: 76px; margin-bottom: 1.25rem;
  color: var(--white); background: var(--navy); border-radius: 50%; font-size: 2.8rem; font-weight: 800;
}
.form-success-kicker { margin: 0 0 .75rem; color: var(--navy); font-size: .72rem; font-weight: 850; letter-spacing: .18em; }
.form-success h3 { max-width: 520px; margin: 0; color: var(--navy-2); font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.05; }
.form-success > p:not(.form-success-kicker) { max-width: 470px; margin: 1.1rem 0 1.8rem; color: var(--muted); }
.form-success .button { border: 0; }

.site-footer { padding: 3.3rem max(24px, calc((100vw - var(--max)) / 2)) 2rem; background: #04101b; color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1fr auto 48px; align-items: center; gap: 2rem; padding-bottom: 2.3rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-top p { margin: 0; color: rgba(255,255,255,.5); }
.footer-arrow { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); text-decoration: none; font-size: 1.2rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem 2rem; padding-top: 1.5rem; color: rgba(255,255,255,.46); font-size: .72rem; letter-spacing: .04em; }
.footer-bottom a { text-decoration: none; }

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 155px; }
  .route-board { max-width: 620px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .service-card h3 { margin-top: 4rem; }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .route-card-wide { grid-column: span 2; }
  .quote-shell { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; border: 0; }
  .contact-links > * { border-top: 1px solid rgba(255,255,255,.15); }
}

@media (max-width: 760px) {
  .site-header { width: min(calc(100% - 36px), var(--max)); min-height: 78px; }
  .menu-toggle { position: relative; z-index: 60; width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; }
  .menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; background: currentColor; }
  .site-nav { position: fixed; inset: 0; padding: 110px 28px 40px; background: rgba(4,16,27,.98); display: flex; flex-direction: column; align-items: flex-start; gap: 1.6rem; transform: translateY(-105%); transition: transform .25s ease; }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { font-size: 1.45rem; }
  .nav-cta { margin-top: 1rem; font-size: 1rem !important; }
  .hero-grid { width: min(calc(100% - 36px), var(--max)); gap: 3.5rem; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5.2rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .board-list > div { grid-template-columns: 28px 1fr; }
  .board-list small { grid-column: 2; }
  .intro-grid, .section-heading, .process-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-heading { align-items: start; }
  .section-pad { padding-left: 18px; padding-right: 18px; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card, .route-card-wide { grid-column: auto; min-height: 390px; flex-direction: column; align-items: stretch; }
  .route-card-wide img { width: 68%; max-width: 260px; margin: -1rem auto -.5rem; }
  .route-card-wide div { margin-top: auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-links { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 46px; }
  .footer-top p { grid-column: 1 / -1; grid-row: 2; }
  .footer-arrow { grid-column: 2; grid-row: 1; }
  .footer-bottom { flex-direction: column; }
}

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

/* Green SCS brand direction */
.site-header {
  min-height: 104px;
  color: var(--navy-2);
  border-bottom-color: var(--line);
}
.brand img {
  width: 210px;
  height: 84px;
  object-fit: contain;
  object-position: left center;
}
.site-nav > a:not(.nav-cta)::after { background: var(--red); }
.nav-cta { color: var(--navy); border-color: var(--navy); background: rgba(255,255,255,.75); }
.nav-cta:hover { color: var(--white); background: var(--navy); }

.hero {
  color: var(--ink);
  background: linear-gradient(120deg, #fbfefa 0%, #eef8ef 57%, #dff1e5 100%);
}
.hero::before {
  opacity: .3;
  background-image: linear-gradient(rgba(22,131,79,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(22,131,79,.1) 1px, transparent 1px);
  mask-image: linear-gradient(to right, transparent 5%, #fff 72%, transparent);
}
.hero::after { display: none; }
.hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr); padding-top: 155px; }
.eyebrow { color: var(--navy); }
.hero h1 { color: var(--navy-2); }
.hero-lead { color: var(--muted); }
.button-primary { background: var(--navy); }
.button-primary:hover { background: var(--navy-2); }
.button-ghost { color: var(--navy); border-color: var(--navy); background: rgba(255,255,255,.6); }
.button-ghost:hover { color: var(--navy-2); border-color: var(--navy-2); background: var(--white); }
.trust-row { color: var(--muted); }
.trust-row span::before { width: 6px; height: 6px; background: var(--red); }

.hero-visual { position: relative; margin: 0; padding: 0 0 28px 28px; }
.hero-visual::before { content: ""; position: absolute; left: 0; bottom: 0; width: 72%; height: 78%; background: #f5bd16; opacity: .8; }
.hero-visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 48% 48% 12px 12px; box-shadow: var(--shadow); }
.hero-visual figcaption { position: absolute; z-index: 3; right: -18px; bottom: 0; width: min(82%, 360px); padding: 1.1rem 1.3rem; color: var(--white); background: var(--navy); box-shadow: 0 15px 40px rgba(22,131,79,.22); }
.hero-visual figcaption span { display: block; color: rgba(255,255,255,.74); font-size: .66rem; font-weight: 850; letter-spacing: .15em; }
.hero-visual figcaption strong { font-size: 1rem; }

.intro { background: var(--white); }
.intro h2, .process h2 { color: var(--navy-2); }
.intro-copy p { color: var(--muted); }
.certification { display: grid; grid-template-columns: 180px 1fr; gap: 1.25rem; align-items: center; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.certification img { width: 180px; height: auto; }
.certification div { display: grid; gap: .25rem; }
.certification strong { color: var(--navy-2); font-size: 1rem; }
.certification span { color: var(--muted); font-size: .9rem; }

.services { background: linear-gradient(125deg, var(--navy-2), var(--navy) 62%, #2b9b57); }
.service-card.is-active { background: rgba(255,255,255,.12); box-shadow: inset 0 4px 0 #cdef8a; }
.service-number { color: #cdef8a; }
.service-card li::before { background: #cdef8a; }
.routes { background: #f0f8f2; }
.route-card span { color: var(--navy); }
.route-card h3 { color: var(--navy-2); }
.quote { background: linear-gradient(125deg, #70b836, var(--navy) 58%, var(--navy-2)); }
.quote-form { box-shadow: 0 28px 80px rgba(20,110,63,.25); }
.quote-form input, .quote-form textarea, .quote-form select { color: var(--ink); background: #f5faf5; border-color: #cfe4d5; }
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(22,131,79,.1); }
.site-footer { color: var(--navy-2); background: #eaf7ed; }
.footer-brand { width: 220px; padding: .55rem .85rem; background: var(--white); }
.footer-brand img { width: 100%; height: 76px; object-fit: contain; }

@media (max-width: 980px) {
  .hero-visual { max-width: 650px; }
  .hero-visual img { aspect-ratio: 4 / 3; border-radius: 38% 38% 12px 12px; }
}

@media (max-width: 760px) {
  .site-header { min-height: 88px; }
  .brand img { width: 165px; height: 70px; }
  .site-nav { color: var(--navy-2); background: rgba(240,248,242,.99); }
  .hero-visual { padding: 0 0 22px 18px; }
  .hero-visual figcaption { right: -4px; width: 88%; }
  .certification { grid-template-columns: 130px 1fr; }
  .certification img { width: 130px; }
}

/* Refinements: cleaner labels, route image and quote helper */
.section-label { gap: 0; }

.route-photo-card {
  grid-column: span 2;
  min-height: 430px;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(0, 1.22fr);
  overflow: hidden;
  background: var(--navy-2);
  color: var(--white);
}
.route-photo-card figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.8rem, 3.8vw, 3.4rem);
}
.route-photo-card figcaption > span {
  margin-bottom: .8rem;
  color: #cdef8a;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .15em;
}
.route-photo-card strong {
  max-width: 430px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
}
.route-photo-card p {
  max-width: 420px;
  margin: 1.1rem 0 0;
  color: rgba(255,255,255,.7);
}
.route-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.footer-brand {
  width: 210px;
  height: 84px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  background: transparent;
  text-decoration: none;
}
.footer-brand img { width: 100%; height: 100%; object-fit: contain; }
.site-footer .footer-top { border-bottom-color: rgba(15,107,63,.18); }
.site-footer .footer-top p { color: var(--muted); }
.site-footer .footer-arrow { border-color: rgba(15,107,63,.3); }
.site-footer .footer-bottom { color: var(--muted); }

.quote-guide {
  position: fixed;
  z-index: 80;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  display: grid;
  justify-items: end;
  gap: .8rem;
}
.quote-guide-toggle {
  position: relative;
  min-height: 70px;
  padding: .55rem 1.35rem .55rem .55rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--white);
  background: #07984d;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(10,84,48,.28);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
}
.quote-guide-toggle:hover { background: #087d42; transform: translateY(-2px); }
.quote-guide-toggle:focus-visible { outline: 3px solid #f5bd16; outline-offset: 3px; }
.quote-guide-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
}
.quote-guide-icon img { width: 44px; height: 44px; object-fit: contain; }
.quote-guide-toggle i {
  position: absolute;
  top: 2px;
  right: 7px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #f32d47;
}
.quote-guide-panel {
  position: relative;
  width: min(350px, calc(100vw - 36px));
  padding: 1.55rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfe4d5;
  box-shadow: 0 22px 60px rgba(8,61,37,.24);
}
.quote-guide-panel[hidden] { display: none; }
.quote-guide-panel::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-right: 1px solid #cfe4d5;
  border-bottom: 1px solid #cfe4d5;
  transform: rotate(45deg);
}
.quote-guide-close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--navy-2);
  background: #edf7ef;
  font-size: 1.35rem;
  cursor: pointer;
}
.quote-guide-kicker { display: block; margin-bottom: .55rem; color: var(--navy); font-size: .66rem; font-weight: 850; letter-spacing: .15em; }
.quote-guide-panel > strong { display: block; padding-right: 2rem; color: var(--navy-2); font-size: 1.35rem; line-height: 1.15; }
.quote-guide-panel p { margin: .8rem 0 .45rem; color: var(--muted); font-size: .92rem; }
.quote-guide-panel ul { margin: 0 0 1.15rem; padding-left: 1.15rem; color: var(--muted); font-size: .88rem; }
.quote-guide-panel li { margin: .3rem 0; }
.quote-guide-action { display: flex; justify-content: space-between; padding: .85rem 1rem; color: var(--white); background: var(--navy); text-decoration: none; font-weight: 800; }
.quote-guide-action:hover { background: var(--navy-2); }

@media (max-width: 760px) {
  .footer-brand { width: 165px; height: 70px; }
  .route-photo-card { grid-column: auto; grid-template-columns: 1fr; }
  .route-photo-card img { grid-row: 1; min-height: 300px; max-height: 360px; }
  .route-photo-card figcaption { grid-row: 2; }
  .quote-guide { right: 14px; bottom: 14px; }
  .quote-guide-toggle { min-height: 62px; padding-right: 1.1rem; font-size: .98rem; }
  .quote-guide-icon { width: 48px; height: 48px; }
  .quote-guide-icon img { width: 39px; height: 39px; }
}

/* Journey hero */
.site-header {
  left: 0;
  width: 100%;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  transform: none;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(22,131,79,.12);
}
.hero {
  min-height: 800px;
  background:
    linear-gradient(90deg, rgba(246,251,245,.98) 0%, rgba(246,251,245,.92) 28%, rgba(238,248,239,.7) 48%, rgba(238,248,239,.14) 70%, rgba(238,248,239,0) 100%),
    url('/assets/road-hero.webp') center center / cover no-repeat;
}
.hero::before { display: none; }
.hero-grid { grid-template-columns: 1fr; }
.hero-copy { max-width: 700px; padding: 3rem 2.8rem 3rem 0; }
.hero h1 { text-shadow: 0 2px 18px rgba(255,255,255,.72); }

@media (max-width: 760px) {
  .site-header { padding-left: 18px; padding-right: 18px; }
  .hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(246,251,245,.96) 0%, rgba(246,251,245,.87) 50%, rgba(246,251,245,.34) 78%, rgba(246,251,245,.12) 100%),
      url('/assets/road-hero.webp') 58% center / cover no-repeat;
  }
  .hero-copy { padding: 2rem 0 8rem; }
}

/* Final mobile header: one calm, predictable layout on phones */
@media (max-width: 760px) {
  .site-header {
    z-index: 100;
    width: 100%;
    height: 76px;
    min-height: 76px;
    padding: 0 18px;
    background: rgba(255,255,255,.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 1px 0 rgba(22,131,79,.14), 0 8px 24px rgba(5,72,43,.06);
  }

  .brand {
    position: relative;
    z-index: 102;
    flex: 0 0 auto;
  }

  .brand img {
    width: 142px;
    height: 62px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(22,131,79,.22);
    border-radius: 50%;
    color: var(--navy-2);
    background: rgba(240,248,242,.92);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 10px;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transform-origin: center;
    transition: top .2s ease, transform .2s ease, opacity .15s ease;
  }

  .menu-toggle span:nth-child(1) { top: 14px; }
  .menu-toggle span:nth-child(2) { top: 21px; }
  .menu-toggle span:nth-child(3) { top: 28px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100dvh - 76px);
    padding: 26px 22px 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--navy-2);
    background: linear-gradient(180deg, #f7fcf8 0%, #edf8f0 100%);
    box-shadow: inset 0 1px 0 rgba(22,131,79,.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    width: 100%;
    padding: 1rem .2rem;
    border-bottom: 1px solid rgba(22,131,79,.15);
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .site-nav > a:not(.nav-cta)::after { display: none; }

  .site-nav .nav-cta {
    margin-top: 1.25rem;
    padding: .95rem 1.1rem;
    border: 0;
    text-align: center;
    color: var(--white);
    background: var(--navy);
  }

  .hero { min-height: 720px; }
  .hero-grid { padding-top: 118px; }
  .hero-copy { padding: 1.25rem 0 6rem; }
  .hero h1 { font-size: clamp(2.45rem, 11.5vw, 3.35rem); line-height: .98; }
}

@media (max-width: 380px) {
  .brand img { width: 128px; height: 58px; }
}

@media (max-width: 760px) and (max-height: 600px) {
  .hero { min-height: 620px; }
  .hero-grid { padding-top: 104px; }
  .hero-copy { padding-bottom: 3.5rem; }
}
