/* =========================================================================
   Solid Transport Inc — site design
   Palette from the logo: deep forest green wordmark + aqua crescent emblem,
   on a warm light ground. Display: Bitter (slab serif, close to the logo
   lettering). Text: Figtree. Motif: soft arcs, rings and crescents.
   ========================================================================= */

/* ---------- fonts (self-hosted, latin subset, variable) ---------- */
@font-face { font-family: "Bitter"; font-style: normal; font-weight: 400 800; font-display: swap; src: url("/assets/fonts/bitter-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Bitter"; font-style: italic; font-weight: 400 600; font-display: swap; src: url("/assets/fonts/bitter-italic-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Figtree"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("/assets/fonts/figtree-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ---------- tokens ---------- */
:root {
  --forest: #16593f;
  --forest-deep: #0f3f2e;
  --forest-night: #0b3024;
  --ink: #10271f;
  --aqua: #00e6cf;
  --aqua-soft: #2cefd9;
  --aqua-deep: #00665b;
  --mint: #e2f3ec;
  --mint-2: #eaf5f0;
  --cream: #f6f1e7;
  --cream-2: #efe8da;
  --paper: #fffdf8;

  --c-accent: #16593f; --c-accent-dark: #0f3f2e; --c-accent-ring: rgba(22, 89, 63, .18); --c-accent-tint: #e2f3ec;
  --c-ink: #10271f; --c-body: #3b4943; --c-muted: #56635d; --c-line: #e3dacb; --c-input: #8a8171; --c-consent: #f4efe4;
  --c-surface: #fffdf8; --c-success: #166534; --c-success-bg: #e2f3ec; --c-danger: #a61b1b; --c-danger-bg: #fdf0ee;
  --r-sm: 12px; --r: 18px; --r-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(16, 39, 31, .06), 0 2px 8px rgba(16, 39, 31, .04);
  --shadow: 0 30px 60px -30px rgba(16, 39, 31, .28), 0 8px 20px -12px rgba(16, 39, 31, .12);
  --f-display: "Bitter", "Rockwell", "Roboto Slab", Georgia, serif;
  --f-text: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;
  --header-h: 84px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--cream); color: var(--c-body); font-family: var(--f-text); font-size: 1rem; line-height: 1.7; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); font-weight: 600; line-height: 1.15; letter-spacing: -.01em; margin: 0; }
p { margin: 0 0 1em; }
a { color: var(--forest); text-underline-offset: 3px; transition: color .25s ease; }
a:hover { color: var(--forest-deep); }
ul, ol { margin: 0; }
.container { max-width: 1280px; padding-inline: 24px; }
:focus-visible { outline: 3px solid var(--aqua-deep); outline-offset: 3px; }
.skip-link { background: var(--forest-deep); }
.section { position: relative; padding-block: 112px; }

.kicker { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--aqua-deep); }
.kicker-light { color: var(--aqua-soft); }
.crescent { width: 18px; height: 18px; border-radius: 50%; box-shadow: inset -5px 4px 0 0 var(--aqua); flex: none; transform: rotate(-20deg); }
.kicker-light .crescent { box-shadow: inset -5px 4px 0 0 var(--aqua-soft); }
.section-title { font-size: clamp(2rem, 1.35rem + 1.9vw, 2.85rem); line-height: 1.1; margin-bottom: 18px; text-wrap: balance; }
.section-sub { font-size: 1.1rem; color: var(--c-body); max-width: 60ch; margin: 0; }
.section-head { margin-bottom: 56px; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin-inline: auto; }
.section-head-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 64px; align-items: end; }

/* ---------- buttons ---------- */
.btn { border-radius: 999px; padding: 15px 26px; min-height: 52px; font-weight: 650; letter-spacing: .005em; }
.btn .ico-arrow { transition: transform .25s var(--ease); }
.btn:hover .ico-arrow { transform: translateX(3px); }
.btn-primary { background: var(--forest); color: #fff; box-shadow: 0 10px 22px -12px rgba(15, 63, 46, .7); }
.btn-primary:hover { background: var(--forest-deep); color: #fff; }
.btn-outline { background: transparent; color: var(--forest-deep); border-color: rgba(22, 89, 63, .45); }
.btn-outline:hover { background: var(--paper); border-color: var(--forest); color: var(--forest-deep); }
.btn-aqua { background: var(--aqua-soft); color: var(--forest-night); }
.btn-aqua:hover { background: #7df6e8; color: var(--forest-night); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; min-height: 44px; font-size: .925rem; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(246, 241, 231, .94); border-bottom: 1px solid transparent; transition: box-shadow .25s ease, border-color .25s ease, background .25s ease; }
@supports (backdrop-filter: blur(8px)) { .site-header { background: rgba(246, 241, 231, .82); backdrop-filter: saturate(1.4) blur(14px); } }
.site-header.is-scrolled { border-bottom-color: var(--c-line); box-shadow: 0 10px 30px -18px rgba(16, 39, 31, .25); }
.header-inner { display: flex; align-items: center; gap: 28px; min-height: var(--header-h); }
.brand { display: block; flex: none; }
.brand img { width: 186px; height: auto; }
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { list-style: none; padding: 0; display: flex; gap: 4px; }
.nav-list a { position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px; border-radius: 999px; font-size: .95rem; font-weight: 600; color: var(--ink); text-decoration: none; transition: background .25s ease, color .25s ease; }
.nav-list a:hover { background: rgba(22, 89, 63, .08); color: var(--forest-deep); }
.nav-list a[aria-current="page"] { background: var(--mint); color: var(--forest-deep); }
.nav-extra { display: none; }
.header-actions { display: flex; align-items: center; gap: 14px; flex: none; }
.header-phone { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; text-decoration: none; color: var(--ink); }
.header-phone-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--mint); color: var(--forest); }
.header-phone-ico .ico { width: 18px; height: 18px; }
.header-phone-txt { display: grid; line-height: 1.2; font-weight: 700; font-size: .98rem; }
.header-phone-txt small { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted); }
.header-phone:hover { color: var(--forest); }
.nav-toggle { display: none; place-items: center; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(22, 89, 63, .35); background: var(--paper); color: var(--forest-deep); cursor: pointer; }
.nav-toggle .ico { width: 22px; height: 22px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: 48px 104px; background: radial-gradient(1200px 600px at 85% -10%, #fbf8f1 0%, rgba(251, 248, 241, 0) 60%), var(--cream); }
.hero-rings { position: absolute; left: -260px; bottom: -420px; width: 1100px; height: 1100px; pointer-events: none; }
.hero-rings span { position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(0, 170, 152, .22); }
.hero-rings span:nth-child(2) { inset: 130px; border-color: rgba(0, 170, 152, .18); }
.hero-rings span:nth-child(3) { inset: 260px; border-color: rgba(0, 170, 152, .12); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); grid-template-areas: "copy form" "media form"; gap: 40px 64px; align-items: start; }
.hero-copy { grid-area: copy; padding-top: 28px; }
.hero-media { grid-area: media; }
.hero-form { grid-area: form; }
.hero h1 { font-size: clamp(2.6rem, 1.5rem + 3.3vw, 4.3rem); line-height: 1.04; letter-spacing: -.02em; font-weight: 600; margin-bottom: 22px; max-width: 14ch; }
.hero h1 em { font-style: italic; font-weight: 500; color: var(--forest); background: linear-gradient(transparent 68%, rgba(0, 230, 207, .38) 68%, rgba(0, 230, 207, .38) 92%, transparent 92%); padding-inline: 2px; }
.lede { font-size: 1.15rem; line-height: 1.7; max-width: 54ch; color: var(--c-body); margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-media { position: relative; margin: 0; }
.hero-img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 360px 360px 28px 28px / 300px 300px 28px 28px; box-shadow: var(--shadow); }
.hero-media::before { content: ""; position: absolute; right: -26px; top: -26px; width: 132px; height: 132px; border-radius: 50%; box-shadow: inset -22px 18px 0 0 var(--aqua); transform: rotate(-12deg); z-index: -1; }
.hero-badge { position: absolute; left: 24px; bottom: -26px; display: flex; align-items: center; gap: 14px; padding: 12px 22px 12px 12px; border-radius: 999px; background: var(--paper); border: 1px solid var(--c-line); box-shadow: var(--shadow); color: var(--c-muted); font-size: .85rem; line-height: 1.3; }
.hero-badge strong { display: block; color: var(--ink); font-size: .95rem; font-weight: 700; }
.hero-badge-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--forest); color: var(--aqua-soft); }

/* ---------- form cards ---------- */
.form-card { position: relative; overflow: hidden; background: var(--paper); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 38px; box-shadow: var(--shadow); }
.form-card > h2, .form-card > h3 { font-family: var(--f-display); font-weight: 600; font-size: 1.7rem; line-height: 1.2; color: var(--ink); margin: 0 0 8px; }
.form-card .card-sub { color: var(--c-muted); font-size: .95rem; margin: 0 0 24px; }
.card-kicker { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 14px; padding: 6px 14px; border-radius: 999px; background: var(--mint); color: var(--aqua-deep); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.quote-card::before { content: ""; position: absolute; top: -70px; right: -70px; width: 190px; height: 190px; border-radius: 50%; box-shadow: inset -26px 22px 0 0 rgba(0, 230, 207, .22); pointer-events: none; }
.quote-card { border-top: 5px solid var(--forest); }
.field label { font-size: .88rem; color: var(--ink); }
.req { color: var(--c-danger); }
.input, .select, .textarea { min-height: 50px; border-radius: var(--r-sm); border-color: var(--c-input); background: #fff; }
.input::placeholder, .textarea::placeholder { color: #66716b; }
.input:hover, .select:hover, .textarea:hover { border-color: #978d7b; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 4px var(--c-accent-ring); }
.consent { background: var(--c-consent); border-color: var(--c-line); border-radius: 14px; }
.consent-label { color: var(--c-body); }
.consent-label input { accent-color: var(--forest); }
.consent-label a { color: var(--forest-deep); }
.form-note { color: var(--c-muted); }
.form-note .ico { color: var(--forest); }
.form-status.is-success { border-color: #a7dcc4; }

/* ---------- facts band ---------- */
.facts { position: relative; z-index: 2; margin-top: -52px; }
.facts-row { list-style: none; margin: 0; padding: 10px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: var(--paper); border: 1px solid var(--c-line); border-radius: 999px; box-shadow: var(--shadow); }
.fact { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 16px 20px; position: relative; }
.fact + .fact::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--c-line); }
.fact-val { font-family: var(--f-display); font-weight: 600; font-size: 2.5rem; line-height: 1; color: var(--forest); }
.fact-val-sm { font-size: 1.55rem; }
.fact-lbl { display: grid; line-height: 1.3; font-weight: 700; color: var(--ink); font-size: .95rem; }
.fact-lbl small { font-weight: 500; font-size: .8rem; color: var(--c-muted); }

/* ---------- services ---------- */
.services { background: var(--cream); padding-top: 120px; }
.services-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 64px; align-items: start; }
.services-intro { position: sticky; top: calc(var(--header-h) + 32px); }
.services-photo { margin-top: 36px; }
.services-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 28px 28px 28px 220px; }
.svc-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.svc-card { position: relative; padding: 32px 30px 30px; background: var(--paper); border: 1px solid var(--c-line); border-radius: 24px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(0, 170, 152, .45); }
.svc-card:nth-child(even) { transform: translateY(32px); }
.svc-card:nth-child(even):hover { transform: translateY(28px); }
.svc-ico { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--mint); color: var(--forest); margin-bottom: 22px; position: relative; }
.svc-ico::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid rgba(0, 170, 152, .25); }
.svc-ico .ico { width: 24px; height: 24px; }
.svc-num { position: absolute; top: 28px; right: 30px; font-family: var(--f-display); font-style: italic; font-size: 1rem; color: var(--c-muted); }
.svc-card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.svc-card p { margin: 0; font-size: .98rem; }

/* ---------- about ---------- */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; align-items: center; }
.about-media { position: relative; padding-bottom: 40px; }
.about-arch img { width: 88%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 400px 400px 28px 28px; }
.about-circle { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; border-radius: 50%; padding: 10px; background: var(--paper); }
.about-circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.about-circle::before { content: ""; position: absolute; inset: -18px; border-radius: 50%; border: 1.5px dashed rgba(0, 150, 134, .45); }
.about-copy p { font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; margin: 28px 0 34px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); line-height: 1.45; }
.check-list .ico { width: 26px; height: 26px; padding: 5px; border-radius: 50%; background: var(--forest); color: var(--aqua-soft); flex: none; }
.about-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- process ---------- */
.process { background: var(--forest-deep); color: #cfe2d9; overflow: hidden; }
.process .section-title { color: #fff; }
.process .section-sub { color: #cfe2d9; }
.process-arc { position: absolute; left: 50%; top: 58%; width: 1500px; height: 1500px; transform: translateX(-50%); border-radius: 50%; border: 1.5px solid rgba(44, 239, 217, .16); pointer-events: none; }
.process-arc::before { content: ""; position: absolute; inset: 120px; border-radius: 50%; border: 1.5px solid rgba(44, 239, 217, .1); }
.process::before { content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; box-shadow: inset -60px 50px 0 0 rgba(44, 239, 217, .08); pointer-events: none; }
.steps { position: relative; list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.steps::before { content: ""; position: absolute; top: 40px; left: 12%; right: 12%; height: 1.5px; background: repeating-linear-gradient(90deg, rgba(44, 239, 217, .45) 0 8px, transparent 8px 16px); }
.step { position: relative; text-align: center; padding: 0 8px; }
.step-mark { position: relative; display: grid; place-items: center; width: 82px; height: 82px; margin: 0 auto 26px; border-radius: 50%; background: var(--forest-night); border: 1.5px solid rgba(44, 239, 217, .5); color: var(--aqua-soft); }
.step-mark .ico { width: 30px; height: 30px; }
.step-num { position: absolute; top: -4px; right: -4px; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--aqua-soft); color: var(--forest-night); font-family: var(--f-display); font-weight: 700; font-size: .9rem; }
.step h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.step p { margin: 0; color: #cfe2d9; font-size: .98rem; }

/* ---------- dispatch ---------- */
.dispatch { background: var(--cream); }
.dispatch-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 80px; align-items: center; }
.msg-list { list-style: none; padding: 0; display: grid; gap: 14px; margin: 32px 0 26px; }
.msg-list li { display: flex; gap: 16px; align-items: center; padding: 16px 20px; border-radius: 20px; background: var(--paper); border: 1px solid var(--c-line); }
.msg-list strong { display: block; color: var(--ink); font-size: 1.02rem; }
.msg-list li > span:last-child { line-height: 1.45; color: var(--c-body); font-size: .95rem; }
.msg-ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--mint); color: var(--forest); flex: none; }
.dispatch-note { display: flex; gap: 12px; margin: 0; padding: 16px 18px; border-radius: 16px; background: var(--mint-2); border: 1px solid #cfe6dc; font-size: .88rem; line-height: 1.6; color: var(--c-body); }
.dispatch-note .ico { width: 18px; height: 18px; margin-top: 3px; color: var(--forest); }
.dispatch-note a { color: var(--forest-deep); font-weight: 600; }
.dispatch-media { position: relative; width: 100%; max-width: 540px; justify-self: center; }
.dispatch-media img { position: relative; width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; box-shadow: var(--shadow); }
.dispatch-media::before { content: ""; position: absolute; inset: -22px -22px -22px -22px; border-radius: 50%; box-shadow: inset 34px -26px 0 0 var(--aqua); transform: rotate(8deg); }
.dispatch-media::after { content: ""; position: absolute; inset: -54px; border-radius: 50%; border: 1.5px solid rgba(0, 170, 152, .25); pointer-events: none; }
.dispatch-chip { position: absolute; left: -8px; bottom: 36px; display: flex; align-items: center; gap: 12px; padding: 12px 22px 12px 12px; border-radius: 999px; background: var(--forest-deep); color: #cfe2d9; box-shadow: var(--shadow); z-index: 1; }
.dispatch-chip > .ico { width: 44px; height: 44px; padding: 11px; border-radius: 50%; background: var(--aqua-soft); color: var(--forest-night); }
.dispatch-chip span { display: grid; line-height: 1.25; }
.dispatch-chip small { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: #bcd5ca; }
.dispatch-chip a { color: #fff; font-weight: 700; font-size: 1.05rem; text-decoration: none; }
.dispatch-chip a:hover { color: var(--aqua-soft); }

/* ---------- gallery ---------- */
.gallery { background: var(--paper); }
.gallery .section-sub { justify-self: end; }
.g-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 250px; gap: 18px; }
.g-item { position: relative; border-radius: 22px; overflow: hidden; background: var(--cream-2); }
.g-item.g-tall { grid-row: span 2; border-radius: 240px 22px 22px 22px; }
.g-item:last-child { grid-column: span 2; border-radius: 22px 22px 180px 22px; }
.g-open { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; position: relative; font: inherit; }
.g-open img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-open:hover img { transform: scale(1.04); }
.g-open:focus-visible { outline-offset: -4px; }
.g-cap { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(11, 48, 36, .86); color: #fff; font-size: .82rem; font-weight: 600; text-align: left; }
.g-item.g-tall .g-cap { left: 18px; bottom: 18px; }
.lightbox { width: min(1100px, calc(100vw - 32px)); max-width: none; max-height: calc(100vh - 32px); padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(8, 28, 21, .88); }
.lb-inner { position: relative; }
.lb-figure { margin: 0; }
.lb-figure img { width: 100%; max-height: calc(100vh - 140px); object-fit: contain; border-radius: 18px; }
.lb-figure figcaption { margin-top: 12px; color: #e7f2ed; text-align: center; font-weight: 600; }
.lb-btn { position: absolute; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--paper); color: var(--forest-deep); cursor: pointer; box-shadow: var(--shadow); }
.lb-btn:hover { background: var(--aqua-soft); }
.lb-prev { left: 12px; top: 45%; }
.lb-next { right: 12px; top: 45%; }
.lb-close { right: 12px; top: 12px; }

/* ---------- careers ---------- */
.careers { background: var(--cream); }
.careers::before { content: ""; position: absolute; left: -180px; top: 80px; width: 420px; height: 420px; border-radius: 50%; border: 1.5px solid rgba(0, 170, 152, .18); pointer-events: none; }
.careers-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: start; }
.careers-photo { margin-top: 32px; }
.careers-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center 30%; border-radius: 28px 220px 28px 28px; }
.careers .check-list { margin-bottom: 0; }
.driver-card { border-top: 5px solid var(--aqua-soft); }

/* ---------- contact (home) ---------- */
.contact-home { background: var(--mint-2); }
.contact-home::after { content: ""; position: absolute; right: -200px; bottom: -200px; width: 560px; height: 560px; border-radius: 50%; box-shadow: inset -70px 60px 0 0 rgba(0, 230, 207, .14); pointer-events: none; }
.contact-home-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 72px; align-items: start; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 14px; margin: 32px 0 0; }
.contact-list li { display: flex; gap: 16px; align-items: center; line-height: 1.45; color: var(--ink); font-weight: 600; }
.contact-list small { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); }
.contact-list a { color: var(--ink); text-decoration: none; display: inline-block; padding-block: 2px; }
.contact-list a:hover { color: var(--forest); text-decoration: underline; }
.contact-ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--paper); color: var(--forest); border: 1px solid var(--c-line); flex: none; }

/* ---------- footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--forest-deep); color: #cfe2d9; padding-top: 88px; }
.footer-arc { position: absolute; right: -240px; top: -300px; width: 720px; height: 720px; border-radius: 50%; border: 1.5px solid rgba(44, 239, 217, .14); pointer-events: none; }
.footer-arc::before { content: ""; position: absolute; inset: 110px; border-radius: 50%; box-shadow: inset -70px 60px 0 0 rgba(44, 239, 217, .06); }
.site-footer .container { position: relative; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .8fr) minmax(0, 1.15fr) minmax(0, .9fr); gap: 48px; padding-bottom: 56px; }
.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-logo img { width: 200px; height: auto; }
.footer-brand p { max-width: 34ch; margin-bottom: 24px; }
.footer-col h2 { font-family: var(--f-text); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--aqua-soft); margin: 8px 0 18px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 4px; }
.footer-col a { display: inline-block; padding-block: 6px; color: #eef6f2; text-decoration: none; }
.footer-col a:hover { color: var(--aqua-soft); text-decoration: underline; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; padding-block: 4px; color: #eef6f2; line-height: 1.5; }
.footer-contact li > span { padding-block: 6px; }
.footer-contact .ico { width: 18px; height: 18px; margin-top: 10px; color: var(--aqua-soft); }
.footer-contact a { padding-block: 6px; word-break: break-word; }
.footer-disclosure { padding: 28px 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.sms-disclosure { color: #c7ddd3; font-size: .86rem; line-height: 1.7; max-width: 1060px; }
.sms-disclosure strong { color: #fff; }
.sms-disclosure a { color: #8ff5e9; text-decoration: underline; }
.sms-disclosure a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding: 22px 0 28px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .86rem; color: #bcd5ca; }
.footer-bottom p { margin: 0; }

/* ---------- inner pages (engine components) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--cream); border-bottom: 1px solid var(--c-line); padding-block: 64px 56px; }
.page-hero::before { content: ""; position: absolute; right: -120px; top: -200px; width: 520px; height: 520px; border-radius: 50%; border: 1.5px solid rgba(0, 170, 152, .2); pointer-events: none; }
.page-hero::after { content: ""; position: absolute; right: 60px; top: 40px; width: 160px; height: 160px; border-radius: 50%; box-shadow: inset -26px 22px 0 0 rgba(0, 230, 207, .35); transform: rotate(-12deg); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { color: var(--c-muted); font-size: .9rem; }
.breadcrumb a { color: var(--forest); font-weight: 600; display: inline-block; }
.breadcrumb li + li::before { color: var(--c-muted); }
.page-hero h1 { font-size: clamp(2.2rem, 1.5rem + 2.4vw, 3.3rem); font-weight: 600; letter-spacing: -.015em; max-width: 20ch; }
.page-hero p { color: var(--c-body); font-size: 1.1rem; }
.page-hero .page-meta { color: var(--c-muted); }
.legal-section { background: var(--cream); padding-block: 72px 104px; }
.toc { top: calc(var(--header-h) + 24px); background: var(--paper); border-color: var(--c-line); border-radius: 22px; padding: 26px; }
.toc h2 { color: var(--aqua-deep); letter-spacing: .14em; }
.toc ol { gap: 2px; }
.toc li { padding-block: 4px; line-height: 1.45; }
.toc li::marker { color: var(--c-muted); }
.toc a { color: var(--c-body); text-decoration: none; }
.toc a:hover { color: var(--forest); text-decoration: underline; }
.prose { background: var(--paper); border-color: var(--c-line); border-radius: 28px; padding: 56px; color: var(--c-body); font-size: 1.02rem; }
.prose h2 { font-weight: 600; font-size: 1.55rem; color: var(--ink); scroll-margin-top: calc(var(--header-h) + 20px); }
.prose h3 { font-family: var(--f-display); font-weight: 600; }
.prose a { color: var(--forest-deep); font-weight: 600; }
.callout { background: var(--mint-2); border-color: #cfe6dc; border-left: 5px solid var(--forest); border-radius: 18px; }
.callout h3 { color: var(--forest-deep); font-family: var(--f-text); font-weight: 700; }
.callout p { color: var(--ink); }
.sample { background: var(--c-consent); border-color: var(--c-input); color: var(--ink); border-radius: 12px; }
.contact-block { background: var(--cream); border-color: var(--c-line); border-radius: 18px; line-height: 1.8; }
.contact-block a { color: var(--forest-deep); }

.contact-page-section { background: var(--cream); padding-block: 72px 104px; }
.contact-grid { gap: 48px; }
.sms-summary { background: var(--mint-2); border-color: #cfe6dc; border-left: 5px solid var(--forest); border-radius: 18px; color: var(--c-body); }
.sms-summary h3 { color: var(--ink); font-size: 1.1rem; }
.sms-summary a { color: var(--forest-deep); font-weight: 600; }
.contact-aside { display: grid; gap: 24px; position: sticky; top: calc(var(--header-h) + 24px); }
.info-card { position: relative; overflow: hidden; background: var(--forest-deep); color: #cfe2d9; border-radius: 28px; padding: 36px; box-shadow: var(--shadow); }
.info-card::after { content: ""; position: absolute; right: -60px; top: -60px; width: 180px; height: 180px; border-radius: 50%; box-shadow: inset -26px 22px 0 0 rgba(44, 239, 217, .2); pointer-events: none; }
.info-card h2 { color: #fff; font-size: 1.6rem; }
.info-card .contact-list { margin: 24px 0 28px; }
.info-card .contact-list li { color: #fff; align-items: flex-start; }
.info-card .contact-list small { color: #9fd9c8; }
.info-card .contact-list a { color: #fff; }
.info-card .contact-list a:hover { color: var(--aqua-soft); }
.info-card .contact-ico { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); color: var(--aqua-soft); }
.info-card .btn-outline { color: #fff; border-color: rgba(255, 255, 255, .4); }
.info-card .btn-outline:hover { background: rgba(255, 255, 255, .08); border-color: var(--aqua-soft); color: #fff; }
.map-card { background: var(--paper); border: 1px solid var(--c-line); border-radius: 28px; padding: 10px; box-shadow: var(--shadow-sm); }
.map-card iframe { display: block; width: 100%; height: 300px; border: 0; border-radius: 20px; background: var(--cream-2); }
.map-cap { display: flex; align-items: center; gap: 8px; margin: 0; padding: 12px 10px 6px; font-size: .9rem; font-weight: 600; color: var(--ink); }
.map-cap .ico { color: var(--forest); }

.center-page { background: var(--cream); position: relative; overflow: hidden; }
.center-page h1 { font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem); font-weight: 600; max-width: 22ch; margin-inline: auto; }
.center-page .lead { font-size: 1.1rem; color: var(--c-body); max-width: 52ch; margin: 16px auto 0; }
.center-page .big { font-weight: 700; color: var(--forest); font-size: clamp(5rem, 3rem + 8vw, 8rem); }
.success-ico { border-radius: 50%; background: var(--mint); color: var(--forest); box-shadow: 0 0 0 10px rgba(0, 230, 207, .12); }

/* ---------- responsive ---------- */
@media (max-width: 1240px) {
  .header-phone-txt { display: none; }
  .nav-list a { padding-inline: 11px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1080px) {
  :root { --header-h: 76px; }
  .nav-toggle { display: grid; }
  .header-inner { justify-content: space-between; gap: 12px; }
  .brand img { width: 160px; }
  .main-nav { position: fixed; left: 0; right: 0; top: var(--header-h); bottom: 0; z-index: 99; display: block; padding: 24px 24px 40px; background: var(--cream); border-top: 1px solid var(--c-line); overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .25s ease, transform .25s ease, visibility 0s linear .25s; }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .25s ease, transform .25s ease, visibility 0s; }
  .nav-list { flex-direction: column; gap: 2px; }
  .nav-list a { display: flex; min-height: 56px; padding: 12px 16px; font-family: var(--f-display); font-size: 1.35rem; border-radius: 16px; }
  .nav-extra { display: grid; gap: 14px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--c-line); }
  .nav-call { display: flex; align-items: center; gap: 14px; min-height: 56px; color: var(--ink); text-decoration: none; font-weight: 700; font-size: 1.1rem; }
  .nav-call .ico { width: 48px; height: 48px; padding: 13px; border-radius: 50%; background: var(--mint); color: var(--forest); }
  .nav-call span { display: grid; line-height: 1.25; }
  .nav-call small { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); font-weight: 600; }
  .header-phone { display: none; }

  .hero-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "copy" "form" "media"; gap: 40px; }
  .hero h1 { max-width: 16ch; }
  .hero-media { margin-top: 12px; margin-bottom: 24px; }
  .facts { margin-top: -40px; }
  .facts-row { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 28px; }
  .fact:nth-child(3)::before { display: none; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--c-line); }
  .services-grid, .about-grid, .dispatch-grid, .careers-grid, .contact-home-grid { grid-template-columns: minmax(0, 1fr); gap: 56px; }
  .services-intro { position: static; }
  .services-photo img { aspect-ratio: 16 / 9; }
  .svc-card:nth-child(even), .svc-card:nth-child(even):hover { transform: none; }
  .svc-card:hover { transform: translateY(-4px); }
  .about-media { max-width: 620px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 28px; }
  .steps::before { display: none; }
  .dispatch-media { max-width: 460px; order: -1; margin-block: 30px; }
  .section-head-split { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .gallery .section-sub { justify-self: start; }
  .g-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 220px; }
  .contact-aside { position: static; }
}
@media (max-width: 720px) {
  .container { padding-inline: 20px; }
  .section { padding-block: 80px; }
  .services { padding-top: 88px; }
  .hero { padding-block: 28px 88px; }
  .hero-copy { padding-top: 8px; }
  .hero h1 { font-size: clamp(2.35rem, 1.6rem + 3.6vw, 2.9rem); }
  .lede { font-size: 1.06rem; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-img { aspect-ratio: 4 / 3; border-radius: 200px 200px 22px 22px / 150px 150px 22px 22px; }
  .hero-media::before { width: 90px; height: 90px; right: -10px; top: -18px; box-shadow: inset -15px 12px 0 0 var(--aqua); }
  .hero-badge { left: 12px; right: 12px; bottom: -30px; padding-right: 16px; }
  .form-card { padding: 26px 20px; border-radius: 24px; }
  .form-card > h2 { font-size: 1.45rem; }
  .facts-row { padding: 4px; }
  .fact { flex-direction: column; align-items: flex-start; gap: 6px; padding: 18px 16px; }
  .fact-val { font-size: 2.1rem; }
  .fact-val-sm { font-size: 1.3rem; }
  .fact-lbl { font-size: .9rem; }
  .svc-list { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .svc-card { padding: 26px 24px; }
  .check-list { grid-template-columns: minmax(0, 1fr); }
  .about-arch img { width: 84%; }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .dispatch-media { max-width: 320px; }
  .dispatch-media::before { inset: -14px; box-shadow: inset 20px -16px 0 0 var(--aqua); }
  .dispatch-media::after { inset: -30px; }
  .dispatch-chip { left: -12px; bottom: 6px; }
  .g-grid { grid-auto-rows: 170px; gap: 12px; }
  .g-item.g-tall { border-radius: 140px 18px 18px 18px; }
  .g-cap { left: 8px; right: 8px; bottom: 8px; padding: 6px 10px; font-size: .74rem; }
  .g-cap .ico { display: none; }
  .careers-photo img { border-radius: 22px 140px 22px 22px; }
  .contact-home::after { width: 320px; height: 320px; right: -140px; bottom: -140px; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding-block: 44px 40px; }
  .page-hero::after { width: 90px; height: 90px; right: -10px; top: 14px; box-shadow: inset -14px 12px 0 0 rgba(0, 230, 207, .3); }
  .prose { padding: 30px 22px; border-radius: 22px; }
  .info-card { padding: 28px 22px; }
  .breadcrumb a { padding-block: 10px; }
  .lb-prev, .lb-next { top: auto; bottom: 48px; }
}
@media (max-width: 420px) {
  .header-cta { display: none; }
  .brand img { width: 150px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* quote tips (home contact) */
.tips-card { margin-top: 36px; padding: 26px 28px; border-radius: 24px; background: var(--paper); border: 1px solid #cfe6dc; position: relative; overflow: hidden; }
.tips-card::after { content: ""; position: absolute; right: -70px; top: -70px; width: 130px; height: 130px; border-radius: 50%; box-shadow: inset -20px 16px 0 0 rgba(0, 230, 207, .22); pointer-events: none; }
.tips-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; margin-bottom: 14px; }
.tips-card h3 .ico { color: var(--forest); }
.tips-card ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.tips-card li { position: relative; padding-left: 22px; color: var(--c-body); }
.tips-card li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); box-shadow: 0 0 0 3px rgba(0, 170, 152, .18); }
.about, .dispatch, .careers, .contact-home, .gallery { overflow: hidden; }
@media (max-width: 720px) {
  .about-circle { right: 6px; width: 44%; }
  .about-circle::before { inset: -10px; }
}

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--forest-night); padding-block: 96px; isolation: isolate; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 62%; z-index: -2; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(11, 48, 36, .92) 0%, rgba(11, 48, 36, .62) 48%, rgba(11, 48, 36, .08) 100%); }
.cta-band::after { content: ""; position: absolute; left: -140px; bottom: -260px; width: 520px; height: 520px; border-radius: 50%; border: 1.5px solid rgba(44, 239, 217, .22); z-index: -1; }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; }
.cta-copy h2 { color: #fff; font-size: clamp(1.9rem, 1.3rem + 1.8vw, 2.7rem); margin-bottom: 10px; }
.cta-copy p { margin: 0; color: #d6e8e0; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-ghost-light { color: #fff; border-color: rgba(255, 255, 255, .5); background: rgba(11, 48, 36, .35); }
.btn-ghost-light:hover { color: #fff; border-color: var(--aqua-soft); background: rgba(11, 48, 36, .6); transform: translateY(-2px); }
@media (max-width: 720px) {
  .cta-band { padding-block: 72px; }
  .cta-band::before { background: linear-gradient(180deg, rgba(11, 48, 36, .9) 0%, rgba(11, 48, 36, .7) 55%, rgba(11, 48, 36, .35) 100%); }
  .cta-actions, .cta-actions .btn { width: 100%; }
}
