/* ============================================================
   Build Support Services - site stylesheet
   Palette and type per BuildSupport_Website_Design_and_Content_Brief.docx
   ============================================================ */

:root {
  --navy: #181D33;
  --navy-deep: #10142A;
  --navy-line: #313547;
  --logo-grey: #A5A5A5;
  --white: #FFFFFF;
  --grey-050: #F2F2F3;
  --grey-100: #E4E4E6;
  --body: #55575E;
  --rule: #D2D2D5;
  --rule-soft: #E0E0E2;
  --focus: #FFC24A;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --radius: 4px;
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body);
  background: var(--grey-050);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.18; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.15rem, 4.4vw, 3.35rem); }
h2 { font-size: clamp(1.7rem, 3.1vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }
p + p { margin-top: 1.1em; }
strong { color: var(--navy); font-weight: 600; }

.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 800px; }
.measure { max-width: 800px; }
.lede { font-size: clamp(1rem, 1.45vw, 1.12rem); line-height: 1.62; }

/* --- Accessibility --------------------------------------- */
.skip-link {
  position: absolute; left: 16px; top: -80px; z-index: 200;
  background: var(--white); color: var(--navy); font-weight: 600;
  padding: 12px 20px; border-radius: var(--radius); text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 16px; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible, video:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Eyebrow ---------------------------------------------- */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 18px;
}


/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 13px 26px;
  font: inherit; font-size: 0.98rem; font-weight: 600;
  border: 1px solid transparent; border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); color: var(--white); }
.btn-secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: var(--grey-100); color: var(--navy); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.textlink {
  display: inline; font-weight: 600; color: var(--navy);
  text-decoration: none;
  box-shadow: inset 0 -2px 0 var(--navy);
  line-height: 1.5;
}
.textlink:hover { color: var(--body); box-shadow: inset 0 -2px 0 var(--body); }
.textlink::after { content: "\00a0\2192"; font-weight: 400; }

/* --- Header ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
}
.header-inner {
  width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto;
  min-height: 84px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header-logo { display: flex; align-items: center; text-decoration: none; padding: 8px 0; }
.header-logo img { width: 208px; height: auto; }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a:not(.btn) {
  color: var(--white); text-decoration: none;
  font-size: 0.94rem; font-weight: 500; letter-spacing: -0.005em;
  padding: 8px 0; border-bottom: 2px solid transparent;
}
.primary-nav a:not(.btn):hover { border-bottom-color: var(--logo-grey); }
.primary-nav a:not(.btn)[aria-current="page"] { border-bottom-color: var(--white); font-weight: 600; }
.primary-nav .btn.btn-light { color: var(--navy); border-bottom: 1px solid transparent; }
.primary-nav .btn.btn-light:hover { color: var(--navy); border-bottom-color: transparent; }

.nav-toggle {
  display: none; align-items: center; gap: 10px;
  background: transparent; border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius); color: var(--white);
  font: inherit; font-size: 0.9rem; font-weight: 600;
  padding: 10px 14px; cursor: pointer;
}
.nav-toggle .bars { display: block; width: 18px; height: 2px; background: var(--white); position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--white);
}
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }

.nav-scrim {
  position: fixed; inset: 0; background: rgba(24,29,51,.55);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 90;
}
body.nav-open .nav-scrim { opacity: 1; pointer-events: auto; }

/* --- Hero ------------------------------------------------- */
.hero { background: var(--navy); color: rgba(255,255,255,.82); padding: 84px 0 78px; }
.hero h1 { color: var(--white); max-width: 15ch; }
.hero p { max-width: 60ch; margin-top: 22px; font-size: 1.06rem; }
.hero-split { display: grid; grid-template-columns: 1.25fr .85fr; gap: 60px; align-items: center; }

.hero-portrait { margin: 0; }
.hero-portrait img {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%;
}
.hero-portrait figcaption {
  margin-top: 14px; font-size: 0.88rem; color: var(--logo-grey);
}
.hero-portrait figcaption strong { color: var(--white); font-weight: 600; }

.page-hero { background: var(--navy); color: rgba(255,255,255,.82); padding: 78px 0 70px; }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero p { max-width: 66ch; margin-top: 20px; font-size: 1.04rem; }

/* --- Credential strip ------------------------------------- */
.credentials { background: var(--grey-100); border-bottom: 1px solid var(--rule); }
.credentials ul {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin: 0;
}
.credentials li {
  padding: 24px 26px 24px 0;
  font-size: 0.94rem; font-weight: 600; color: var(--navy); line-height: 1.45;
  border-right: 1px solid var(--rule);
}
.credentials li:last-child { border-right: 0; padding-right: 0; }
.credentials li + li { padding-left: 26px; }

/* --- Sections --------------------------------------------- */
.band { padding: 96px 0; }
.band-grey { background: var(--grey-100); }
.band-white { background: var(--white); }
.band-navy { background: var(--navy); color: rgba(255,255,255,.82); }
.band-navy h2, .band-navy h3 { color: var(--white); }
.band-tight { padding: 64px 0; }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head p { margin-top: 16px; font-size: 1.02rem; }
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.section-head-row > div { max-width: 720px; }

/* --- Lifecycle spine (signature device) ------------------- */
.lifecycle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 3px solid var(--navy); }
.lifecycle-stage {
  padding: 40px 40px 44px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column;
}
.lifecycle-stage:first-child { padding-left: 0; }
.lifecycle-stage:last-child { border-right: 0; padding-right: 0; }
.lifecycle-stage .stage-label {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--body); margin-bottom: 16px;
}
.lifecycle-stage h3 { margin-bottom: 16px; }
.lifecycle-stage p { font-size: 0.95rem; }
.lifecycle-stage figure.evidence { margin-top: 34px; }
.lifecycle-stage .stage-cta { margin-top: 32px; }
.band-grey .lifecycle-stage { border-color: var(--rule); }

figure.evidence { margin: 0; }
figure.evidence img { width: 100%; height: auto; border-radius: var(--radius); }
figure.evidence figcaption {
  margin-top: 14px; font-size: 0.84rem; line-height: 1.55; color: var(--body);
}
.ratio-16x9 img { aspect-ratio: 16 / 9; object-fit: cover; }
.ratio-3x2 img { aspect-ratio: 3 / 2; object-fit: cover; }

/* --- Card grids ------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 32px 30px;
}
.band-white .card { background: var(--grey-050); border-color: var(--rule-soft); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.95rem; }
.card .textlink { display: inline-block; margin-top: 22px; }

.card-navy { background: rgba(255,255,255,.05); border: 1px solid var(--navy-line); }
.band-navy .card-navy p { color: rgba(255,255,255,.78); }

/* --- Split content ---------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.split-wide { grid-template-columns: 1.15fr .85fr; }
.split-media { grid-template-columns: .9fr 1.1fr; }

/* --- Numbered process ------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.steps li { list-style: none; padding: 32px 34px 4px 0; border-top: 3px solid var(--navy); }
.steps li:first-child { padding-left: 0; }
.steps li + li { padding-left: 34px; }
.steps li:last-child { padding-right: 0; }
.steps h3 { margin-bottom: 12px; }
.steps p { font-size: 0.95rem; }

/* --- Service blocks --------------------------------------- */
.service-block { padding: 48px 0; border-top: 1px solid var(--rule); }
.service-block:first-of-type { border-top: 3px solid var(--navy); }
.service-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.service-block ul { margin-top: 22px; padding-left: 0; list-style: none; }
.service-block ul li {
  position: relative; padding-left: 22px; margin-bottom: 10px; font-size: 0.95rem;
}
.service-block ul li::before {
  content: ""; position: absolute; left: 0; top: 0.66em;
  width: 9px; height: 1px; background: var(--navy);
}
.boundary-note {
  margin-top: 26px; padding: 18px 22px;
  background: var(--grey-100); border-left: 3px solid var(--navy); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.94rem;
}
.band-grey .boundary-note { background: var(--white); }

/* --- Checklist / plain lists ------------------------------ */
.tick-list { list-style: none; display: grid; gap: 10px; margin-top: 24px; }
.tick-list li { position: relative; padding-left: 26px; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 1px; background: var(--navy);
}
.band-navy .tick-list li::before { background: var(--logo-grey); }

/* --- Testimonials ----------------------------------------- */
.quote-block {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 36px 34px;
}
.band-white .quote-block { background: var(--grey-050); border-color: var(--rule-soft); }
.quote-block blockquote p {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  color: var(--navy); font-size: 1.06rem; line-height: 1.55; letter-spacing: 0.002em;
}
.quote-block blockquote p + p { margin-top: 0.85em; }
.quote-block cite {
  display: block; margin-top: 20px; font-style: normal;
  font-weight: 600; color: var(--navy); font-size: 0.94rem;
}
.quote-block cite span { display: block; font-weight: 400; color: var(--body); font-size: 0.88rem; }

.pull-quote {
  border-left: 2px solid var(--navy); padding-left: 26px; margin: 0;
}
.pull-quote p {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.12rem, 1.6vw, 1.32rem); line-height: 1.42;
  color: var(--navy); letter-spacing: 0.002em;
}
.band-navy .pull-quote { border-left-color: var(--logo-grey); }
.band-navy .pull-quote p { color: var(--white); }
.pull-quote cite { display: block; margin-top: 20px; font-style: normal; font-size: 0.92rem; font-weight: 600; }

.claim-note {
  margin-top: 18px; font-size: 0.84rem; color: var(--body); line-height: 1.55;
}

/* --- Case studies ----------------------------------------- */
.case { border-top: 3px solid var(--navy); padding-top: 40px; margin-top: 80px; }
.case:first-of-type { margin-top: 0; }
.case-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.case-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 44px; }
.case-body h3 { font-size: 1.05rem; margin-bottom: 12px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }

.icon-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.icon-tile {
  border: 1px solid var(--rule); border-radius: var(--radius); padding: 22px;
  display: flex; flex-direction: column; gap: 12px; background: var(--white);
}
.band-white .icon-tile { background: var(--grey-050); border-color: var(--rule-soft); }
.icon-tile svg { width: 30px; height: 30px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.icon-tile span { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

.priority-plan { border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.band-white .priority-plan { background: var(--grey-050); border-color: var(--rule-soft); }
.priority-plan .pp-row { display: grid; grid-template-columns: 132px 1fr; gap: 0; border-top: 1px solid var(--rule); }
.priority-plan .pp-row:first-child { border-top: 0; }
.priority-plan .pp-tier {
  background: var(--navy); color: var(--white); padding: 16px 18px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center;
}
.priority-plan .pp-row:nth-child(2) .pp-tier { background: #43454F; }
.priority-plan .pp-row:nth-child(3) .pp-tier { background: #6E717A; }
.priority-plan .pp-text { padding: 16px 20px; font-size: 0.95rem; }


/* --- Media panel (image with navy filter and overlaid copy) --------- */
.media-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  min-height: 460px;
  display: flex;
  align-items: center;
}
.media-panel > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.media-panel::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(24, 29, 51, 0.95) 0%,
    rgba(24, 29, 51, 0.88) 42%,
    rgba(24, 29, 51, 0.55) 72%,
    rgba(24, 29, 51, 0.34) 100%);
}
.media-panel-body {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 60px 64px;
  text-align: left;
}
.media-panel-body h2 { color: var(--white); max-width: 18ch; }
.media-panel-body p {
  color: rgba(255, 255, 255, 0.86);
  margin-top: 20px;
  font-size: 1.02rem;
  max-width: 46ch;
}
.media-panel-body .btn-row { margin-top: 30px; }

/* --- Video ------------------------------------------------ */
.video-row { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 36px; }
.video-item { flex: 0 1 340px; max-width: 400px; }
.video-item video {
  width: 100%; height: auto; background: #000;
  border-radius: var(--radius); border: 1px solid var(--rule);
}
.band-navy .video-item video { border-color: var(--navy-line); }
.video-item figcaption { margin-top: 12px; font-size: 0.86rem; line-height: 1.5; }
.band-navy .video-item figcaption { color: rgba(255,255,255,.75); }

.disclaimer {
  margin-top: 32px; padding: 20px 24px;
  border: 1px solid var(--rule); border-radius: var(--radius);
  font-size: 0.88rem; line-height: 1.6;
}
.band-navy .disclaimer { border-color: var(--navy-line); color: rgba(255,255,255,.78); }

/* --- Fees ------------------------------------------------- */
.fee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fee-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
}
.fee-card.featured { border: 2px solid var(--navy); }
.fee-card .fee-price {
  font-size: 2.15rem; font-weight: 700; color: var(--navy);
  letter-spacing: -0.03em; margin: 6px 0 4px;
}
.fee-card .fee-gst { font-size: 0.85rem; font-weight: 600; color: var(--body); }
.fee-card > p { margin-top: 16px; font-size: 0.96rem; }
.fee-card ul { list-style: none; margin: 22px 0 28px; display: grid; gap: 9px; }
.fee-card ul li { position: relative; padding-left: 22px; font-size: 0.94rem; }
.fee-card ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 9px; height: 1px; background: var(--navy);
}
.fee-card .btn { margin-top: auto; }

/* --- FAQ / details ---------------------------------------- */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 40px 22px 0; position: relative;
  font-weight: 600; color: var(--navy); font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 18px;
  font-size: 1.5rem; font-weight: 400; color: var(--body);
}
.faq details[open] summary::after { content: "\2013"; }
.faq .faq-answer { padding: 0 40px 24px 0; }

/* --- Forms ------------------------------------------------ */
.form-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius); padding: 40px;
}
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; color: var(--navy); font-size: 0.93rem; }
.field .hint { font-size: 0.84rem; color: var(--body); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.98rem; color: var(--navy);
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 12px 14px; width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input[type="file"] { padding: 10px; background: var(--grey-050); }
.req { color: var(--navy); }
.fieldset-block { border: 0; margin-top: 34px; }
.fieldset-block legend {
  font-weight: 700; color: var(--navy); font-size: 1.05rem; margin-bottom: 6px; padding: 0;
}
.consent { display: flex; gap: 12px; align-items: flex-start; margin-top: 20px; font-size: 0.94rem; }
.consent input { margin-top: 5px; width: 18px; height: 18px; flex: 0 0 auto; }
.form-note {
  margin-top: 22px; padding: 18px 22px; background: var(--grey-100);
  border-left: 3px solid var(--navy); font-size: 0.92rem; border-radius: 0 var(--radius) var(--radius) 0;
}
.form-note.alert { border-left-color: #8A2B2B; }

/* --- Legal pages ------------------------------------------ */
.legal { max-width: 820px; }
.side-head { font-size: 1.3rem; }
.legal h2 { font-size: 1.35rem; margin: 44px 0 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { font-size: 0.98rem; }
.legal ul { margin: 14px 0 0 20px; }
.legal li { margin-bottom: 8px; }
.status-note {
  background: var(--grey-100); border-left: 3px solid var(--navy);
  padding: 20px 24px; margin-bottom: 40px; font-size: 0.94rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}


/* --- CTA band --------------------------------------------- */
.cta-band { background: var(--navy); padding: 80px 0; }
.cta-band h2 { color: var(--white); max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 58ch; margin-top: 20px; font-size: 1.02rem; }

/* --- Footer ----------------------------------------------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: 64px 0 32px; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 60px; }

.site-footer h2 {
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--logo-grey); font-weight: 700; margin-bottom: 18px;
}
.site-footer ul { list-style: none; display: grid; gap: 11px; }
.footer-nav ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 24px; }
.footer-nav a { white-space: nowrap; }
.site-footer .nowrap { white-space: nowrap; }
.site-footer a { color: var(--white); text-decoration: none; border-bottom: 1px solid transparent; }
.site-footer a:hover { border-bottom-color: var(--logo-grey); }
.footer-legal {
  margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--navy-line);
  font-size: 0.84rem; color: rgba(255,255,255,.6);
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px 32px; flex-wrap: wrap;
}

/* --- Breadcrumb ------------------------------------------- */
.breadcrumb {
  background: #232842;
  border-bottom: 1px solid var(--navy-line);
  font-size: 0.84rem;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; padding: 15px 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 9px; color: rgba(255,255,255,.4); }
.breadcrumb a { color: var(--logo-grey); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb [aria-current="page"] { color: var(--white); font-weight: 600; }

/* --- Responsive ------------------------------------------- */
@media (max-width: 1040px) {
  .credentials ul { grid-template-columns: repeat(2, 1fr); }
  .credentials li:nth-child(2) { border-right: 0; padding-right: 0; }
  .credentials li:nth-child(3), .credentials li:nth-child(4) { border-top: 1px solid var(--rule); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li:nth-child(odd) { padding-left: 0; }
  .steps li:nth-child(even) { padding-left: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 900px) {
  .media-panel { min-height: 0; }
  .media-panel-body { padding: 44px 34px; max-width: none; }
  .media-panel::after {
    background: linear-gradient(180deg,
      rgba(24, 29, 51, 0.9) 0%,
      rgba(24, 29, 51, 0.86) 60%,
      rgba(24, 29, 51, 0.78) 100%);
  }
  .primary-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 86vw);
    background: var(--navy); z-index: 120;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 4px; padding: 92px 26px 32px;
    transform: translateX(100%); transition: transform .28s ease;
    overflow-y: auto; border-left: 1px solid var(--navy-line);
  }
  body.nav-open .primary-nav { transform: translateX(0); }
  .primary-nav a:not(.btn) {
    padding: 15px 0; border-bottom: 1px solid var(--navy-line); font-size: 1.02rem;
  }
  .primary-nav a:not(.btn):hover { border-bottom-color: var(--logo-grey); }
  .primary-nav .btn { margin-top: 22px; width: 100%; }
  .nav-toggle { display: inline-flex; position: relative; z-index: 130; }
  .header-logo img { width: 178px; }

  .hero-split, .split, .split-wide, .split-media, .case-head, .service-grid { grid-template-columns: 1fr; gap: 36px; }
  .lifecycle { grid-template-columns: 1fr; }
  .lifecycle-stage { border-right: 0; border-bottom: 1px solid var(--rule); padding: 34px 0 38px; }
  .lifecycle-stage:last-child { border-bottom: 0; }
  .grid-3, .fee-grid, .case-body, .icon-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .field-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .band { padding: 62px 0; }
  .hero { padding: 58px 0 54px; }
  .page-hero { padding: 52px 0 48px; }
  .credentials ul { grid-template-columns: 1fr; }
  .credentials li { border-right: 0; padding: 16px 0; border-top: 1px solid var(--rule); }
  .credentials li:first-child { border-top: 0; }
  .credentials li + li { padding-left: 0; }
  .grid-2, .grid-4, .steps, .gallery { grid-template-columns: 1fr; }
  .steps li, .steps li:nth-child(even) { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav ul { grid-template-columns: 1fr; }
  .footer-nav a { white-space: normal; }
  .priority-plan .pp-row { grid-template-columns: 1fr; }
  .priority-plan .pp-tier { padding: 10px 16px; }
  .form-card { padding: 24px 18px; }
  .media-panel-body { padding: 36px 24px; }
  .pull-quote { padding-left: 20px; }
}

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

@media print {
  .site-header, .cta-band, .nav-scrim { display: none; }
}
