/* Axenora Holdings — cargo & shipping insurance
   built fresh, not branched off the old corporate template.
   palette: pine / parchment / brass. type: Spectral + Rubik. */

:root {
  --paper:     #f4f1ea;          /* warm parchment page bg */
  --paper-2:   #ece7db;          /* slightly deeper panel */
  --stone:     #fbfaf6;          /* card surface, near-white */
  --ink:       #1d2723;          /* near-black, green-tinted */
  --muted:     #586660;
  --line:      #ddd6c8;          /* hairline on parchment */

  --pine:      #1f4d3f;          /* primary */
  --pine-deep: #163a30;
  --pine-2:    #2c6a57;          /* lighter pine for accents on dark */
  --brass:     #c79a3e;          /* gold accent */
  --brass-dk:  #a87f2c;
  --brass-soft:#efe3c6;

  --slate-700: #3a463f;          /* declare it — nav inherits white otherwise */
  --danger:    #b23b2e;

  --wrap: 1180px;
  --header-h: 116px;             /* top-strip + main bar */

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(22,40,33,.06), 0 1px 3px rgba(22,40,33,.05);
  --shadow:    0 10px 30px rgba(22,40,33,.10), 0 3px 8px rgba(22,40,33,.06);
  --shadow-lg: 0 30px 60px rgba(22,40,33,.16), 0 10px 22px rgba(22,40,33,.08);

  --ff-display: 'Spectral', Georgia, 'Times New Roman', serif;
  --ff-body: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 7vw, 96px); }
.section--alt { background: var(--paper-2); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--pine); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; }
.skip-link:focus { left: 16px; }

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
p { text-wrap: pretty; }
.eyebrow { font-family: var(--ff-body); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-dk); display: inline-flex; align-items: center; gap: 9px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brass); }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.22rem); color: var(--muted); }

/* buttons — squared-off, slight 10px radius (not pills) */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 600; font-size: 0.96rem; padding: 13px 24px; border-radius: 10px; border: 1.5px solid transparent; transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--pine); color: #fff; }
.btn-primary:hover { background: var(--pine-deep); transform: translateY(-2px); }
.btn-brass { background: var(--brass); color: #20180a; }
.btn-brass:hover { background: var(--brass-dk); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--pine); color: var(--pine); }
.btn-white { background: #fff; color: var(--pine); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-text { color: var(--pine); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.btn-text svg { width: 17px; height: 17px; transition: transform .18s ease; }
.btn-text:hover svg { transform: translateX(3px); }
:where(a,button,input,textarea,select):focus-visible { outline: 3px solid color-mix(in srgb, var(--brass) 55%, transparent); outline-offset: 2px; }

/* ===== Header: utility strip + solid main bar (no transparent cover) ===== */
.top-strip { background: var(--pine-deep); color: #cfe0d6; font-size: 0.82rem; }
.top-strip .container { display: flex; align-items: center; gap: 20px; height: 40px; }
.top-strip a { color: #cfe0d6; display: inline-flex; align-items: center; gap: 6px; }
.top-strip a:hover { color: #fff; }
.top-strip svg { width: 14px; height: 14px; color: var(--brass); }
.top-strip .ts-right { margin-left: auto; display: flex; gap: 20px; }
@media (max-width: 760px){ .top-strip .ts-hide { display: none; } .top-strip .container { justify-content: space-between; } }

.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 46px; height: 46px; flex: none; }
.logo-text { font-family: var(--ff-display); font-weight: 700; font-size: 1.34rem; color: var(--ink); line-height: 1; letter-spacing: -0.01em; }
.logo-text b { font-weight: 700; }
.logo-text span { display: block; font-family: var(--ff-body); font-weight: 500; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-dk); margin-top: 3px; }
.nav-desktop { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav-desktop a { padding: 9px 14px; border-radius: 8px; font-weight: 500; color: var(--slate-700); transition: color .15s ease, background-color .15s ease; }
.nav-desktop a:hover { color: var(--pine); background: color-mix(in srgb, var(--pine) 7%, transparent); }
.nav-desktop a.is-active { color: var(--pine); font-weight: 600; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line); border-radius: 9px; background: var(--stone); position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle span:nth-child(1){ top: 16px; } .nav-toggle span:nth-child(2){ bottom: 16px; }
body.nav-open .nav-toggle span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2){ transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 940px){
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .header-actions .btn-quote { display: none; }
}

/* mobile nav — one #mobileNav per page, sits right after </header> */
.nav-mobile { position: fixed; inset: var(--header-h) 0 0; z-index: 90; background-color: var(--paper); padding: 24px 22px; display: flex; flex-direction: column; gap: 4px; transform: translateX(100%); visibility: hidden; transition: transform .28s ease, visibility .28s ease; isolation: isolate; overflow-y: auto; }
body.nav-open .nav-mobile { transform: translateX(0); visibility: visible; }
body.nav-open .site-header { background: var(--paper); }
.nav-mobile a:not(.btn) { display: block; padding: 15px 6px; font-size: 1.12rem; font-weight: 500; border-bottom: 1px solid var(--line); color: var(--ink); }
.nav-mobile a.is-active { color: var(--pine); }
.nav-mobile > a.btn { margin-top: 18px; display: flex; align-items: center; justify-content: center; width: 100%; color: #fff; }

/* ===== Hero — editorial split, parchment ===== */
.hero-split { padding-block: clamp(40px, 5vw, 76px); position: relative; overflow: hidden; }
.hero-split .container { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
@media (max-width: 900px){ .hero-split .container { grid-template-columns: 1fr; } }
.hero-copy h1 { margin: 18px 0 0; }
.hero-copy .lead { margin-top: 20px; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 8px 30px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-stats .hs b { font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; color: var(--pine); display: block; }
.hero-stats .hs span { font-size: 0.84rem; color: var(--muted); }
.hero-figure { position: relative; }
.hero-figure > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 900px){ .hero-figure > img { aspect-ratio: 16 / 10; } }
/* floating "coverage active" certificate card */
.cert-card { position: absolute; left: -22px; bottom: 30px; width: 250px; background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px 18px; }
@media (max-width: 540px){ .cert-card { left: 8px; bottom: 12px; width: 210px; } }
.cert-card .cc-top { display: flex; align-items: center; gap: 10px; }
.cert-card .cc-shield { width: 34px; height: 34px; border-radius: 9px; background: color-mix(in srgb, var(--pine) 12%, transparent); color: var(--pine); display: grid; place-items: center; flex: none; }
.cert-card .cc-shield svg { width: 19px; height: 19px; }
.cert-card .cc-top b { font-size: 0.92rem; }
.cert-card .cc-top span { display: block; font-size: 0.74rem; color: var(--muted); }
.cert-card .cc-row { display: flex; justify-content: space-between; font-size: 0.8rem; margin-top: 13px; padding-top: 12px; border-top: 1px dashed var(--line); }
.cert-card .cc-row b { color: var(--pine); }

/* ===== Carriers band (white logos on pine) ===== */
.carriers { background: var(--pine); color: #dcebe1; padding-block: 46px; }
.carriers h2 { color: #fff; font-size: 1.4rem; text-align: center; }
.carriers .sub { text-align: center; color: #a8c3b6; margin-top: 6px; font-size: 0.95rem; }
.carrier-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 28px 30px; align-items: center; margin-top: 34px; }
.carrier-grid img { height: 30px; width: auto; margin-inline: auto; opacity: 0.82; filter: brightness(0) invert(1); transition: opacity .2s ease; }
.carrier-grid img:hover { opacity: 1; }
@media (max-width: 860px){ .carrier-grid { grid-template-columns: repeat(4, 1fr); gap: 26px; } }
@media (max-width: 460px){ .carrier-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Calculator ===== */
.calc { background: var(--paper-2); }
.calc-head { max-width: 620px; }
.calc-head h2 { margin-top: 12px; }
.calc-head p { color: var(--muted); margin-top: 12px; }
.calc-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 26px; margin-top: 36px; align-items: start; }
@media (max-width: 880px){ .calc-grid { grid-template-columns: 1fr; } }
.calc-card { background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.calc-field { margin-bottom: 26px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field label { font-weight: 600; font-size: 0.9rem; }
.calc-field .calc-val { float: right; font-family: var(--ff-display); font-weight: 700; color: var(--pine); }
.calc-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; margin-top: 16px; background: linear-gradient(var(--pine), var(--pine)) 0/var(--fill,50%) 100% no-repeat, var(--line); }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--brass); border: 3px solid #fff; box-shadow: var(--shadow-sm); cursor: pointer; }
.calc-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--brass); border: 3px solid #fff; cursor: pointer; }
.calc-range-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); margin-top: 8px; }
.calc-carriers { display: flex; gap: 8px; margin-top: 14px; }
.calc-carrier-btn { flex: 1; padding: 11px; border: 1.5px solid var(--line); border-radius: 9px; background: var(--paper); font-weight: 600; color: var(--muted); transition: border-color .15s ease, color .15s ease, background-color .15s ease; }
.calc-carrier-btn.is-active { border-color: var(--pine); color: var(--pine); background: color-mix(in srgb, var(--pine) 8%, transparent); }
.calc-results { background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.calc-bar-block { margin-bottom: 18px; }
.calc-bar-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 0.9rem; margin-bottom: 7px; }
.calc-bar-head .amt { font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; }
.calc-bar-head .accent { color: var(--pine); }
.calc-track { height: 30px; background: var(--paper-2); border-radius: 8px; overflow: hidden; }
.calc-fill { height: 100%; width: var(--bar-w, 50%); border-radius: 8px; display: flex; align-items: center; padding-left: 12px; font-size: 0.72rem; color: #fff; white-space: nowrap; }
.calc-fill.is-animated { transition: width .5s cubic-bezier(.22,.61,.36,1); }
.calc-fill--carrier { background: #8a9690; }
.calc-fill--house { background: linear-gradient(90deg, var(--pine), var(--pine-2)); }
.calc-savings { display: flex; align-items: center; gap: 22px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.calc-savings .pct { font-family: var(--ff-display); font-weight: 700; font-size: 3rem; color: var(--brass-dk); line-height: 1; }
.calc-savings .pct span { display: block; font-family: var(--ff-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.calc-mini { display: flex; gap: 22px; flex-wrap: wrap; }
.calc-mini .cm b { font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); display: block; }
.calc-mini .cm span { font-size: 0.78rem; color: var(--muted); }
.calc-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.calc-note { font-size: 0.78rem; color: var(--muted); flex: 1; min-width: 240px; }

/* ===== Coverage explorer (tabbed) ===== */
.cover-explorer { margin-top: 38px; display: grid; grid-template-columns: 280px 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--stone); box-shadow: var(--shadow-sm); }
@media (max-width: 820px){ .cover-explorer { grid-template-columns: 1fr; } }
.cover-tabs { background: var(--pine); padding: 14px; display: flex; flex-direction: column; gap: 4px; }
@media (max-width: 820px){ .cover-tabs { flex-direction: row; overflow-x: auto; } }
.cover-tab { text-align: left; padding: 16px 18px; border-radius: 10px; border: none; background: transparent; color: #bcd2c7; font-weight: 600; font-size: 1rem; display: flex; align-items: center; gap: 12px; white-space: nowrap; transition: background-color .15s ease, color .15s ease; }
.cover-tab svg { width: 20px; height: 20px; color: var(--brass); flex: none; }
.cover-tab:hover { color: #fff; }
.cover-tab.is-active { background: color-mix(in srgb, #fff 12%, transparent); color: #fff; }
.cover-panel { display: none; padding: clamp(26px, 3vw, 44px); }
.cover-panel.is-active { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: center; }
@media (max-width: 1040px){ .cover-panel.is-active { grid-template-columns: 1fr; } }
.cover-panel h3 { font-size: 1.5rem; }
.cover-panel p { color: var(--muted); margin: 12px 0 16px; }
.cover-panel ul { display: grid; gap: 10px; }
.cover-panel li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; }
.cover-panel li svg { width: 19px; height: 19px; color: var(--pine); flex: none; margin-top: 3px; }
.cover-panel img { border-radius: var(--radius); width: 100%; aspect-ratio: 5/4; object-fit: cover; box-shadow: var(--shadow); }

/* ===== Stats band (count-up) ===== */
.stat-band { background: var(--pine); color: #fff; }
.stat-band .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 52px; }
@media (max-width: 720px){ .stat-band .container { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }
.stat-band .sb { text-align: center; }
.stat-band .sb b { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2.1rem, 3.6vw, 3rem); color: var(--brass); display: block; line-height: 1; }
.stat-band .sb span { color: #b6ccc0; font-size: 0.9rem; margin-top: 8px; display: block; }

/* ===== Claims flow (numbered, horizontal) ===== */
.claims-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 38px; counter-reset: step; }
@media (max-width: 820px){ .claims-flow { grid-template-columns: 1fr 1fr; gap: 26px 20px; } }
@media (max-width: 480px){ .claims-flow { grid-template-columns: 1fr; } }
.claim-step { position: relative; padding-top: 18px; border-top: 2px solid var(--line); }
.claim-step .n { counter-increment: step; font-family: var(--ff-display); font-weight: 700; font-size: 0.95rem; color: var(--brass-dk); }
.claim-step .n::before { content: "0" counter(step); }
.claim-step h3 { font-size: 1.15rem; margin: 6px 0 8px; }
.claim-step p { color: var(--muted); font-size: 0.93rem; }
.claim-step.is-live { border-top-color: var(--brass); }

/* ===== Industries strip ===== */
.ind-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.ind-tag { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; background: var(--stone); border: 1px solid var(--line); border-radius: 999px; font-weight: 500; transition: border-color .15s ease, transform .15s ease; }
.ind-tag:hover { border-color: var(--pine); transform: translateY(-2px); }
.ind-tag svg { width: 18px; height: 18px; color: var(--brass-dk); }

/* ===== E-commerce split (no aurora orbs) ===== */
.ecom { background: var(--pine-deep); color: #e7f0ea; overflow: hidden; }
.ecom .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 4vw, 60px); align-items: center; }
@media (max-width: 880px){ .ecom .container { grid-template-columns: 1fr; } }
.ecom h2 { color: #fff; }
.ecom h2 em { color: var(--brass); font-style: italic; }
.ecom p { color: #b6ccc0; margin: 14px 0 18px; }
.ecom ul { display: grid; gap: 11px; margin-bottom: 24px; }
.ecom li { display: flex; gap: 10px; align-items: flex-start; }
.ecom li svg { width: 19px; height: 19px; color: var(--brass); flex: none; margin-top: 3px; }
.ecom-card { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); }
.ecom-card .ec-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ecom-card .ec-row:last-child { border-bottom: 0; }
.ecom-card .ec-label { font-weight: 600; }
.toggle { width: 50px; height: 28px; border-radius: 999px; background: var(--pine); position: relative; flex: none; }
.toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; transition: transform .2s ease; }
.toggle.on::after { transform: translateX(22px); }
.ec-shield { display: inline-flex; align-items: center; gap: 10px; color: var(--pine); font-weight: 600; }
.ec-shield svg { width: 22px; height: 22px; }

/* ===== Voices (static testimonials, initials avatars) ===== */
.voices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
@media (max-width: 760px){ .voices-grid { grid-template-columns: 1fr; } }
.voice { background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.voice .stars { color: var(--brass); letter-spacing: 2px; font-size: 0.95rem; }
.voice blockquote { font-family: var(--ff-display); font-size: 1.12rem; line-height: 1.5; margin: 14px 0 20px; color: var(--ink); }
.voice .who { display: flex; align-items: center; gap: 13px; }
.voice .av { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-weight: 700; color: #fff; flex: none; }
.voice .who b { display: block; font-size: 0.95rem; }
.voice .who span { font-size: 0.82rem; color: var(--muted); }

/* ===== Careers ===== */
.careers-teaser { background: var(--brass-soft); }
.careers-teaser .container { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (max-width: 820px){ .careers-teaser .container { grid-template-columns: 1fr; } }
.careers-teaser .badge { display: inline-block; background: var(--brass); color: #20180a; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 13px; border-radius: 999px; }
.careers-teaser h2 { margin: 14px 0 12px; }
.careers-teaser .remote { color: var(--brass-dk); }
.careers-teaser p { color: #4a4334; margin-bottom: 20px; }
.careers-teaser img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }
.careers-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 4vw, 56px); align-items: start; }
@media (max-width: 880px){ .careers-layout { grid-template-columns: 1fr; } }
.careers-list { display: grid; gap: 10px; margin: 14px 0 26px; }
.careers-list li { display: flex; gap: 11px; align-items: flex-start; }
.careers-list li::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--brass); margin-top: 9px; flex: none; }
.careers-details h3 { margin: 24px 0 10px; }
.careers-details img { border-radius: var(--radius); margin-top: 24px; width: 100%; aspect-ratio: 16/10; object-fit: cover; box-shadow: var(--shadow-sm); }

/* ===== Forms ===== */
.lead-form { background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.form-field { margin-bottom: 16px; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px){ .form-row--2 { grid-template-columns: 1fr; } }
.lead-form label { display: block; font-weight: 600; font-size: 0.86rem; margin-bottom: 6px; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; font: inherit; font-size: 0.96rem; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--pine); box-shadow: 0 0 0 3px color-mix(in srgb, var(--pine) 16%, transparent); }
.lead-form textarea { min-height: 120px; resize: vertical; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 10px; }
.field-bad input, .field-bad select, .field-bad textarea { border-color: var(--danger) !important; } /* override focus ring when invalid */
.form-success { background: color-mix(in srgb, var(--pine) 10%, transparent); border: 1px solid var(--pine-2); border-radius: var(--radius); padding: 22px 24px; margin-top: 16px; }
.form-success[hidden] { display: none; }
.form-success h4 { font-size: 1.15rem; }
.form-success p { color: var(--muted); margin-top: 6px; }

/* ===== Interior page hero (left aligned w/ breadcrumb) ===== */
.page-hero { background: var(--pine); color: #fff; padding-block: clamp(46px, 6vw, 78px); }
.breadcrumb { display: flex; gap: 8px; font-size: 0.82rem; color: #9fbcae; margin-bottom: 16px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li:not(:first-child)::before { content: "/"; margin-right: 8px; color: #6f8b7e; }
.page-hero h1 { color: #fff; }
.page-hero h1 em { color: var(--brass); font-style: italic; }
.page-hero-lead { color: #b6ccc0; margin-top: 14px; max-width: 60ch; font-size: 1.08rem; }

/* ===== Generic cards / grids for inner pages ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px){ .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .feature-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.feature-card .ic { width: 46px; height: 46px; border-radius: 12px; background: color-mix(in srgb, var(--pine) 10%, transparent); color: var(--pine); display: grid; place-items: center; margin-bottom: 16px; }
.feature-card .ic svg { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.95rem; }
/* numbered variant for Solutions */
.value-card { background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.value-card .num { font-family: var(--ff-display); font-weight: 700; font-size: 2.2rem; color: var(--brass); line-height: 1; }
.value-card h3 { margin: 12px 0 8px; }
.value-card p { color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.split--reverse .split-media { order: -1; }
@media (max-width: 820px){ .split, .split--reverse { grid-template-columns: 1fr; } .split--reverse .split-media { order: 0; } }
.split-media img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); border-left: 4px solid var(--brass); }
.section-head { max-width: 660px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 12px; }
.section-head p { color: var(--muted); margin-top: 12px; }

/* ===== Prose (legal) ===== */
.prose { max-width: 760px; margin-inline: auto; }
.prose .updated { font-size: 0.82rem; color: var(--muted); margin-bottom: 28px; }
.prose h2 { font-size: 1.4rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.prose p { margin-bottom: 13px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 15px; display: grid; gap: 7px; }
.prose a { color: var(--pine); text-decoration: underline; text-underline-offset: 2px; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.9rem; }
.prose th, .prose td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); }
.prose th { background: var(--paper-2); }

/* ===== Quote band (pre-footer) ===== */
.quote-band { background: var(--brass); color: #20180a; }
.quote-band .container { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding-block: clamp(40px, 5vw, 60px); flex-wrap: wrap; }
.quote-band h2 { color: #20180a; max-width: 22ch; }
.quote-band p { color: #4a3a14; margin-top: 8px; }
.quote-band .btn-primary { background: var(--pine-deep); }

/* ===== Footer ===== */
.site-footer { background: var(--pine-deep); color: #a8c3b6; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 36px; padding-block: 56px 34px; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: var(--brass); }
.footer-tagline { font-size: 0.9rem; max-width: 34ch; }
.footer-col h3 { color: #fff; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 15px; font-family: var(--ff-body); font-weight: 600; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 0.92rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { font-size: 0.92rem; line-height: 1.9; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; font-size: 0.84rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: #fff; }

/* ===== 404 ===== */
.notfound { min-height: 64vh; display: grid; place-items: center; text-align: center; padding-block: 70px; }
.notfound .code { font-family: var(--ff-display); font-weight: 700; font-size: clamp(5rem, 16vw, 10rem); color: var(--pine); line-height: 0.9; }
.notfound .track-card { background: var(--stone); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 22px; margin: 26px auto 0; max-width: 380px; text-align: left; display: flex; gap: 14px; align-items: center; }
.notfound .track-card svg { width: 30px; height: 30px; color: var(--brass-dk); flex: none; }
.notfound .track-card b { display: block; }
.notfound .track-card span { font-size: 0.85rem; color: var(--muted); }

/* ===== Cookie banner (injected) — bottom-left card, our own style ===== */
.cookie-bar { position: fixed; left: 18px; bottom: 18px; z-index: 150; max-width: 380px; background: var(--ink); color: #e7ece9; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 20px 22px; transform: translateY(160%); transition: transform .4s cubic-bezier(.2,.7,.3,1); }
.cookie-bar.show { transform: translateY(0); }
@media (max-width: 460px){ .cookie-bar { left: 12px; right: 12px; max-width: none; } }
.cookie-bar p { font-size: 0.86rem; color: #c2ccc7; }
.cookie-bar h4 { font-family: var(--ff-display); font-size: 1.05rem; color: #fff; margin-bottom: 7px; }
.cookie-bar a { color: var(--brass); text-decoration: underline; }
.cookie-acts { display: flex; gap: 10px; margin-top: 15px; }
.cookie-acts .btn { padding: 9px 16px; font-size: 0.85rem; flex: 1; }
.cookie-acts .btn-ghost { color: #e7ece9; border-color: rgba(255,255,255,.25); }
.cookie-acts .btn-ghost:hover { border-color: #fff; color: #fff; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .calc-fill { transition: none !important; }
}
