:root {
  --ink: #061109;
  --ink-soft: #0a1d11;
  --chalk: #f0f5e9;
  --paper: #dde9d8;
  --muted: #829285;
  --line: rgba(6, 17, 9, .18);
  --line-light: rgba(255, 255, 255, .18);
  --lime: #aef04b;
  --lime-dark: #5ca92e;
  --forest: #0d6032;
  --shell: min(1320px, calc(100% - 80px));
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 2px;
  background: transparent;
}
.page-progress span { display: block; width: 0; height: 100%; background: var(--lime); }

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,204,100,.12), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}
body:hover .cursor-glow { opacity: 1; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  transition: background .3s, transform .3s;
}
.site-header.is-sticky {
  position: fixed;
  background: rgba(4,19,9,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.site-header.is-sticky .signal-bar { display: none; }
.signal-bar { border-bottom: 1px solid var(--line-light); }
.signal-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.signal-inner span:first-child { display: flex; align-items: center; gap: 8px; }
.signal-inner i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(174,240,75,.1); }
.signal-inner a:hover { color: var(--lime); }

.nav { min-height: 94px; display: flex; align-items: center; gap: 48px; }
.brand { width: 252px; margin-right: auto; }
.brand img { width: 100%; }
.nav-links { display: flex; align-items: center; gap: 35px; }
.nav-links a {
  position: relative;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.nav-links a::after { content: ""; position: absolute; inset: auto 0 -8px; height: 1px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; align-items: center; gap: 24px; padding: 13px 18px; border: 1px solid rgba(255,255,255,.36); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; transition: .25s; }
.nav-cta:hover { color: var(--ink); border-color: var(--lime); background: var(--lime); }
.nav-cta span { font-size: 17px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  z-index: 1;
  min-height: 880px;
  height: 100svh;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,17,7,.97) 0%, rgba(3,20,9,.81) 36%, rgba(2,18,8,.25) 67%, rgba(2,16,7,.4) 100%), linear-gradient(180deg, rgba(1,13,5,.42), transparent 40%, rgba(1,14,6,.66));
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 52%;
  width: 1px;
  background: linear-gradient(transparent, rgba(174,240,75,.68) 30%, rgba(174,240,75,.1) 75%, transparent);
  transform: skewX(-10deg);
  transform-origin: top;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/limelight-hero.png") center center / cover no-repeat;
  transform: scale(1.02);
  animation: heroIn 1.5s cubic-bezier(.2,.8,.2,1) both;
}
.hero-grid {
  position: absolute;
  z-index: 3;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, #000, transparent 55%);
}
.hero-inner { position: relative; z-index: 5; height: 100%; display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: center; gap: 80px; padding-top: 112px; }
.hero-copy { max-width: 850px; }
.eyebrow { display: flex; align-items: center; gap: 16px; margin: 0 0 28px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span:first-child { color: var(--lime); }
.eyebrow span:first-child::after { content: ""; display: inline-block; width: 44px; height: 1px; margin-left: 16px; vertical-align: middle; background: rgba(255,255,255,.35); }
.hero h1, .section-head h2, .intro-statement h2, .standard h2, .about h2, .contact h2 {
  margin: 0;
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .84;
  text-transform: uppercase;
}
.hero h1 { max-width: 820px; font-size: clamp(80px, 10.2vw, 166px); }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-lede { max-width: 560px; margin: 32px 0 0; padding-left: 20px; border-left: 2px solid var(--lime); color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 36px; margin-top: 38px; }

.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 38px; min-height: 56px; padding: 0 22px; border: 0; cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: .25s; }
.button span { font-size: 18px; transition: transform .25s; }
.button:hover span { transform: translate(3px,-3px); }
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary:hover { background: #fff; }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--lime); }
.button-outline { color: var(--ink); border: 1px solid var(--ink); background: transparent; }
.button-outline:hover { color: #fff; background: var(--ink); }
.text-link { display: flex; align-items: center; gap: 20px; color: rgba(255,255,255,.8); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.text-link span { color: var(--lime); font-size: 18px; }

.hero-proof { align-self: end; margin-bottom: 108px; border: 1px solid rgba(255,255,255,.2); background: rgba(6,8,7,.64); backdrop-filter: blur(16px); }
.proof-top { display: flex; align-items: center; gap: 8px; padding: 12px 15px; border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.58); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.proof-top b { margin-left: auto; color: #fff; }
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(174,240,75,.5); animation: pulse 2s infinite; }
.proof-main { padding: 26px 22px 22px; }
.proof-kicker { display: block; color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.proof-main strong { display: block; margin: 8px 0 4px; font-family: var(--display); font-size: 80px; line-height: 1; letter-spacing: -.07em; }
.proof-main p { margin: 0; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.7; text-transform: uppercase; letter-spacing: .05em; }
.proof-foot { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.13); }
.proof-foot div { padding: 13px 16px; }
.proof-foot div + div { border-left: 1px solid rgba(255,255,255,.13); }
.proof-foot small { display: block; color: rgba(255,255,255,.4); font-size: 8px; text-transform: uppercase; letter-spacing: .15em; }
.proof-foot b { font-family: var(--display); font-size: 18px; letter-spacing: -.02em; }

.hero-rail { position: absolute; z-index: 5; inset: auto 0 0; min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 28px; padding: 10px 180px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.44); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; }
.hero-rail i { width: 3px; height: 3px; border-radius: 50%; background: var(--lime); }
.scroll-cue { position: absolute; z-index: 6; left: 24px; bottom: 82px; display: flex; flex-direction: column; align-items: center; gap: 12px; color: rgba(255,255,255,.46); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue span { width: 1px; height: 55px; background: linear-gradient(var(--lime), transparent); }

.section { position: relative; z-index: 2; }
.intro { padding: 160px 0 150px; background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 210px minmax(0, 1.7fr) minmax(250px, .7fr); gap: 70px; align-items: start; }
.section-marker { display: flex; align-items: flex-start; gap: 18px; }
.section-marker span { display: grid; place-items: center; width: 32px; height: 32px; flex: none; border: 1px solid var(--ink); border-radius: 50%; font-size: 9px; font-weight: 800; }
.section-marker p { margin: 8px 0 0; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.section-marker.light { color: #fff; }
.section-marker.light span { color: var(--lime); border-color: rgba(255,255,255,.5); }
.intro-statement h2 { max-width: 760px; font-size: clamp(52px, 6.4vw, 96px); line-height: .94; }
.intro-statement em { color: transparent; font-style: normal; -webkit-text-stroke: 1px var(--ink); }
.intro-note { padding-top: 100px; }
.intro-note p { margin: 0 0 32px; color: #535750; font-size: 15px; line-height: 1.75; }
.arrow-link { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.arrow-link span { font-size: 18px; }

.services { padding: 135px 0 120px; color: #fff; background: var(--ink); }
.services::before { content: "LIMELIGHT"; position: absolute; top: 30px; right: -25px; color: rgba(255,255,255,.025); font-family: var(--display); font-size: 18vw; font-weight: 900; letter-spacing: -.08em; line-height: 1; pointer-events: none; }
.section-head { position: relative; display: grid; grid-template-columns: 220px 1fr auto; gap: 60px; align-items: end; margin-bottom: 75px; }
.section-head h2 { font-size: clamp(58px, 7vw, 106px); line-height: .91; }
.section-head h2 em { color: var(--lime); font-style: normal; }
.section-head > p { width: 170px; margin: 0 0 8px; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.6; text-transform: uppercase; letter-spacing: .08em; }
.service-console { position: relative; display: grid; grid-template-columns: 1fr .9fr; min-height: 600px; border: 1px solid rgba(255,255,255,.16); }
.service-list { display: flex; flex-direction: column; }
.service-tab { flex: 1; display: grid; grid-template-columns: 50px 1fr 30px; align-items: center; min-height: 88px; padding: 0 30px; border: 0; border-bottom: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.6); background: transparent; cursor: pointer; text-align: left; transition: .3s; }
.service-tab:last-child { border-bottom: 0; }
.service-tab span { font-family: var(--display); font-size: 11px; }
.service-tab b { font-family: var(--display); font-size: clamp(19px, 2.1vw, 30px); font-weight: 700; letter-spacing: -.035em; text-transform: uppercase; }
.service-tab i { font-size: 20px; font-style: normal; opacity: 0; transform: translate(-8px,8px); transition: .25s; }
.service-tab:hover, .service-tab.active { color: var(--ink); background: var(--lime); }
.service-tab:hover i, .service-tab.active i { opacity: 1; transform: none; }
.service-panel { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 44px; color: var(--ink); background: var(--chalk); overflow: hidden; }
.panel-grid { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(8,10,9,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(8,10,9,.12) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to bottom, #000, transparent 72%); }
.service-panel::after { content: ""; position: absolute; top: 70px; right: 54px; width: 120px; height: 120px; border: 1px solid rgba(8,10,9,.18); border-radius: 50%; box-shadow: inset 0 0 0 24px var(--chalk), inset 0 0 0 25px rgba(8,10,9,.12); }
.panel-status { position: absolute; z-index: 1; top: 25px; left: 26px; display: flex; align-items: center; gap: 8px; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.panel-status span { width: 6px; height: 6px; border-radius: 50%; background: var(--lime-dark); }
.panel-copy, .panel-features, .service-panel .button { position: relative; z-index: 1; }
.panel-copy > p:first-child { margin: 0 0 15px; color: #62665f; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.panel-copy h3 { max-width: 560px; margin: 0; font-family: var(--display); font-size: clamp(39px, 4vw, 62px); line-height: .94; letter-spacing: -.055em; text-transform: uppercase; }
.panel-copy > p:last-child { max-width: 500px; margin: 22px 0 0; color: #565a54; font-size: 14px; line-height: 1.65; }
.panel-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0; padding: 0; list-style: none; }
.panel-features li { padding-top: 10px; border-top: 1px solid rgba(8,10,9,.25); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.service-panel .button { align-self: flex-start; }
.service-panel.is-changing .panel-copy, .service-panel.is-changing .panel-features { animation: panelChange .38s both; }
.specialist-line { display: flex; align-items: center; gap: 25px; padding: 22px 0 0; color: rgba(255,255,255,.53); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.specialist-line span { color: var(--lime); font-weight: 800; }
.specialist-line p { margin: 0; }
.specialist-line i { font-style: normal; color: var(--lime); }

.standard { min-height: 820px; padding: 140px 0; color: #fff; background: #0a2817; overflow: hidden; }
.standard-bg { position: absolute; inset: 0; opacity: .18; background: linear-gradient(120deg, transparent 45%, rgba(174,240,75,.34) 45.1%, transparent 45.3%), repeating-linear-gradient(90deg, transparent 0 119px, rgba(196,255,208,.15) 120px); }
.standard-grid { position: relative; display: grid; grid-template-columns: 210px 1fr 1.05fr; gap: 70px; }
.standard-copy { padding-top: 110px; }
.standard-copy h2 { margin-bottom: 34px; font-size: clamp(58px, 6.5vw, 102px); }
.standard-copy > p:last-child { max-width: 530px; color: rgba(255,255,255,.58); font-size: 16px; line-height: 1.7; }
.process { border-top: 1px solid var(--line-light); }
.process-item { min-height: 215px; padding: 32px 25px 28px; border-bottom: 1px solid var(--line-light); transition: .3s; }
.process-item:hover { padding-left: 38px; background: rgba(174,240,75,.07); }
.process-item span { color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.process-item h3 { margin: 17px 0 10px; font-family: var(--display); font-size: 28px; line-height: 1; letter-spacing: -.035em; text-transform: uppercase; }
.process-item p { max-width: 430px; margin: 0; color: rgba(255,255,255,.46); font-size: 13px; line-height: 1.6; }

.standards-band { padding: 82px 0; color: #fff; background: var(--ink); border-top: 1px solid var(--line-light); }
.standards-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 85px; align-items: end; }
.standards-intro h2 { margin: 0 0 22px; font-family: var(--display); font-size: clamp(46px, 4.7vw, 72px); line-height: .95; letter-spacing: -.045em; text-transform: uppercase; }
.standards-intro h2 em { color: var(--lime); font-style: normal; }
.standards-intro > p:last-child { max-width: 510px; margin: 0; color: rgba(255,255,255,.54); font-size: 14px; line-height: 1.7; }
.standards-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.standards-grid > div { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px 16px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.standards-grid strong { color: var(--lime); font-family: var(--display); font-size: 21px; line-height: 1; text-transform: uppercase; }
.standards-grid span { color: rgba(255,255,255,.46); font-size: 8px; line-height: 1.5; letter-spacing: .08em; text-transform: uppercase; }

.about { padding: 150px 0; background: var(--chalk); }
.about-grid { display: grid; grid-template-columns: 210px 1.1fr .65fr; gap: 70px; }
.about-copy h2 { font-size: clamp(62px, 7.2vw, 112px); }
.about-copy h2 span { color: transparent; -webkit-text-stroke: 1px var(--ink); }
.about-copy > p { max-width: 650px; margin: 38px 0 35px; color: #565a53; font-size: 17px; line-height: 1.75; }
.about-stats { border-top: 1px solid var(--ink); }
.about-stats > div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; align-items: end; padding: 25px 0; border-bottom: 1px solid var(--line); }
.about-stats strong { font-family: var(--display); font-size: 70px; line-height: .8; letter-spacing: -.07em; }
.about-stats strong span { color: var(--lime-dark); font-size: .45em; }
.about-stats p { margin: 0; color: #5f635d; font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .06em; }

.testimonials { padding: 120px 0 140px; color: #fff; background: var(--ink); overflow: hidden; }
.testimonial-shell { position: relative; }
.testimonial-top { display: flex; justify-content: space-between; align-items: center; }
.testimonial-controls { display: flex; align-items: center; gap: 20px; }
.testimonial-controls button { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); color: #fff; background: transparent; cursor: pointer; transition: .25s; }
.testimonial-controls button:hover { color: var(--ink); border-color: var(--lime); background: var(--lime); }
.testimonial-controls span { color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .14em; }
.testimonial-controls b { color: var(--lime); }
.quote-mark { position: absolute; top: 20px; right: 140px; color: rgba(174,240,75,.13); font-family: Georgia, serif; font-size: 370px; line-height: 1; }
.testimonial { position: relative; max-width: 1050px; min-height: 380px; margin: 105px 0 0 12%; transition: opacity .2s, transform .2s; }
.testimonial.is-changing { opacity: 0; transform: translateY(12px); }
.testimonial > p { margin: 0; font-family: var(--display); font-size: clamp(43px, 5.7vw, 82px); font-weight: 700; line-height: 1.03; letter-spacing: -.05em; text-transform: uppercase; }
.testimonial footer { display: flex; flex-direction: column; gap: 4px; margin-top: 45px; padding-left: 17px; border-left: 2px solid var(--lime); }
.testimonial footer span { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.testimonial footer small { color: rgba(255,255,255,.47); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }

.contact { padding: 145px 0 130px; color: #fff; background: #0b2a18; overflow: hidden; }
.contact::before { content: "SECURE"; position: absolute; right: -60px; bottom: -70px; color: rgba(255,255,255,.022); font-family: var(--display); font-size: 20vw; font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.contact-slash { position: absolute; top: -200px; left: 48%; width: 220px; height: 1400px; background: var(--lime); transform: rotate(14deg); opacity: .035; }
.contact-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 130px; }
.contact-copy h2 { margin-top: 100px; font-size: clamp(68px, 7.3vw, 115px); }
.contact-copy h2 em { color: var(--lime); font-style: normal; }
.contact-copy > p { max-width: 470px; margin: 35px 0; color: rgba(255,255,255,.56); font-size: 16px; line-height: 1.65; }
.contact-direct { display: flex; flex-direction: column; border-top: 1px solid var(--line-light); }
.contact-direct a { display: grid; grid-template-columns: 95px 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line-light); }
.contact-direct small { color: var(--lime); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.contact-direct span { font-size: 13px; }
.quote-form { padding: 48px; color: var(--ink); background: var(--chalk); box-shadow: 24px 24px 0 rgba(174,240,75,.13); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.quote-form label { display: flex; flex-direction: column; gap: 9px; margin-bottom: 25px; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(8,10,9,.28); border-radius: 0; outline: none; color: var(--ink); background: transparent; font-size: 14px; font-weight: 400; text-transform: none; transition: border .2s; }
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--lime-dark); }
.quote-form input::placeholder, .quote-form textarea::placeholder { color: #989c95; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 35px; }
.form-submit p { max-width: 220px; margin: 0; color: #797d76; font-size: 9px; line-height: 1.55; }
.form-status { min-height: 18px; margin: 16px 0 0; color: #447000; font-size: 11px; font-weight: 700; }

.footer { position: relative; z-index: 2; padding: 70px 0 22px; color: #fff; background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 260px 1fr auto; gap: 80px; align-items: center; padding-bottom: 70px; }
.footer-top img { width: 260px; }
.footer-top p { margin: 0; font-family: var(--display); font-size: 30px; font-weight: 700; line-height: 1.05; letter-spacing: -.03em; text-transform: uppercase; }
.footer-top > a { display: flex; align-items: center; gap: 18px; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-top > a span { display: grid; place-items: center; width: 42px; height: 42px; color: var(--ink); border-radius: 50%; background: var(--lime); font-size: 16px; }
.footer-bottom { display: grid; grid-template-columns: 1.1fr 1.5fr auto; gap: 34px; align-items: start; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: 9px; line-height: 1.7; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.72); }
.footer-bottom a:hover { color: var(--lime); }
.footer-company { display: grid; gap: 3px; }
.footer-company a { text-decoration: underline; text-decoration-color: rgba(255,255,255,.22); text-underline-offset: 3px; }
.footer-address { font-style: normal; }
.footer-contact { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px 22px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }

@keyframes heroIn { from { opacity: 0; transform: scale(1.12); } to { opacity: 1; transform: scale(1.02); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(174,240,75,.45); } 50% { box-shadow: 0 0 0 8px rgba(174,240,75,0); } }
@keyframes panelChange { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Inner pages */
.inner-page { background: var(--chalk); }
.inner-page .site-header { position: absolute; }
.inner-page .site-header.is-sticky { position: fixed; }
.nav-links a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.inner-hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: flex-end;
  padding: 200px 0 105px;
  color: #fff;
  background: linear-gradient(128deg, #061109 0%, #0a2716 60%, #104827 100%);
  overflow: hidden;
}
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.inner-hero::after {
  content: "";
  position: absolute;
  top: -25%;
  right: 7%;
  width: 180px;
  height: 150%;
  border-left: 1px solid rgba(174,240,75,.48);
  border-right: 1px solid rgba(174,240,75,.1);
  background: linear-gradient(90deg, transparent, rgba(174,240,75,.035));
  transform: rotate(14deg);
}
.inner-hero .shell { position: relative; z-index: 2; }
.breadcrumbs { display: flex; align-items: center; gap: 11px; margin: 0 0 48px; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.breadcrumbs a:hover { color: var(--lime); }
.breadcrumbs i { color: var(--lime); font-style: normal; }
.inner-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 90px; align-items: end; }
.inner-hero h1 { max-width: 980px; margin: 0; font-family: var(--display); font-size: clamp(76px, 9.2vw, 144px); font-weight: 800; line-height: .84; letter-spacing: -.068em; text-transform: uppercase; }
.inner-hero h1 em { color: var(--lime); font-style: normal; }
.inner-hero-copy { padding: 22px 0 3px 22px; border-left: 2px solid var(--lime); }
.inner-hero-copy p { margin: 0 0 24px; color: rgba(255,255,255,.68); font-size: 16px; line-height: 1.7; }
.page-code { display: flex; align-items: center; justify-content: space-between; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.42); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.page-code b { color: var(--lime); }

.page-section { position: relative; padding: 130px 0; }
.page-section.paper { background: var(--paper); }
.page-section.dark { color: #fff; background: var(--ink); }
.page-section.forest { color: #fff; background: #0a2817; }
.page-heading { margin: 0; font-family: var(--display); font-size: clamp(52px, 6vw, 92px); font-weight: 800; line-height: .92; letter-spacing: -.055em; text-transform: uppercase; }
.page-heading em { color: var(--lime-dark); font-style: normal; }
.dark .page-heading em, .forest .page-heading em { color: var(--lime); }
.page-kicker { display: flex; align-items: center; gap: 14px; margin: 0 0 25px; color: var(--forest); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.page-kicker::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.dark .page-kicker, .forest .page-kicker { color: var(--lime); }
.lead { max-width: 720px; color: #4c5a4f; font-size: 18px; line-height: 1.75; }
.dark .lead, .forest .lead { color: rgba(255,255,255,.6); }

.story-grid { display: grid; grid-template-columns: 210px minmax(0, 1.15fr) minmax(280px, .62fr); gap: 70px; align-items: start; }
.story-copy p { max-width: 680px; margin: 28px 0 0; color: #4d5a50; font-size: 16px; line-height: 1.8; }
.story-aside { margin-top: 84px; padding: 25px; border: 1px solid rgba(6,17,9,.18); background: rgba(255,255,255,.32); }
.story-aside strong { display: block; margin-bottom: 12px; font-family: var(--display); font-size: 76px; line-height: .8; letter-spacing: -.07em; }
.story-aside strong span { color: var(--lime-dark); font-size: .42em; }
.story-aside p { margin: 0; color: #637064; font-size: 10px; line-height: 1.5; letter-spacing: .08em; text-transform: uppercase; }

.people-feature { padding: 0 0 120px; background: var(--paper); }
.people-feature-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 85px; align-items: center; }
.people-feature-image { position: relative; min-height: 540px; margin: 0; overflow: hidden; background: var(--ink); }
.people-feature-image::after { content: "LIMELIGHT / PEOPLE"; position: absolute; left: 20px; bottom: 18px; padding: 8px 10px; color: var(--ink); background: var(--lime); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.people-feature-image img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; object-position: center; }
.people-feature-copy > p:last-child { max-width: 510px; margin: 30px 0 0; color: #4d5a50; font-size: 16px; line-height: 1.8; }

.values-head { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: end; margin-bottom: 65px; }
.values-head > p { margin: 0; color: rgba(255,255,255,.56); line-height: 1.7; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-light); }
.value-card { min-height: 310px; padding: 28px; border-right: 1px solid var(--line-light); transition: .3s; }
.value-card:last-child { border-right: 0; }
.value-card:hover { color: var(--ink); background: var(--lime); }
.value-card > span { display: block; color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.value-card:hover > span, .value-card:hover p { color: rgba(6,17,9,.64); }
.value-card h3 { margin: 115px 0 16px; font-family: var(--display); font-size: 30px; line-height: 1; text-transform: uppercase; }
.value-card p { margin: 0; color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.65; }

.timeline { display: grid; grid-template-columns: 260px 1fr; gap: 95px; }
.timeline-list { border-top: 1px solid var(--line); }
.timeline-row { display: grid; grid-template-columns: 130px 1fr; gap: 35px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.timeline-row time { color: var(--forest); font-family: var(--display); font-size: 27px; font-weight: 800; }
.timeline-row h3 { margin: 0 0 8px; font-family: var(--display); font-size: 26px; text-transform: uppercase; }
.timeline-row p { margin: 0; color: #5a675c; font-size: 14px; line-height: 1.65; }

.credential-band { padding: 38px 0; color: var(--ink); background: var(--lime); }
.credential-inner { display: grid; grid-template-columns: 250px 1fr auto; gap: 55px; align-items: center; }
.credential-inner strong { font-family: var(--display); font-size: 76px; line-height: .8; letter-spacing: -.07em; }
.credential-inner h2 { margin: 0 0 7px; font-family: var(--display); font-size: 28px; text-transform: uppercase; }
.credential-inner p { margin: 0; font-size: 12px; }
.credential-inner small { max-width: 250px; font-size: 9px; line-height: 1.6; text-transform: uppercase; letter-spacing: .08em; }

.accreditations-section { padding: 120px 0; background: var(--paper); }
.accreditations-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.accreditations-layout .lead { margin-top: 30px; }
.accreditation-list { border-top: 1px solid var(--line); }
.accreditation-list article { display: grid; grid-template-columns: 220px 1fr; gap: 35px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.accreditation-list strong { font-family: var(--display); font-size: 28px; line-height: 1; text-transform: uppercase; }
.accreditation-list p { margin: 0; color: #5a675c; font-size: 13px; line-height: 1.6; }

.services-intro { display: grid; grid-template-columns: 210px 1fr; gap: 70px; margin-bottom: 70px; }
.services-intro .lead { margin: 32px 0 0; }
.service-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.service-card { position: relative; min-height: 380px; display: flex; flex-direction: column; padding: 34px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); overflow: hidden; transition: .35s; }
.service-card::before { content: ""; position: absolute; inset: auto -20% -65% 35%; aspect-ratio: 1; border: 1px solid rgba(174,240,75,.16); border-radius: 50%; transition: .35s; }
.service-card:hover { color: var(--ink); background: var(--lime); }
.service-card:hover::before { border-color: rgba(6,17,9,.16); transform: scale(.82); }
.service-card-num { display: flex; align-items: center; justify-content: space-between; color: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.service-card:hover .service-card-num { color: var(--forest); }
.service-card-num i { font-size: 21px; font-style: normal; }
.service-card h2 { max-width: 550px; margin: auto 0 18px; font-family: var(--display); font-size: clamp(38px, 4vw, 58px); line-height: .91; letter-spacing: -.05em; text-transform: uppercase; }
.service-card p { max-width: 500px; margin: 0; color: rgba(255,255,255,.48); font-size: 14px; line-height: 1.65; }
.service-card:hover p { color: rgba(6,17,9,.66); }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.service-tags span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.18); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.service-card:hover .service-tags span { border-color: rgba(6,17,9,.2); }

.specialist-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 60px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.specialist-card { min-height: 210px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.specialist-card span { color: var(--lime-dark); font-size: 9px; font-weight: 800; }
.specialist-card h3 { margin: 75px 0 0; font-family: var(--display); font-size: 25px; line-height: 1; text-transform: uppercase; }

.detail-hero { min-height: 760px; }
.detail-hero h1 { font-size: clamp(70px, 8.6vw, 132px); }
.detail-hero .service-id { display: inline-grid; place-items: center; width: 50px; height: 50px; margin-bottom: 24px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: var(--lime); font-size: 10px; font-weight: 800; }
.detail-hero .button { margin-top: 30px; }

.detail-overview { display: grid; grid-template-columns: 210px 1.1fr .65fr; gap: 70px; align-items: start; }
.detail-overview-copy p { max-width: 700px; margin: 28px 0 0; color: #4f5d51; font-size: 17px; line-height: 1.8; }
.detail-scope { border-top: 2px solid var(--forest); }
.detail-scope h3 { margin: 20px 0; font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.detail-scope ul { margin: 0; padding: 0; list-style: none; }
.detail-scope li { display: flex; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); color: #59665b; font-size: 12px; }
.detail-scope li::before { content: "+"; color: var(--lime-dark); font-weight: 800; }

.feature-head { display: grid; grid-template-columns: 1fr 420px; gap: 70px; align-items: end; margin-bottom: 60px; }
.feature-head p { margin: 0; color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.feature-card { min-height: 290px; padding: 28px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.feature-card > span { color: var(--lime); font-size: 10px; font-weight: 800; }
.feature-card h3 { margin: 90px 0 15px; font-family: var(--display); font-size: 27px; line-height: 1; text-transform: uppercase; }
.feature-card p { margin: 0; color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.65; }

.use-case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.use-case-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.use-case-list div { min-height: 130px; display: flex; align-items: flex-end; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 20px; font-weight: 700; line-height: 1; text-transform: uppercase; }

.delivery-grid { display: grid; grid-template-columns: 240px 1fr; gap: 80px; }
.delivery-steps { counter-reset: delivery; border-top: 1px solid var(--line-light); }
.delivery-step { counter-increment: delivery; display: grid; grid-template-columns: 70px 1fr 1fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line-light); }
.delivery-step::before { content: "0" counter(delivery); color: var(--lime); font-family: var(--display); font-size: 20px; font-weight: 800; }
.delivery-step h3 { margin: 0; font-family: var(--display); font-size: 28px; text-transform: uppercase; }
.delivery-step p { margin: 0; color: rgba(255,255,255,.52); font-size: 13px; line-height: 1.65; }

.faq-grid { display: grid; grid-template-columns: 320px 1fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 50px 25px 0; cursor: pointer; list-style: none; font-family: var(--display); font-size: 22px; font-weight: 700; text-transform: uppercase; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 20px; color: var(--forest); font-size: 28px; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 700px; margin: 0; padding: 0 55px 28px 0; color: #566359; font-size: 14px; line-height: 1.7; }

.page-cta { padding: 85px 0; color: var(--ink); background: var(--lime); }
.page-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.page-cta h2 { max-width: 850px; margin: 0; font-family: var(--display); font-size: clamp(48px, 6vw, 88px); line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
.page-cta .button { white-space: nowrap; }

.contact-page-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 120px; }
.contact-page-details { padding-top: 25px; }
.contact-page-details > p { color: #526054; line-height: 1.75; }
.contact-detail-row { padding: 20px 0; border-top: 1px solid var(--line); }
.contact-detail-row:last-child { border-bottom: 1px solid var(--line); }
.contact-detail-row small { display: block; margin-bottom: 6px; color: var(--forest); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-detail-row a, .contact-detail-row address { font-size: 14px; font-style: normal; }
.contact-page .quote-form { box-shadow: 22px 22px 0 rgba(13,96,50,.1); }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 48px, 1040px); }
  .nav { gap: 24px; }
  .brand { width: 215px; }
  .nav-links { gap: 20px; }
  .hero-inner { grid-template-columns: 1fr 270px; gap: 40px; }
  .intro-grid, .standard-grid, .about-grid { grid-template-columns: 155px 1fr; gap: 55px; }
  .intro-note, .about-stats { grid-column: 2; padding-top: 0; }
  .standard-copy { padding-top: 0; }
  .process { grid-column: 2; }
  .section-head { grid-template-columns: 155px 1fr; }
  .section-head > p { grid-column: 2; width: auto; }
  .service-console { grid-template-columns: .85fr 1fr; }
  .contact-grid { gap: 70px; }
  .inner-hero-grid { grid-template-columns: 1fr 290px; gap: 50px; }
  .story-grid, .detail-overview { grid-template-columns: 155px 1fr; gap: 55px; }
  .story-aside, .detail-scope { grid-column: 2; margin-top: 0; }
  .values-head { grid-template-columns: 1fr 320px; }
  .standards-shell { grid-template-columns: 1fr; gap: 50px; }
  .standards-grid { grid-template-columns: repeat(3, 1fr); }
  .people-feature-grid { gap: 55px; }
  .accreditations-layout { gap: 60px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-card:nth-child(2) { border-right: 0; }
  .value-card:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .services-intro { grid-template-columns: 155px 1fr; }
  .contact-page-grid { gap: 70px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 36px); }
  .cursor-glow { display: none; }
  .signal-centre { display: none; }
  .nav { min-height: 78px; }
  .brand { width: 185px; }
  .nav-cta { display: none; }
  .menu-toggle { position: relative; z-index: 2; display: grid; grid-template-columns: 22px auto; grid-template-rows: 9px 9px; align-items: center; gap: 0 10px; border: 0; color: #fff; background: transparent; }
  .menu-toggle span { display: block; width: 22px; height: 1px; background: #fff; transition: .25s; }
  .menu-toggle em { grid-column: 2; grid-row: 1 / 3; font-size: 9px; font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .nav-links { position: fixed; z-index: 1; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; padding: 120px 9vw; background: rgba(8,10,9,.98); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: .3s; }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a { font-family: var(--display); font-size: 38px; font-weight: 800; text-transform: uppercase; }

  .hero { min-height: 760px; }
  .hero::before { background: linear-gradient(90deg, rgba(2,17,7,.97) 0%, rgba(3,25,11,.78) 75%, rgba(2,20,8,.48)), linear-gradient(180deg, transparent 35%, rgba(2,18,8,.88)); }
  .hero::after { left: 85%; }
  .hero-media { background-position: 61% center; }
  .hero-inner { display: flex; align-items: center; padding-top: 120px; }
  .hero-copy { margin-top: 30px; }
  .hero h1 { font-size: clamp(64px, 18vw, 108px); }
  .hero-lede { max-width: 530px; font-size: 16px; }
  .hero-proof { display: none; }
  .hero-rail { justify-content: flex-start; gap: 15px; padding: 10px 18px; overflow: hidden; white-space: nowrap; }
  .hero-rail span:nth-of-type(n+3), .hero-rail i:nth-of-type(n+3) { display: none; }
  .scroll-cue { display: none; }

  .intro, .services, .standard, .about, .testimonials, .contact { padding: 100px 0; }
  .standards-band { padding: 80px 0; }
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .people-feature { padding-bottom: 90px; }
  .people-feature-grid, .accreditations-layout { display: block; }
  .people-feature-image { min-height: 480px; margin-bottom: 55px; }
  .people-feature-image img { min-height: 480px; }
  .accreditations-section { padding: 95px 0; }
  .accreditation-list { margin-top: 55px; }
  .intro-grid, .standard-grid, .about-grid, .contact-grid { display: block; }
  .section-marker { margin-bottom: 55px; }
  .intro-note, .about-stats { margin-top: 50px; }
  .section-head { display: block; }
  .section-head .section-marker { margin-bottom: 55px; }
  .section-head > p { margin-top: 25px; }
  .service-console { display: block; }
  .service-list { border-bottom: 1px solid rgba(255,255,255,.15); }
  .service-tab { min-height: 78px; }
  .service-tab b { font-size: 21px; }
  .service-panel { min-height: 540px; padding: 35px; }
  .panel-features { grid-template-columns: 1fr; }
  .specialist-line { flex-wrap: wrap; }
  .standard-copy { margin-bottom: 70px; }
  .process { margin-left: 30px; }
  .about-stats { max-width: 500px; }
  .testimonial { margin-left: 0; }
  .testimonial-top .section-marker { margin-bottom: 0; }
  .quote-mark { right: 0; }
  .contact-copy { margin-bottom: 60px; }
  .contact-copy h2 { margin-top: 0; }
  .footer-top { grid-template-columns: 1fr auto; gap: 40px; }
  .footer-top p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-address { grid-column: 1 / -1; grid-row: 2; }
  .inner-hero { min-height: 650px; padding: 165px 0 75px; }
  .inner-hero-grid { display: block; }
  .inner-hero h1 { font-size: clamp(64px, 16vw, 105px); }
  .inner-hero-copy { max-width: 520px; margin-top: 40px; }
  .page-section { padding: 95px 0; }
  .story-grid, .detail-overview, .values-head, .timeline, .services-intro, .feature-head, .use-case-grid, .delivery-grid, .faq-grid, .contact-page-grid { display: block; }
  .story-grid .section-marker, .detail-overview .section-marker, .services-intro .section-marker { margin-bottom: 50px; }
  .story-aside, .detail-scope { margin-top: 50px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .service-card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .specialist-grid { grid-template-columns: 1fr 1fr; }
  .feature-head > p, .use-case-grid > div:first-child, .delivery-grid > div:first-child, .faq-grid > div:first-child, .contact-page-details { margin-bottom: 55px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 240px; }
  .feature-card h3 { margin-top: 55px; }
  .delivery-step { grid-template-columns: 50px 1fr; }
  .delivery-step p { grid-column: 2; }
  .credential-inner { grid-template-columns: 130px 1fr; }
  .credential-inner small { grid-column: 2; }
  .page-cta-inner { display: block; }
  .page-cta .button { margin-top: 35px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .signal-inner { min-height: 32px; }
  .signal-inner > a { display: none; }
  .nav { min-height: 70px; }
  .brand { width: 163px; }
  .hero { min-height: 720px; }
  .hero-inner { padding-top: 104px; }
  .hero h1 { font-size: clamp(56px, 18.8vw, 86px); }
  .hero-lede { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-rail { font-size: 8px; }
  .intro-statement h2, .section-head h2, .standard-copy h2, .about-copy h2, .contact-copy h2 { font-size: 52px; }
  .intro-note p, .about-copy > p { font-size: 15px; }
  .service-tab { grid-template-columns: 35px 1fr 25px; padding: 0 18px; }
  .service-tab b { font-size: 18px; }
  .service-panel { min-height: 585px; padding: 28px 22px; }
  .service-panel::after { right: 25px; width: 80px; height: 80px; }
  .panel-copy h3 { font-size: 38px; }
  .specialist-line { gap: 14px; }
  .process { margin-left: 0; }
  .process-item { padding-inline: 18px; }
  .about-stats > div { grid-template-columns: 100px 1fr; }
  .about-stats strong { font-size: 58px; }
  .testimonial-top { align-items: flex-end; }
  .testimonial-top .section-marker p { display: none; }
  .testimonial { min-height: 350px; margin-top: 70px; }
  .testimonial > p { font-size: 37px; }
  .quote-mark { top: 90px; font-size: 240px; }
  .contact-direct a { grid-template-columns: 70px 1fr; }
  .quote-form { padding: 30px 22px; box-shadow: 10px 10px 0 rgba(174,240,75,.13); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .footer-top { gap: 28px; padding-bottom: 50px; }
  .footer-top img { width: 185px; }
  .footer-top p { font-size: 25px; }
  .footer-bottom { display: flex; flex-direction: column; gap: 14px; }
  .footer-contact { justify-content: flex-start; }
  .standards-grid { grid-template-columns: 1fr; }
  .standards-grid > div { min-height: 108px; }
  .people-feature-image, .people-feature-image img { min-height: 380px; }
  .accreditation-list article { grid-template-columns: 1fr; gap: 8px; }
  .inner-hero { min-height: 600px; padding-top: 140px; }
  .breadcrumbs { margin-bottom: 35px; }
  .inner-hero h1 { font-size: clamp(54px, 17vw, 78px); }
  .inner-hero-copy { padding-left: 15px; }
  .inner-hero-copy p { font-size: 14px; }
  .page-heading { font-size: 49px; }
  .story-copy p, .detail-overview-copy p, .lead { font-size: 15px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .value-card h3 { margin-top: 70px; }
  .timeline-row { grid-template-columns: 85px 1fr; gap: 18px; }
  .credential-inner { display: block; }
  .credential-inner strong { margin-bottom: 24px; }
  .credential-inner small { display: block; margin-top: 18px; }
  .service-card { min-height: 310px; padding: 25px; }
  .service-card h2 { font-size: 39px; }
  .specialist-grid { grid-template-columns: 1fr; }
  .specialist-card { min-height: 150px; }
  .specialist-card h3 { margin-top: 45px; }
  .use-case-list { grid-template-columns: 1fr; }
  .feature-card { min-height: 215px; }
  .delivery-step { display: block; }
  .delivery-step::before { display: block; margin-bottom: 12px; }
  .delivery-step p { margin-top: 12px; }
  .faq-list summary { font-size: 19px; }
  .page-cta { padding: 65px 0; }
  .page-cta h2 { font-size: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
/* Hidden bot-trap field used by the live WordPress enquiry endpoint. */
.form-trap{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.policy-content{max-width:920px}.policy-content h2,.policy-content h3,.policy-content h4,.policy-content h5,.policy-content strong{color:var(--ink)}.policy-content h2,.policy-content h3,.policy-content h4,.policy-content h5{margin:2rem 0 .75rem}.policy-content p,.policy-content li{line-height:1.75}.policy-content ul{padding-left:1.3rem;margin:1rem 0}.policy-content a{text-decoration:underline}
