/* ==========================================================
   DAQ Geotech — shared stylesheet
   Brand colours sampled from the DAQ logo blocks:
   orange (Direct) · green (Access) · navy (DAQ) · purple (Quality)
   ========================================================== */
:root {
  --orange: #E7865C;
  --orange-ink: #B4552A;      /* orange for text on light backgrounds (AA) */
  --green: #7EB359;
  --green-ink: #4A7A2B;
  --navy: #334A74;
  --navy-deep: #101B33;
  --navy-mid: #1B2A4A;
  --purple: #58466C;
  --purple-soft: #8C79A6;
  --ink: #18223A;
  --muted: #56617A;
  --paper: #F2F4F8;
  --white: #FFFFFF;
  --line: #D7DCE6;
  --line-dark: rgba(255,255,255,.14);

  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
  --r-sm: 4px;
  --r-md: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-ink); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.28rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em; }
.lede { font-size: 1.18rem; color: var(--muted); max-width: 62ch; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -999px; top: 0; background: var(--orange); color: #fff; padding: 10px 16px; z-index: 100; }
.skip:focus { left: 10px; }

/* ---------- Brand strip: the four logo blocks as a rule ---------- */
.brand-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 5px; }
.brand-strip span:nth-child(1) { background: var(--orange); }
.brand-strip span:nth-child(2) { background: var(--green); }
.brand-strip span:nth-child(3) { background: var(--navy); }
.brand-strip span:nth-child(4) { background: var(--purple); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.logo img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { white-space: nowrap; font-family: var(--font-head); font-size: .92rem; font-weight: 500; color: var(--ink); text-decoration: none; padding: 8px 11px; border-radius: var(--r-sm); }
.nav a:hover { background: var(--paper); color: var(--navy); }
.nav a[aria-current="page"] { color: var(--navy); box-shadow: inset 0 -3px 0 var(--orange); border-radius: 0; }
.nav .btn { margin-left: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px 12px; font: 600 .9rem var(--font-head); color: var(--ink); cursor: pointer; }

@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px var(--gutter) 24px; border-bottom: 1px solid var(--line); display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 8px; border-bottom: 1px solid var(--paper); }
  .nav a[aria-current="page"] { box-shadow: inset 4px 0 0 var(--orange); padding-left: 14px; }
  .nav .btn { margin: 12px 0 0; text-align: center; }
}

/* ---------- Buttons ---------- */
.btn { display: inline-block; font-family: var(--font-head); font-weight: 600; font-size: .95rem; text-decoration: none; padding: 13px 22px; border-radius: var(--r-sm); border: 2px solid transparent; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.btn-primary { background: var(--orange); color: #1a1208; }
.btn-primary:hover { background: #F09A74; color: #1a1208; }
.nav .btn-primary { color: #1a1208; padding: 10px 16px; }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { border-color: var(--green); color: #fff; background: rgba(126,179,89,.12); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; background: var(--navy-deep); color: #fff; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, var(--navy-deep) 35%, rgba(16,27,51,.55) 100%); }
.hero .wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(64px, 9vw, 120px); }
.hero h1 { max-width: 15ch; }
.hero .lede { color: #C9D2E3; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note { margin-top: 36px; font-size: .92rem; color: #9DA9C2; max-width: 52ch; border-left: 3px solid var(--green); padding-left: 14px; }

/* Stereonet — the signature graphic */
.stereonet { width: 100%; max-width: 440px; margin-left: auto; }
.stereonet figcaption { font-size: .82rem; color: #8F9BB5; text-align: center; margin-top: 10px; }
.stereonet .gc { fill: none; stroke: rgba(255,255,255,.13); stroke-width: 1; }
.stereonet .rim { fill: rgba(255,255,255,.02); stroke: rgba(255,255,255,.55); stroke-width: 1.5; }
.stereonet .plane { fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 700; stroke-dashoffset: 700; animation: draw 1.8s ease-out forwards; }
.stereonet .plane:nth-of-type(2) { animation-delay: .25s; }
.stereonet .plane:nth-of-type(3) { animation-delay: .5s; }
.stereonet .pole { opacity: 0; animation: pop .6s ease-out forwards; animation-delay: 1.2s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { to { opacity: .9; } }
@media (prefers-reduced-motion: reduce) { .stereonet .plane { stroke-dashoffset: 0; } .stereonet .pole { opacity: .9; } }

/* ---------- Page header (inner pages) ---------- */
.page-head { position: relative; background: var(--navy-deep); color: #fff; overflow: hidden; isolation: isolate; }
.page-head .media-bg { position: absolute; inset: 0; z-index: -1; }
.page-head .media-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.page-head .media-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-deep) 30%, rgba(16,27,51,.6)); }
.page-head .wrap { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(48px, 6vw, 80px); }
.page-head h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); max-width: 20ch; }
.page-head .lede { color: #C9D2E3; }
.crumbs { font-size: .88rem; color: #9DA9C2; margin-bottom: 18px; }
.crumbs a { color: #C9D2E3; }

/* Contour pattern used behind dark sections when images are absent */
.contours { background-image:
  radial-gradient(ellipse at 80% 30%, transparent 0 60px, rgba(255,255,255,.035) 61px 62px, transparent 63px 110px, rgba(255,255,255,.035) 111px 112px, transparent 113px 170px, rgba(255,255,255,.035) 171px 172px, transparent 173px 240px, rgba(255,255,255,.035) 241px 242px, transparent 243px);
}

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section-paper { background: var(--paper); }
.section-dark { background: var(--navy-deep); color: #fff; }
.section-dark .lede, .section-dark p { color: #C9D2E3; }
.section-intro { max-width: 720px; margin-bottom: 48px; }

/* ---------- Discipline families (colour-coded) ---------- */
.fam-ug { --fam: var(--navy); --fam-ink: var(--navy); }
.fam-op { --fam: var(--orange); --fam-ink: var(--orange-ink); }
.fam-tb { --fam: var(--green); --fam-ink: var(--green-ink); }
.fam-mp { --fam: var(--purple); --fam-ink: var(--purple); }

.families { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.family { background: #fff; padding: 36px 34px 34px; position: relative; display: flex; flex-direction: column; }
.family::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--fam); }
.family h3 { color: var(--fam-ink); font-size: 1.4rem; }
.family ul { list-style: none; padding: 0; margin: 8px 0 22px; columns: 2; column-gap: 24px; }
.family li { break-inside: avoid; padding: 5px 0 5px 16px; position: relative; font-size: .96rem; }
.family li::before { content: ""; position: absolute; left: 0; top: 14px; width: 7px; height: 7px; background: var(--fam); }
.family .more { margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--fam-ink); }
.fam-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.fam-head h3 { margin: 0; }

/* Icon tile — shows the uploaded icon; falls back to a brand block */
.ico { flex: none; width: 52px; height: 52px; border-radius: var(--r-sm); background: color-mix(in srgb, var(--fam, var(--navy)) 14%, white); display: grid; place-items: center; position: relative; }
.ico img { width: 30px; height: 30px; }
.ico:not(:has(img))::after { content: ""; width: 18px; height: 18px; background: var(--fam, var(--navy)); box-shadow: 6px 6px 0 -2px color-mix(in srgb, var(--fam, var(--navy)) 45%, white); }
.ico-sm { width: 40px; height: 40px; }
.ico-sm img { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .stereonet { margin: 0 auto; max-width: 320px; }
  .families { grid-template-columns: 1fr; }
  .family ul { columns: 1; }
}

/* ---------- Response commitments strip ---------- */
.commitments { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.commit { padding: 28px 24px 8px 0; border-right: 1px solid var(--line-dark); margin-right: 24px; }
.commit:last-child { border-right: 0; margin-right: 0; }
.commit strong { display: block; font-family: var(--font-head); font-size: 2.1rem; font-weight: 600; color: #fff; line-height: 1.1; }
.commit span { display: block; color: #A9B4CB; font-size: .95rem; margin-top: 6px; }
.commit:nth-child(1) strong { color: var(--orange); }
.commit:nth-child(2) strong { color: var(--green); }
.commit:nth-child(3) strong { color: #8FA6D4; }
.commit:nth-child(4) strong { color: var(--purple-soft); }
@media (max-width: 860px) { .commitments { grid-template-columns: 1fr 1fr; } .commit:nth-child(2) { border-right: 0; } }
@media (max-width: 520px) { .commitments { grid-template-columns: 1fr; } .commit { border-right: 0; border-bottom: 1px solid var(--line-dark); } }

/* ---------- Split layout with media ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } }

/* Media frame — gradient placeholder until the JPEG is uploaded */
.media { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-md); overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 55%, var(--purple) 100%); }
.media::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(118deg, transparent 0 22px, rgba(255,255,255,.05) 22px 23px); }
.media img { position: relative; width: 100%; height: 100%; object-fit: cover; }
.media .tag { position: absolute; left: 0; bottom: 0; background: var(--orange); color: #1a1208; font: 600 .8rem var(--font-head); padding: 7px 12px; z-index: 2; }
.media-wide { aspect-ratio: 16 / 9; }
.media-portrait { aspect-ratio: 4 / 5; }

/* ---------- Checklist ---------- */
.checks { list-style: none; padding: 0; margin: 0 0 1.2em; }
.checks li { position: relative; padding: 7px 0 7px 30px; border-bottom: 1px solid var(--line); }
.checks li::before { content: ""; position: absolute; left: 2px; top: 15px; width: 12px; height: 7px; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg); }
.section-dark .checks li { border-color: var(--line-dark); }

/* ---------- Values row ---------- */
.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); }
.value { padding: 26px 22px; border-right: 1px solid var(--line); background: #fff; }
.value:last-child { border-right: 0; }
.value h4 { margin-bottom: 6px; }
.value p { font-size: .93rem; color: var(--muted); margin: 0; }
.value:nth-child(1) { border-top: 4px solid var(--orange); }
.value:nth-child(2) { border-top: 4px solid var(--green); }
.value:nth-child(3) { border-top: 4px solid var(--navy); }
.value:nth-child(4) { border-top: 4px solid var(--purple); }
.value:nth-child(5) { border-top: 4px solid var(--orange); }
@media (max-width: 960px) { .values { grid-template-columns: 1fr 1fr; } .value { border-bottom: 1px solid var(--line); } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }

/* ---------- Statement cards (mission / vision) ---------- */
.statements { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.statement { padding: 34px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); }
.statement.mission { border-top: 5px solid var(--orange); }
.statement.vision { border-top: 5px solid var(--purple); }
.statement p { font-size: 1.12rem; margin: 0; }
@media (max-width: 760px) { .statements { grid-template-columns: 1fr; } }

/* ---------- Acronym banner ---------- */
.acronym { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 28px; }
.acronym div { padding: 22px 20px; color: #fff; }
.acronym b { display: block; font-family: var(--font-head); font-size: 2.6rem; line-height: 1; }
.acronym span { font-size: .95rem; opacity: .9; }
.acronym div:nth-child(1) { background: var(--orange); color: #1a1208; }
.acronym div:nth-child(2) { background: var(--green); color: #14240a; }
.acronym div:nth-child(3) { background: var(--purple); }

/* ---------- Specialist studies ---------- */
.studies { display: grid; gap: 14px; }
.study { border: 1px solid var(--line); border-left: 5px solid var(--fam, var(--navy)); border-radius: var(--r-sm); background: #fff; }
.study summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 20px 24px; }
.study summary::-webkit-details-marker { display: none; }
.study summary h3 { margin: 0; font-size: 1.12rem; }
.study summary .sub { display: block; font-family: var(--font-body); font-weight: 400; font-size: .92rem; color: var(--muted); margin-top: 3px; }
.study summary .plus { width: 26px; height: 26px; position: relative; }
.study summary .plus::before, .study summary .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .2s; }
.study summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.study[open] summary .plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.study-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 4px 24px 26px 94px; }
.study-body h4 { font-size: .9rem; color: var(--fam-ink, var(--navy)); margin-bottom: 6px; }
.study-body p, .study-body li { font-size: .94rem; color: #34405A; }
.study-body ul { padding-left: 18px; margin: 0; }
@media (max-width: 860px) { .study-body { grid-template-columns: 1fr; padding-left: 24px; } }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; }
table { border-collapse: collapse; width: 100%; min-width: 620px; font-size: .95rem; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) td { background: #F8F9FC; }
td strong { font-family: var(--font-head); font-weight: 600; }

/* ---------- Methodology cycle (genuine sequence → numbered) ---------- */
.cycle { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.cycle li { counter-increment: step; position: relative; padding: 58px 18px 22px 0; }
.cycle li::before { content: counter(step, decimal-leading-zero); position: absolute; top: 0; left: 0; width: 42px; height: 42px; display: grid; place-items: center; font: 600 .95rem var(--font-head); color: #fff; background: var(--navy); border-radius: 50%; z-index: 1; }
.cycle li::after { content: ""; position: absolute; top: 20px; left: 42px; right: 0; height: 2px; background: var(--line); }
.cycle li:nth-child(5n)::after { display: none; }
.cycle li:nth-child(4n+1)::before { background: var(--orange); color: #1a1208; }
.cycle li:nth-child(4n+2)::before { background: var(--green); color: #14240a; }
.cycle li:nth-child(4n+3)::before { background: var(--navy); }
.cycle li:nth-child(4n+4)::before { background: var(--purple); }
.cycle h4 { margin-bottom: 4px; }
.cycle p { font-size: .92rem; color: var(--muted); margin: 0; }
.feedback { margin-top: 18px; display: flex; align-items: center; gap: 14px; padding: 16px 20px; border: 2px dashed var(--green); border-radius: var(--r-sm); font-size: .96rem; }
.feedback b { font-family: var(--font-head); }
@media (max-width: 960px) { .cycle { grid-template-columns: 1fr 1fr; } .cycle li::after { display: none; } }
@media (max-width: 520px) { .cycle { grid-template-columns: 1fr; } }

/* Chain (failure investigation logic) */
.chain { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 22px 0; }
.chain span { padding: 9px 14px; background: rgba(255,255,255,.07); border: 1px solid var(--line-dark); border-radius: var(--r-sm); font-size: .92rem; }
.chain i { font-style: normal; color: var(--green); }
.section-paper .chain span, .section .chain span { color: inherit; }
.chain.light span { background: #fff; border-color: var(--line); }

/* ---------- Principles ---------- */
.principles { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.principle { border-top: 2px solid var(--line-dark); padding-top: 18px; }
.principle h4 { color: #fff; }

/* ---------- Projects ---------- */
.project { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(28px, 5vw, 64px); padding: 56px 0; border-bottom: 1px solid var(--line); align-items: start; }
.project:first-of-type { padding-top: 0; }
.project:last-of-type { border-bottom: 0; }
.project .meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; padding: 0; list-style: none; }
.project .meta li { font-size: .85rem; padding: 4px 10px; border-radius: 30px; background: var(--paper); color: var(--ink); }
.project .meta li:first-child { background: var(--fam); color: #fff; }
.fam-op .meta li:first-child, .fam-tb .meta li:first-child { color: #15120c; }
.project ul.scope { columns: 2; column-gap: 28px; padding-left: 18px; }
.project ul.scope li { font-size: .95rem; padding: 2px 0; }
@media (max-width: 860px) { .project { grid-template-columns: 1fr; } .project ul.scope { columns: 1; } }

.regions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.regions span { padding: 8px 16px; border: 1px solid var(--line-dark); border-radius: 30px; font-size: .94rem; }

/* ---------- Team ---------- */
.profile { display: grid; grid-template-columns: 360px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.profile .media { aspect-ratio: 4 / 5; }
.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 28px; }
@media (max-width: 860px) { .profile, .creds { grid-template-columns: 1fr; } .profile .media { max-width: 340px; } }

.timeline { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--line); }
.timeline li { position: relative; padding: 0 0 28px 28px; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 7px; width: 12px; height: 12px; background: var(--navy); }
.timeline li:nth-child(4n+1)::before { background: var(--orange); }
.timeline li:nth-child(4n+2)::before { background: var(--green); }
.timeline li:nth-child(4n+4)::before { background: var(--purple); }
.timeline .when { font-size: .88rem; color: var(--muted); }
.timeline h4 { margin: 2px 0 4px; }
.timeline p { font-size: .95rem; margin: 0; color: #34405A; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 5vw, 72px); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { form .row { grid-template-columns: 1fr; } }
label { display: block; font: 600 .9rem var(--font-head); margin: 0 0 6px; }
input, select, textarea { width: 100%; font: inherit; font-size: 1rem; padding: 12px 14px; border: 1px solid #B9C1D1; border-radius: var(--r-sm); background: #fff; color: var(--ink); margin-bottom: 18px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(51,74,116,.2); }
textarea { min-height: 150px; resize: vertical; }
.form-status { font-size: .95rem; margin-top: 12px; min-height: 1.4em; color: var(--green-ink); }
.contact-card { background: var(--navy-deep); color: #fff; padding: 34px; border-radius: var(--r-md); }
.contact-card p { color: #C9D2E3; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.contact-line:last-of-type { border-bottom: 0; }
.contact-line .ico { background: rgba(255,255,255,.08); }
.contact-line a { color: #fff; }
.contact-line small { display: block; color: #9DA9C2; font-size: .85rem; }
.urgent { margin-top: 22px; padding: 18px 20px; background: rgba(231,134,92,.13); border-left: 4px solid var(--orange); border-radius: var(--r-sm); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--purple); color: #fff; }
.cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-top: 56px; padding-bottom: 56px; }
.cta-band h2 { margin: 0; max-width: 24ch; font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.cta-band p { margin: 8px 0 0; color: #E3DCEC; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #B5C0D6; font-size: .94rem; }
.site-footer .wrap { padding-top: 64px; padding-bottom: 32px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-logo { background: #fff; display: inline-block; padding: 10px 14px; border-radius: var(--r-sm); margin-bottom: 16px; }
.foot-logo img { height: 42px; width: auto; }
.site-footer h4 { color: #fff; font-size: .98rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.site-footer a { color: #D6DDEB; text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.foot-base { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .85rem; color: #8995AE; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* Utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.note { font-size: .88rem; color: var(--muted); }
.cta-band .wrap > div { flex: 1 1 480px; }
