:root {
  --green: #168d3a;
  --green-deep: #0d5c29;
  --lime: #c9f254;
  --ink: #111512;
  --muted: #5e665f;
  --paper: #f4f6f1;
  --white: #ffffff;
  --line: #d7dcd5;
  --shell: min(1200px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Inter", Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.55; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 10px 14px; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 100; height: 86px; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(17,21,18,.12); backdrop-filter: blur(14px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: block; width: 190px; height: 76px; overflow: hidden; }
.logo-clip { position: relative; display: block; width: 190px; height: 76px; overflow: hidden; }
.logo-clip img { position: absolute; width: 250px; max-width: none; left: -32px; top: -89px; }
.site-nav { display: flex; align-items: center; gap: 32px; font-weight: 700; font-size: .88rem; }
.site-nav > a:not(.nav-cta) { position: relative; padding-block: 12px; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 5px; width: 100%; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav > a:not(.nav-cta):hover::after, .site-nav > a:not(.nav-cta):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; gap: 20px; align-items: center; padding: 14px 18px; background: var(--green); color: white; }
.nav-cta:hover { background: var(--green-deep); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s ease; }

.hero { min-height: calc(100vh - 86px); display: grid; grid-template-columns: minmax(0, 52%) minmax(0, 48%); background: var(--paper); }
.hero-copy { padding: clamp(60px, 8vw, 120px) max(32px, calc((100vw - 1200px)/2)) 48px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.hero-copy::before { content: ""; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: var(--line); }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 12px; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero h1 { margin: 28px 0 24px; max-width: 760px; font-size: clamp(3.1rem, 6.4vw, 7rem); line-height: .9; letter-spacing: -.065em; font-weight: 800; }
.hero h1 em, .section-heading h2 em { color: var(--green); font-style: normal; }
.hero-copy > p { max-width: 600px; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.2rem); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.button { display: inline-flex; justify-content: space-between; align-items: center; gap: 38px; padding: 17px 20px; font-weight: 800; }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: var(--green); }
.text-link { font-size: .9rem; font-weight: 800; border-bottom: 1px solid var(--ink); padding-block: 8px; }
.hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 590px; padding-top: 46px; margin-top: auto; }
.hero-meta div { border-top: 1px solid var(--line); padding-top: 14px; }
.hero-meta span { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.hero-meta strong { font-size: .95rem; }
.hero-media { position: relative; min-height: 620px; overflow: hidden; background: #0e1b1f; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,22,18,.15), transparent 40%), linear-gradient(0deg, rgba(8,14,12,.55), transparent 45%); }
.hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-stamp { position: absolute; z-index: 2; top: 42px; right: 36px; width: 145px; height: 145px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: white; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: rotate(8deg); text-transform: uppercase; line-height: 1.1; }
.hero-stamp span { display: block; width: 76%; font-size: .62rem; letter-spacing: .13em; line-height: 1.25; text-align: center; white-space: normal; }
.hero-stamp strong { font-size: 1.25rem; margin-block: 4px; white-space: nowrap; }
.image-caption { position: absolute; z-index: 2; bottom: 30px; left: 30px; right: 30px; display: flex; align-items: center; gap: 16px; color: white; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.image-caption span { color: var(--lime); }

.ticker { overflow: hidden; background: var(--green); color: white; border-block: 1px solid rgba(255,255,255,.2); }
.ticker-track { width: max-content; display: flex; padding: 16px 0; animation: ticker-slide 16s linear infinite; will-change: transform; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.ticker-group { flex: 0 0 auto; display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.ticker i { flex: 0 0 auto; width: 7px; height: 7px; background: var(--lime); transform: rotate(45deg); }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-slide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section { padding-block: clamp(84px, 11vw, 160px); }
.section-kicker { padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.section-kicker span { color: var(--green); }
.section-kicker.light { color: rgba(255,255,255,.72); border-color: rgba(255,255,255,.2); }
.section-kicker.light span { color: var(--lime); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 130px); margin-top: 58px; }
.about h2, .process-intro h2, .contact h2 { margin: 0; font-size: clamp(2.8rem, 5.2vw, 5.5rem); line-height: .96; letter-spacing: -.055em; }
.about-copy { padding-top: 8px; }
.about-copy p { color: var(--muted); font-size: 1.05rem; }
.about-copy .lead { color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.35; margin-top: 0; }
.arrow-link { display: inline-flex; gap: 36px; align-items: center; margin-top: 22px; padding-bottom: 6px; border-bottom: 2px solid var(--green); font-weight: 800; }
.principles { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 90px; border-top: 1px solid var(--line); }
.principle { position: relative; min-height: 270px; padding: 28px 34px 30px 0; border-right: 1px solid var(--line); }
.principle + .principle { padding-left: 34px; }
.principle:last-child { border-right: 0; }
.principle-number { color: var(--green); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.principle h3 { margin: 72px 0 12px; font-size: 1.35rem; }
.principle p { margin: 0; color: var(--muted); max-width: 290px; }
.problem { background: white; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 140px); }
.problem h2 { margin: 50px 0 0; max-width: 650px; font-size: clamp(2.8rem, 5.2vw, 5.6rem); line-height: .94; letter-spacing: -.055em; }
.problem-copy .lead { margin-top: 0; font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.35; color: var(--ink); }
.problem-copy > p:not(.lead) { color: var(--muted); }
.challenge-list { list-style: none; margin: 44px 0 0; padding: 0; border-top: 1px solid var(--ink); }
.challenge-list li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.challenge-list span { color: var(--green); font-size: .74rem; letter-spacing: .1em; }

.services { color: white; background: var(--ink); position: relative; overflow: hidden; }
.services::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 1px solid rgba(201,242,84,.15); right: -140px; top: -180px; box-shadow: 0 0 0 70px rgba(201,242,84,.035), 0 0 0 140px rgba(201,242,84,.025); }
.section-heading h2 { margin: 44px 0 0; font-size: clamp(3rem, 6vw, 6.6rem); line-height: .92; letter-spacing: -.06em; }
.section-heading h2 em { color: var(--lime); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 80px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.2); }
.service-card { min-height: 570px; padding: clamp(28px, 4vw, 52px); background: #181e1a; display: flex; flex-direction: column; }
.service-card-green { background: var(--green-deep); }
.service-card-wide { grid-column: 1 / -1; min-height: 500px; background: #101511; }
.service-card-wide h3 { max-width: 850px; }
.service-card-top { display: flex; align-items: center; justify-content: space-between; color: var(--lime); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.service-card-top b { padding: 7px 9px; border: 1px solid currentColor; font-weight: 700; }
.service-card h3 { margin: 86px 0 18px; max-width: 480px; font-size: clamp(2.2rem, 4vw, 4.3rem); line-height: .95; letter-spacing: -.05em; }
.service-card > p { color: #bdc5bf; max-width: 520px; }
.service-card ul { list-style: none; margin: auto 0 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.2); }
.service-card li { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .9rem; }
.one-partner { display: grid; grid-template-columns: .45fr 1fr .8fr; gap: clamp(28px, 5vw, 80px); align-items: start; padding: 42px 0 0; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.28); }
.one-partner span { color: var(--lime); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.one-partner strong { font-size: clamp(1.4rem, 2.4vw, 2.35rem); line-height: 1.08; }
.one-partner p { margin: 0; color: #bdc5bf; }

.sectors { background: var(--lime); }
.sectors-heading { display: grid; grid-template-columns: .58fr 1fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.sectors-heading h2 { margin: 0; font-size: clamp(2.8rem, 5.5vw, 5.8rem); line-height: .94; letter-spacing: -.055em; }
.sectors .section-kicker { border-color: rgba(17,21,18,.25); }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border-top: 1px solid rgba(17,21,18,.35); border-left: 1px solid rgba(17,21,18,.35); }
.sector { min-height: 180px; padding: 22px; border-right: 1px solid rgba(17,21,18,.35); border-bottom: 1px solid rgba(17,21,18,.35); display: flex; flex-direction: column; justify-content: space-between; }
.sector span { color: var(--green-deep); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.sector strong { max-width: 220px; font-size: 1.08rem; line-height: 1.25; }

.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 130px); }
.process-intro > p { max-width: 470px; color: var(--muted); font-size: 1.06rem; }
.process-intro h2 { margin-top: 44px; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.steps li { display: grid; grid-template-columns: 68px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--green); font-weight: 800; font-size: .76rem; letter-spacing: .1em; }
.steps h3 { margin: 0 0 8px; font-size: 1.45rem; }
.steps p { margin: 0; color: var(--muted); }

.assurance { background: white; }
.assurance-heading { display: grid; grid-template-columns: .7fr 1.2fr .8fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.assurance-heading h2 { margin: 0; font-size: clamp(2.8rem, 5.2vw, 5.4rem); line-height: .94; letter-spacing: -.055em; }
.assurance-heading > p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.assurance-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.assurance-card { min-height: 330px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.assurance-card > span { color: var(--green); font-size: .74rem; font-weight: 800; letter-spacing: .12em; }
.assurance-card h3 { margin: auto 0 14px; font-size: 1.45rem; line-height: 1.08; }
.assurance-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.insights-preview { background: #e8ece5; }
.insights-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px, 9vw, 140px); align-items: end; }
.insights-heading h2 { max-width: 820px; margin: 44px 0 0; font-size: clamp(2.8rem, 5.4vw, 5.8rem); line-height: .94; letter-spacing: -.055em; }
.insights-intro p { margin-top: 0; color: var(--muted); font-size: 1.05rem; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 76px; background: #bcc4bc; border: 1px solid #bcc4bc; }
.insight-card { min-height: 430px; padding: clamp(24px, 3vw, 36px); background: var(--paper); display: flex; flex-direction: column; }
.insight-card-featured { background: var(--green); color: white; }
.insight-meta { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid currentColor; color: var(--green); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.insight-card-featured .insight-meta { color: var(--lime); }
.insight-card h3 { margin: 60px 0 16px; font-size: clamp(1.65rem, 2.5vw, 2.45rem); line-height: 1.04; letter-spacing: -.035em; }
.insight-card p { margin: 0; color: var(--muted); }
.insight-card-featured p { color: rgba(255,255,255,.82); }
.insight-card > a { width: fit-content; margin-top: auto; padding-top: 34px; border-bottom: 1px solid currentColor; font-weight: 800; }
.insights-analysis-link { display: grid; grid-template-columns: .4fr 1fr auto; gap: clamp(22px, 5vw, 70px); align-items: center; padding: 30px 0; border-bottom: 1px solid #bcc4bc; }
.insights-analysis-link > span { color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.insights-analysis-link p { margin: 0; color: var(--muted); }

.insights-page { background: var(--paper); }
.insights-page .site-header { position: sticky; }
.insights-hero { padding-block: clamp(90px, 12vw, 170px); color: white; background: var(--ink); }
.insights-hero h1 { max-width: 950px; margin: 38px 0 24px; font-size: clamp(3.5rem, 7vw, 7.6rem); line-height: .9; letter-spacing: -.065em; }
.insights-hero > .shell > p { max-width: 680px; color: #bdc5bf; font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.news-desk { background: #e8ece5; }
.news-desk .insights-heading h2 { margin-top: 44px; }
.news-controls { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 54px; }
.news-filter, .load-more-news { border: 1px solid var(--ink); padding: 11px 17px; color: var(--ink); background: transparent; font-weight: 800; cursor: pointer; }
.news-filter:hover, .news-filter.is-active, .load-more-news:hover { color: white; background: var(--ink); }
.news-feed-grid { margin-top: 24px; }
.load-more-news { display: block; margin: 34px auto 0; }
.load-more-news[hidden] { display: none; }
.feed-note { color: var(--muted); text-align: center; }

.blog-history { background: var(--paper); }
.history-heading { display: grid; grid-template-columns: .6fr 1fr .7fr; gap: clamp(34px, 6vw, 90px); align-items: start; }
.history-heading h2 { margin: 0; font-size: clamp(2.8rem, 5.2vw, 5.4rem); line-height: .94; letter-spacing: -.055em; }
.history-heading > p { margin: 0; color: var(--muted); }
.history-list { margin-top: 72px; border-top: 1px solid var(--ink); }
.history-list a { display: grid; grid-template-columns: 150px 1fr 190px; gap: 30px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); }
.history-list a:hover strong { color: var(--green); }
.history-list time, .history-list span { color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.history-list strong { font-size: clamp(1.15rem, 2vw, 1.65rem); line-height: 1.16; transition: color .2s ease; }
.history-list span { justify-self: end; color: var(--green); }
.insights-layout { display: grid; grid-template-columns: 280px 1fr; gap: clamp(50px, 9vw, 140px); }
.article-index { position: sticky; top: 120px; align-self: start; border-top: 1px solid var(--ink); }
.article-index p { margin: 18px 0 10px; color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-index a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.article-index a:hover { color: var(--green); }
.longform { scroll-margin-top: 110px; padding-bottom: 88px; margin-bottom: 88px; border-bottom: 1px solid var(--line); }
.longform:last-child { margin-bottom: 0; }
.article-meta { display: flex; gap: 20px; color: var(--green); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.longform h2 { max-width: 860px; margin: 30px 0; font-size: clamp(2.5rem, 5vw, 5.1rem); line-height: .94; letter-spacing: -.055em; }
.longform .article-lead { color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.4; }
.longform p, .longform ul { max-width: 760px; color: var(--muted); font-size: 1.04rem; }
.longform h3 { margin: 38px 0 10px; font-size: 1.55rem; }
.longform ul { padding-left: 22px; }
.longform li { margin-bottom: 10px; }
.article-cta { margin-top: 55px; padding: 30px; color: white; background: var(--green); }
.article-cta p { margin: 0 0 16px; color: rgba(255,255,255,.84); }
.article-cta a { display: inline-flex; padding-bottom: 4px; border-bottom: 1px solid white; font-weight: 800; }

.contact { padding-block: clamp(90px, 11vw, 150px); color: white; background: var(--green); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.contact h2 { max-width: 800px; margin-top: 44px; }
.contact-copy > p { max-width: 620px; color: rgba(255,255,255,.8); font-size: 1.08rem; }
.direct-contact { display: grid; gap: 8px; margin-top: 38px; }
.direct-contact a { width: fit-content; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.6); font-weight: 800; }
.direct-contact span { max-width: 420px; margin-top: 8px; color: rgba(255,255,255,.72); }
.supply-form { padding: clamp(24px, 4vw, 44px); background: white; color: var(--ink); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.supply-form label { display: block; margin-bottom: 20px; }
.supply-form label > span { display: block; margin-bottom: 7px; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.supply-form input, .supply-form select, .supply-form textarea { width: 100%; min-height: 48px; border: 0; border-bottom: 1px solid #aab1ab; border-radius: 0; padding: 10px 2px; background: transparent; color: var(--ink); font: inherit; }
.supply-form textarea { resize: vertical; }
.supply-form input:focus, .supply-form select:focus, .supply-form textarea:focus { outline: 0; border-color: var(--green); box-shadow: 0 2px 0 var(--green); }
.form-submit { width: 100%; border: 0; padding: 18px 20px; margin-top: 8px; background: var(--ink); color: white; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 800; cursor: pointer; }
.form-submit:hover { background: var(--green-deep); }
.form-submit b { font-size: 1.3rem; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .78rem; }

.site-footer { background: #0b0e0c; color: white; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 50px; align-items: start; padding-block: 64px; }
.footer-brand { background: transparent; }
.footer-main > p { margin: 0; color: #aeb5b0; max-width: 300px; }
.footer-links { display: grid; gap: 12px; justify-self: end; min-width: 180px; }
.footer-links a { color: #c7cdc8; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.15); color: #89918b; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

@media (max-width: 960px) {
  :root { --shell: min(100% - 36px, 760px); }
  .site-header { height: 76px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { display: none; position: absolute; inset: 76px 0 auto; padding: 28px 18px 34px; background: white; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 4px; }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 10px; }
  .nav-cta { margin-top: 10px; justify-content: space-between; }
  .brand, .logo-clip { width: 176px; height: 70px; }
  .logo-clip img { width: 235px; left: -30px; top: -84px; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; padding: 72px 24px 40px; }
  .hero-copy::before { display: none; }
  .hero-media { min-height: 560px; }
  .about-grid, .problem-grid, .sectors-heading, .process, .assurance-heading, .insights-heading, .history-heading, .contact-grid, .insights-layout { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .principle, .principle + .principle { min-height: auto; padding: 28px 0 38px; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle h3 { margin-top: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .one-partner { grid-template-columns: 1fr; }
  .service-card { min-height: 560px; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .assurance-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .insights-analysis-link { grid-template-columns: 1fr; }
  .article-index { position: static; }
  .history-list a { grid-template-columns: 120px 1fr; }
  .history-list span { grid-column: 2; justify-self: start; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
  .hero-copy { min-height: 650px; padding-inline: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; justify-content: center; }
  .hero-meta { grid-template-columns: 1fr; width: 100%; }
  .hero-media { min-height: 480px; }
  .hero-stamp { width: 112px; height: 112px; right: 18px; top: 22px; }
  .hero-stamp span { width: 72%; font-size: .56rem; letter-spacing: .1em; }
  .hero-stamp strong { font-size: 1.12rem; }
  .image-caption { left: 18px; bottom: 20px; }
  .about-grid { margin-top: 38px; }
  .principles { margin-top: 56px; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 58px; }
  .service-card ul { margin-top: 54px; }
  .sector-grid { grid-template-columns: 1fr 1fr; margin-top: 54px; }
  .sector { min-height: 150px; padding: 18px; }
  .assurance-grid { grid-template-columns: 1fr; margin-top: 54px; }
  .assurance-card { min-height: 260px; }
  .insight-card { min-height: 360px; }
  .news-controls { margin-top: 36px; }
  .news-filter { flex: 1 1 calc(50% - 10px); }
  .history-list a { grid-template-columns: 1fr; gap: 10px; }
  .history-list span { grid-column: auto; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .steps li { grid-template-columns: 46px 1fr; gap: 12px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ticker-track { animation: ticker-slide 28s linear infinite !important; }
  .reveal { opacity: 1; transform: none; }
}
