/* ==========================================================================
   A.I.G.S. — Alpha International Global Services
   Corporate design system — same system as the ATGS reference build
   Swiss grid · hairlines · single accent · no shadows, no gradients
   ========================================================================== */
:root {
  --navy:        #0a1f44;
  --navy-deep:   #06142e;
  --ink:         #0f172a;
  --steel:       #5b6577;
  --muted:       #8a94a6;
  --line:        #d9dee7;
  --line-soft:   #e9edf2;
  --bg:          #f3f5f8;
  --white:       #ffffff;
  --accent:      #1e6fe8;
  --accent-deep: #1557bd;

  --font: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "IBM Plex Sans Condensed", "IBM Plex Sans", system-ui, sans-serif;
  --container: 1400px;
  --header-h: 112px;
  --ease: cubic-bezier(.2, .6, .2, 1);
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 { color: var(--navy); margin: 0 0 .5em; line-height: 1.1; font-weight: 600; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 4.6vw, 4.2rem); font-weight: 700; letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 3.1vw, 2.8rem); }
h3 { font-size: 1.1rem; letter-spacing: -.01em; }
p  { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.container { width: min(100% - 3rem, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(4rem, 7vw, 6.5rem); }
.section-alt { background: var(--bg); }
.section + .section:not(.section-alt) { border-top: 1px solid var(--line-soft); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: .5rem 1rem; z-index: 999; }
.skip-link:focus { left: 1rem; top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Typographic helpers ---------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 4vw, 3.25rem); }
.section-head.row { max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 2rem 4rem; align-items: end; padding-bottom: 1.75rem; border-bottom: 1px solid var(--line); }
.section-head.row .eyebrow { margin-bottom: 0; }
.section-head.row h2 { margin-bottom: .6rem; }
.section-head.row .lead { margin: 0; }
.index { display: block; font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 700; line-height: .85; letter-spacing: -.04em; color: var(--line-soft); margin-bottom: 1rem; font-variant-numeric: tabular-nums; }
.lead { font-size: 1.08rem; color: var(--steel); line-height: 1.65; max-width: 62ch; }
.accent { color: var(--accent); }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  padding: .95rem 1.6rem; font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer; transition: background .2s var(--ease), color .2s, border-color .2s;
  white-space: nowrap; line-height: 1; touch-action: manipulation;
}
.btn::after { content: "→"; font-weight: 400; transition: transform .2s var(--ease); }
.btn:hover::after { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); border-color: #fff; }
.btn-light:hover { background: var(--navy); border-color: #fff; color: #fff; }
.btn-ghost { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 1.1rem 1.9rem; }

/* Header ------------------------------------------------------------------ */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line-soft); }
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner, .brand img { transition: height .25s var(--ease); }
.site-header.is-scrolled .header-inner { height: 76px; }
.site-header.is-scrolled .brand img { height: 60px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 2rem; }
.brand img { width: auto; height: 92px; }
.site-nav { display: flex; align-items: center; gap: 2.5rem; }
.site-nav ul { display: flex; gap: 2.1rem; }
.site-nav li a {
  display: block; padding: .5rem 0; color: var(--navy);
  font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; position: relative;
}
.site-nav li a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--accent); transition: right .25s var(--ease); }
.site-nav li a:hover::after, .site-nav li a[aria-current="page"]::after { right: 0; }
.site-nav li a[aria-current="page"] { color: var(--accent); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px; padding: 8px;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero (solid, used by Legal / Pricing / 404) ----------------------------- */
.hero {
  position: relative; color: #fff; overflow: hidden; display: flex; align-items: flex-start;
  min-height: clamp(540px, 56vw, 1080px); background: var(--navy);
}
.hero-inner { position: relative; z-index: 1; padding-block: clamp(3rem, 6vw, 5rem); }
.hero .hero-inner { padding-top: clamp(2.5rem, 4.5vw, 5rem); }
.hero-content { max-width: 980px; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; text-transform: uppercase; line-height: .94; font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; font-size: clamp(3rem, 6vw, 6.4rem); }
.hero h1 .accent { color: var(--accent); }
.hero h1 .accent.block { display: block; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: #fff; }
.hero p { font-size: clamp(1.05rem, 1.45vw, 1.45rem); color: #fff; max-width: 52ch; line-height: 1.5; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.2rem; }
.hero-sm { min-height: clamp(480px, 56vw, 1080px); }
.hero-sm h1 { font-size: clamp(3rem, 6vw, 6.4rem); }
.breadcrumb { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 1.2rem; }
.breadcrumb a { color: rgba(255,255,255,.9); }
.breadcrumb a:hover { color: #fff; }

/* Full banner hero (source artwork already carries its own type) --------- */
.hero-banner { position: relative; background: var(--navy); border-bottom: 1px solid var(--line-soft); }
.hero-banner img { width: 100%; height: auto; display: block; }
.intro { padding-block: clamp(3rem, 6vw, 4.5rem); border-bottom: 1px solid var(--line-soft); }
.intro .breadcrumb { color: var(--steel); }
.intro .breadcrumb a { color: var(--navy); }
.intro .breadcrumb a:hover { color: var(--accent); }
.intro h1 { text-transform: none; }
.intro .hero-actions { margin-top: 2rem; }

/* Markets band (regions served) ------------------------------------------ */
/* Case note (Pricing) ------------------------------------------------------ */
.case-note { font-size: .78rem; color: var(--steel); margin-top: .75rem; }

/* Feature row — icon strip, no card boxes (used twice on Home) ----------- */
.feature-row { padding-block: clamp(2.5rem, 4vw, 3.5rem); }
.feature-row-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-item { padding: 0 clamp(1rem, 2vw, 1.75rem); border-right: 1px solid var(--line); }
.feature-item:first-child { padding-left: 0; }
.feature-item:last-child { border-right: 0; padding-right: 0; }
.feature-icon { width: 42px; height: 42px; color: var(--accent); margin-bottom: 1rem; }
.feature-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.feature-item h3 { font-size: clamp(1rem, 1.5vw, 1.15rem); letter-spacing: .03em; margin-bottom: .5rem; text-transform: uppercase; font-weight: 700; }
.feature-item p { margin: 0; font-size: clamp(.92rem, 1.1vw, 1rem); color: var(--steel); line-height: 1.5; }

.feature-row-sky { position: relative; background: linear-gradient(180deg, #fff 0%, #eaf3fc 100%); overflow: hidden; padding-bottom: clamp(4.5rem, 9vw, 7rem); }
.feature-row-sky .feature-item { border-right-color: rgba(10,31,68,.14); }
.mountain-strip { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: clamp(4.5rem, 9vw, 7rem); object-fit: cover; object-position: bottom; display: block; z-index: 0; }
.feature-row-sky .container { position: relative; z-index: 1; }

/* About panel — diagonal photo band (engine + world map), text overlay --- */
.about-panel { position: relative; color: #fff; overflow: hidden; aspect-ratio: 1672 / 357; }
.about-panel-bg { position: absolute; inset: 0; z-index: 0; }
.about-panel-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-panel-inner {
  position: relative; z-index: 1; height: 100%;
  display: grid; grid-template-columns: 40% 15.5% 29.5% 15%; align-items: center;
}
/* Wide screens: the original artwork carries the About copy and the lower pillars —
   the HTML versions are for small screens only (see the 900px media query) */
.about-panel-inner, .in-artwork { display: none; }
.about-panel-text { padding-right: 2%; }
.about-panel .eyebrow { font-size: .62rem; margin-bottom: .4rem; }
.about-panel .eyebrow::before { width: 18px; }
.about-panel-text h2 { color: #fff; font-size: clamp(.95rem, 1.7vw, 1.7rem); line-height: 1.15; margin-bottom: .5rem; }
.about-panel-text p { font-size: clamp(.6rem, .95vw, .85rem); line-height: 1.45; color: #cbd5e6; margin: 0; max-width: 46ch; }
.about-panel-markets { padding-left: 1%; }
.about-panel-markets h2 { color: var(--navy); font-size: clamp(.95rem, 1.7vw, 1.7rem); line-height: 1.15; margin-bottom: .4rem; }
.about-panel-markets .eyebrow { color: var(--accent-deep); }
.about-panel-markets .eyebrow::before { background: var(--accent-deep); }
.about-panel-markets p { font-size: clamp(.6rem, .95vw, .82rem); line-height: 1.4; color: var(--steel); margin: 0; max-width: 34ch; }
.about-panel-regions { border-left: 1px solid rgba(10,31,68,.25); padding-left: 5%; height: 62%; display: flex; flex-direction: column; justify-content: space-between; }
.about-panel-regions li { font-size: clamp(.55rem, .85vw, .74rem); font-weight: 700; letter-spacing: .04em; color: var(--navy); text-transform: uppercase; }

/* World map (Where we operate) — shares the dot-grid cartography with the
   ATGS reference build; AIGS uses diamond hub markers and solid downward-
   bowing routes (vs. ATGS's circular hubs and dashed upward-bowing routes)
   so the two maps read as related but distinct at a glance. ---------------- */
.map-wrap { position: relative; }
.map-canvas { position: relative; }
.worldmap { width: 100%; height: auto; display: block; }
.map-dots path { stroke: #c3cbd9; stroke-width: 3.2; fill: none; }
.map-arcs path { fill: none; stroke: var(--accent); stroke-width: 1.6; opacity: .9; }
.map-hubs path { fill: var(--navy); stroke: #fff; stroke-width: 2; }
.map-hubs path.origin { fill: var(--accent); stroke: #fff; stroke-width: 2.5; }
.map-hubs text { font-family: var(--font); font-size: 13px; font-weight: 600; fill: var(--navy); letter-spacing: .04em; }
.map-legend { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--steel); }
.map-legend span::before { content: ""; display: inline-block; width: 10px; height: 10px; margin-right: .5rem; vertical-align: middle; background: var(--navy); transform: rotate(45deg); }
.map-legend span.origin::before { background: var(--accent); }

/* Interactive hubs: hover/focus preview, click pins the selection */
.map-hub { cursor: pointer; outline: none; }
.map-hub-hit { fill: transparent; stroke: none; pointer-events: all; }
/* Only the (invisible, topmost) hit-circle should catch pointer events — the
   diamond marker underneath it must not intercept the hit-test. */
.map-hub path:not(.map-hub-hit) { pointer-events: none; }
.map-hub path:not(.origin) { transition: fill .15s var(--ease); }
.map-hub:hover path:not(.origin), .map-hub.is-active path:not(.origin) { fill: var(--accent); }
.map-hub:focus-visible .map-hub-hit { fill: rgba(30, 111, 232, .1); stroke: var(--accent); stroke-width: 2; }
.map-hub text { pointer-events: none; transition: fill .15s var(--ease); }
.map-hub:hover text, .map-hub.is-active text { fill: var(--accent); }
.map-arcs path { transition: opacity .15s var(--ease), stroke-width .15s var(--ease); }
.map-wrap:has(.map-hub:hover, .map-hub.is-active) .map-arcs path:not(.is-active) { opacity: .3; }
.map-arcs path.is-active { stroke-width: 2.4; opacity: 1; }

/* Below ~640px the info card sits in normal flow, under the map (room is tight
   and there's no hover on touch anyway — a tap already scrolls it into view
   naturally). From 641px up, where a tall map can fill the viewport, it floats
   over the map itself so hovering never requires scrolling to read it. */
.map-info {
  position: relative; margin-top: 1.25rem; padding: 1.4rem 1.5rem 1.3rem; border: 1px solid var(--line);
  background: #fff; min-height: 92px; overflow: hidden;
}
.map-info::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); }
@media (min-width: 641px) {
  .map-info { position: absolute; left: 1.25rem; bottom: 1.25rem; z-index: 2; width: min(340px, 44%); margin-top: 0; }
}
.map-info-default { display: flex; align-items: flex-start; gap: .7rem; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.map-info-default svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: .1rem; color: var(--line); stroke-width: 1.6; }
.map-info-label { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-bottom: .55rem; }
.map-info-label .eyebrow-sm { font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); }
.map-info-pin { display: inline-flex; align-items: center; gap: .3rem; font-size: .6rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #fff; background: var(--navy); padding: .22rem .5rem; flex-shrink: 0; }
.map-info-pin svg { width: 10px; height: 10px; stroke-width: 2.2; }
.map-info-name { margin: 0 0 .5rem; font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.map-info-detail {
  margin: 0 0 .8rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line-soft);
  color: var(--steel); font-size: .89rem; line-height: 1.5;
}
.map-info-meta { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem 1.25rem; margin: 0; }
.map-info-meta .mode { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); }
.map-info-meta .mode svg { width: 15px; height: 15px; stroke-width: 1.8; }
.map-info-meta .eta { font-size: .82rem; font-weight: 600; color: var(--navy); }
.map-note { margin-top: .9rem; font-size: .78rem; color: var(--muted); }
.placeholder-tag { display: inline-block; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: #92400e; background: #fef3c7; border: 1px solid #fcd34d; padding: .15rem .5rem; margin-left: .75rem; vertical-align: middle; }

/* Grid & cards ----------------------------------------------------------- */
.grid { display: grid; gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.card {
  background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 2.25rem 2rem 2.5rem; transition: background .2s var(--ease); position: relative;
}
.card::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.card:hover { background: var(--bg); }
.card:hover::before { transform: scaleX(1); }
.card:hover .card-icon { color: var(--accent); }
.card[data-index]::after { content: attr(data-index); position: absolute; top: 1.6rem; right: 1.75rem; font-size: .74rem; font-weight: 600; letter-spacing: .12em; color: var(--steel); font-variant-numeric: tabular-nums; }
.card-thumb { width: calc(100% + 4rem); aspect-ratio: 3 / 2; object-fit: contain; background: #04264c; margin: -2.25rem -2rem 1.5rem; }
.card-icon { width: 38px; height: 38px; color: var(--navy); margin-bottom: 1.6rem; transition: color .2s; }
.card-icon svg { width: 38px; height: 38px; stroke-width: 1.5; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--steel); margin: 0; font-size: .95rem; line-height: 1.6; }
a.card { display: block; color: inherit; }
.card-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.card-link::after { content: "→"; transition: transform .2s var(--ease); }
a.card:hover .card-link::after { transform: translateX(3px); }

/* Pillars ---------------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.pillar { padding: 2.4rem 2rem; background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s var(--ease); }
.pillar:hover { background: var(--bg); }
.pillar-icon { width: 38px; height: 38px; color: var(--accent); margin-bottom: 1.2rem; }
.pillar-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.pillar h3 { font-size: clamp(1.05rem, 1.6vw, 1.25rem); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; padding-bottom: .85rem; border-bottom: 2px solid var(--accent); display: inline-block; font-weight: 700; }
.pillar p { margin: 0; font-size: clamp(.95rem, 1.15vw, 1.05rem); color: var(--steel); line-height: 1.55; }

/* Statement band (solid, no media — avoids clashing with source artwork) - */
.statement-band { background: var(--navy-deep); color: #fff; }
.statement-inner { padding-block: clamp(3.5rem, 6vw, 5rem); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 2rem 4rem; align-items: end; }
.statement-band .eyebrow { color: #8fb4f5; margin-bottom: 0; }
.statement-band .eyebrow::before { background: #8fb4f5; }
.statement-band p.statement { font-size: clamp(1.6rem, 3.2vw, 3rem); font-weight: 600; line-height: 1.1; letter-spacing: -.03em; color: #fff; margin: 0; text-transform: uppercase; }
.statement-band p.statement .accent { color: #8fb4f5; }

/* CTA band --------------------------------------------------------------- */
.cta-band { background: #fff; color: var(--ink); padding-block: 3.25rem; border-top: 1px solid var(--line); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { margin-bottom: .3rem; font-size: clamp(1.3rem, 2.1vw, 1.7rem); }
.cta-band p { margin: 0; color: var(--steel); }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: #a9b5cb; padding-top: 4.5rem; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1.2fr; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { background: #fff; padding: .6rem .9rem; margin-bottom: 1.4rem; width: 150px; }
.footer-brand p { line-height: 1.7; max-width: 40ch; }
.site-footer h3 { color: #fff; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer a { color: #e2e8f3; }
.site-footer a:hover { color: #8fb4f5; }
.footer-nav li, .footer-contact li { margin-bottom: .6rem; }
.footer-contact li span { display: block; font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; color: #6f7d97; }
.footer-address address { line-height: 1.75; margin-bottom: .9rem; }
.footer-mark { padding-top: 3rem; overflow: hidden; }
.footer-mark span { display: block; font-size: clamp(3rem, 11vw, 11rem); font-weight: 700; letter-spacing: -.05em; line-height: .8; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.14); white-space: nowrap; user-select: none; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-block: 1.5rem; font-size: .8rem; color: #6f7d97; }
.footer-bottom p { margin: 0; }

/* Contact page ----------------------------------------------------------- */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-card { background: #fff; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-card .card-icon { margin-bottom: 1.2rem; }
.contact-card .card-icon { width: 38px; height: 38px; }
.contact-card .card-icon svg { width: 38px; height: 38px; }
.contact-card h3 { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .6rem; color: var(--steel); font-weight: 700; }
.contact-card a { font-weight: 600; font-size: 1.15rem; word-break: break-all; }
.contact-card p { margin: .5rem 0 0; font-size: .88rem; color: var(--steel); }

.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); padding: clamp(1.75rem, 3vw, 2.75rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); margin-bottom: .45rem; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 0;
  font: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--navy); box-shadow: inset 0 0 0 1px var(--navy); }
.field textarea { min-height: 160px; resize: vertical; }
.field-consent { display: flex; gap: .75rem; align-items: flex-start; font-size: .85rem; color: var(--steel); }
.field-consent input { width: auto; margin-top: .25rem; }
.field-consent label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: .85rem; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: .8rem; color: var(--steel); margin-top: 1rem; }

.alert { padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-weight: 500; border-left: 3px solid; }
.alert-success { background: #eef8f1; color: #14532d; border-color: #16a34a; }
.alert-error { background: #fdf2f2; color: #7f1d1d; border-color: #dc2626; }

.info-block { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--line-soft); }
.info-block h3 { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); margin-bottom: .75rem; }
.info-block address { line-height: 1.7; }

/* Tag list (industries / sectors served) --------------------------------- */
.tag-list { display: flex; flex-wrap: wrap; gap: .75rem; }
.tag { padding: .7rem 1.25rem; border: 1px solid var(--line); font-size: .88rem; font-weight: 600; color: var(--navy); background: #fff; }

/* FAQ (native details/summary — accessible, no JS) ------------------------ */
.faq-list { border-top: 1px solid var(--line); max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; cursor: pointer; font-weight: 600; font-size: 1.05rem; color: var(--navy);
  list-style: none; -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--accent); font-size: 1.2rem; font-weight: 400; line-height: 1;
  transition: transform .2s var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p { padding: 0 0 1.6rem; margin: -.5rem 0 0; color: var(--steel); font-size: .98rem; line-height: 1.65; max-width: 70ch; }

/* Pricing ------------------------------------------------------------------ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.price-card { background: #fff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2.25rem 1.75rem 2.5rem; display: flex; flex-direction: column; }
.price-card.is-featured { background: var(--navy); color: #fff; }
.price-card.is-featured h3, .price-card.is-featured .price-amount { color: #fff; }
.price-card.is-featured .price-featured-tag { display: inline-block; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); background: #fff; padding: .2rem .6rem; margin-bottom: 1rem; }
.price-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.price-amount { display: block; font-family: var(--font-display); font-size: clamp(2rem, 2.6vw, 2.6rem); font-weight: 700; color: var(--navy); letter-spacing: -.02em; margin: .5rem 0 1.4rem; }
.price-amount small { font-size: .9rem; font-weight: 500; color: var(--steel); }
.price-card.is-featured .price-amount small { color: #aebbd3; }
.price-card .btn { margin-top: auto; }

/* Legal ------------------------------------------------------------------ */
.prose { max-width: 800px; }
.prose h2 { font-size: 1.35rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft); }
.prose h3 { margin-top: 1.5rem; font-size: 1rem; }
.prose ul { list-style: none; padding: 0; margin-bottom: 1em; }
.prose ul li { padding: .5rem 0; border-bottom: 1px solid var(--line-soft); }
.notice { background: #fffbeb; border-left: 3px solid #d97706; color: #78350f; padding: 1rem 1.25rem; font-size: .9rem; }

/* Reveal ----------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .06s; }
.reveal-delay-2 { transition-delay: .12s; }
.reveal-delay-3 { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4, .grid-5, .pillars, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .price-card:nth-child(2n) { border-right: 0; }
  .price-card:nth-child(n+3) { border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .section-head.row, .statement-inner { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
  .feature-row-grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.75rem; }
  .feature-item:nth-child(2n) { border-right: 0; }
}
@media (max-width: 900px) {
  :root { --header-h: 76px; }
  .brand img { height: 60px; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 1.25rem;
    padding: 1.5rem 1.5rem 2rem; transform: translateX(100%); visibility: hidden;
    transition: transform .3s var(--ease), visibility 0s .3s; overflow-y: auto; border-top: 1px solid var(--line);
  }
  .site-nav.is-open { transform: none; visibility: visible; transition-delay: 0s; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li a { padding: 1rem 0; font-size: .9rem; border-bottom: 1px solid var(--line-soft); }
  .site-nav li a::after { display: none; }
  body.nav-open { overflow: hidden; }

  .grid-2, .grid-3, .contact-cards { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-inner { padding-block: 3.5rem; }

  /* Crop the dense lower portion of the source artwork on small screens —
     the fine print there is unreadable at this width and is already repeated
     as real text in the .intro section right below. */
  .hero-banner:not(.hero-banner-compact) { aspect-ratio: 1672 / 700; overflow: hidden; }
  .hero-banner:not(.hero-banner-compact) img { height: 100%; object-fit: cover; object-position: top center; }

  .feature-row-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: 0 !important; padding: 0 !important; margin-top: 1.5rem; }
  .feature-item:first-child { margin-top: 0; }
  .feature-row-sky { padding-bottom: 3rem; }
  .mountain-strip { position: static; margin-top: 2rem; }

  /* Diagonal photo layout only works at wide, fixed proportions — stack as
     two solid blocks on small screens instead of forcing the aspect-ratio. */
  .about-panel { aspect-ratio: auto; color: inherit; }
  .about-panel-bg { display: none; }
  .about-panel-inner { display: block; height: auto; }
  .in-artwork { display: block; }
  .about-panel-text { background: var(--navy); color: #fff; padding: 2.5rem clamp(1.5rem, 5vw, 2rem); }
  .about-panel-text h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .about-panel-text p { font-size: .95rem; max-width: none; }
  .about-panel-markets { background: var(--bg); padding: 2.5rem clamp(1.5rem, 5vw, 2rem) 1rem; }
  .about-panel-markets h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .about-panel-markets p { font-size: .95rem; max-width: none; }
  .about-panel-regions {
    border-left: 0; height: auto; flex-direction: row; flex-wrap: wrap; gap: .6rem;
    padding: 0 clamp(1.5rem, 5vw, 2rem) 2.5rem; background: var(--bg);
  }
  .about-panel-regions li { padding: .5rem 1rem; border: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .container { width: min(100% - 2rem, var(--container)); }
  .grid-4, .grid-5, .pillars, .form-grid, .pricing-grid { grid-template-columns: 1fr; }
  .faq-item summary { font-size: .98rem; }
  .price-card { border-right: 0 !important; border-top: 1px solid var(--line); }
  .price-card:first-child { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero-actions .btn, .cta-inner .btn { width: 100%; }
}
