:root {
  --ink: #252353;
  --ink-soft: #373568;
  --lime: #e93557;
  --lime-bright: #f47d37;
  --blue: #7c83c6;
  --paper: #fbfbfd;
  --mist: #f0f1f8;
  --clay: #f47d37;
  --green: #76b47f;
  --line: rgba(37, 35, 83, .15);
  --sans: "DM Sans", sans-serif;
  --display: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.55; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1320px, calc(100% - 64px)); margin: 0 auto; }
.skip-link { position: fixed; top: -60px; left: 20px; z-index: 100; padding: 10px 16px; border-radius: 0 0 9px 9px; background: var(--lime); color: var(--ink); font-weight: 700; }
.skip-link:focus { top: 0; }

.site-header { position: absolute; z-index: 10; top: 0; width: 100%; color: #fff; }
.notice-bar { border-bottom: 1px solid rgba(255,255,255,.15); font-size: 12px; letter-spacing: .02em; }
.notice-inner { min-height: 37px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.notice-inner p { margin: 0; }
.notice-inner a { font-weight: 600; }
.spark { color: var(--lime); margin-right: 6px; }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); line-height: 1; letter-spacing: -.05em; }
.brand-mark { width: 37px; height: 37px; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 21px; letter-spacing: -.08em; background: rgba(255,255,255,.08); }
.brand-mark span { transform: translateX(-1px); }
.brand-name { font-size: 23px; font-weight: 500; }
.brand-name b { font-weight: 800; color: var(--lime); }
.brand-name small { display: block; margin-top: 4px; font-family: var(--sans); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 500; }
.site-nav > a:not(.nav-cta) { transition: color .2s ease; }
.site-nav > a:not(.nav-cta):hover { color: var(--lime); }
.nav-cta { padding: 11px 16px; border: 1px solid rgba(255,255,255,.4); border-radius: 5px; transition: background .2s, color .2s; }
.nav-cta:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.nav-cta span { margin-left: 7px; }
.menu-toggle { display: none; padding: 8px; border: 0; background: none; color: #fff; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: currentColor; }

.section { padding: 120px 0; }
.section-dark { color: #fff; background: var(--ink); }
.section-soft { background: var(--mist); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--lime); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 22px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #43806b; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); }
h1, h2 { font-weight: 700; letter-spacing: -.06em; line-height: 1.02; }
h1 em, h2 em { font-style: normal; color: #4e8f7b; }
.section-dark h1 em, .section-dark h2 em { color: var(--lime); }
h2 { margin-bottom: 0; font-size: clamp(38px, 5vw, 64px); }
h3 { line-height: 1.14; }

.hero { position: relative; overflow: hidden; min-height: 760px; padding-top: 170px; background: radial-gradient(circle at 75% 42%, #24564c 0%, #173a33 25%, var(--ink) 59%); }
.hero::after { content: ""; position: absolute; inset: auto -4% 0; height: 1px; background: rgba(255,255,255,.18); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; min-height: 475px; }
.hero-copy { position: relative; z-index: 1; padding-bottom: 36px; }
.hero h1 { margin: 0; max-width: 690px; font-size: clamp(52px, 6.1vw, 84px); }
.hero-text { max-width: 560px; margin: 29px 0 33px; color: rgba(255,255,255,.75); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; align-items: center; gap: 23px; padding: 15px 18px; border: 1px solid transparent; border-radius: 4px; font-size: 14px; font-weight: 700; line-height: 1; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 19px; line-height: .5; }
.button-lime { background: var(--lime); color: var(--ink); }
.button-lime:hover { background: var(--lime-bright); }
.button-outline { color: #fff; border-color: rgba(255,255,255,.45); }
.button-outline:hover { background: #fff; color: var(--ink); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: #244c43; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.text-link span { font-size: 18px; transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }
.text-link.light { color: #fff; }.text-link.dark { color: #295f50; }
.hero-art { position: relative; width: min(100%, 490px); height: 420px; margin: 0 0 0 auto; }
.hero-glow { position: absolute; top: 18px; right: 20px; width: 335px; height: 335px; border: 1px solid rgba(217,255,103,.45); border-radius: 50%; box-shadow: 0 0 0 48px rgba(217,255,103,.04), 0 0 0 98px rgba(217,255,103,.025); }
.sun { position: absolute; top: 45px; right: 91px; width: 150px; height: 150px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 75px rgba(217,255,103,.24); }
.city { position: absolute; display: flex; align-items: end; gap: 7px; right: 0; bottom: 75px; transform: skewY(-4deg); }
.city i { display: block; width: 45px; background: #163f37; border: 1px solid rgba(217,255,103,.35); border-bottom: 0; }
.city-back i:nth-child(1) { height: 100px; }.city-back i:nth-child(2) { height: 144px; }.city-back i:nth-child(3) { height: 87px; }.city-back i:nth-child(4) { height: 122px; }
.city-back { opacity: .72; right: 47px; bottom: 102px; }.city-front i { width: 52px; background: #102a25; }.city-front i:nth-child(1) { height: 128px; }.city-front i:nth-child(2) { height: 211px; }.city-front i:nth-child(3) { height: 145px; }.city-front i:nth-child(4) { height: 180px; }.city-front i:nth-child(5) { height: 105px; }
.ground { position: absolute; right: -23px; bottom: 48px; width: 475px; height: 47px; border-radius: 50%; background: #0a1b18; transform: rotate(-4deg); }
.leaf { position: absolute; width: 78px; height: 38px; border: 2px solid var(--lime); border-radius: 100% 0 100% 0; opacity: .85; }
.leaf-one { left: 30px; bottom: 105px; transform: rotate(22deg); }.leaf-two { left: 62px; bottom: 56px; transform: rotate(-32deg) scale(.7); }.leaf-three { right: 27px; top: 17px; transform: rotate(43deg) scale(.55); }
.art-label { position: absolute; z-index: 1; top: 100px; left: 10px; display: grid; padding: 14px 16px; border: 1px solid rgba(255,255,255,.2); background: rgba(17,35,31,.72); backdrop-filter: blur(9px); }
.art-label b { color: var(--lime); font-family: var(--display); font-size: 25px; letter-spacing: -.06em; line-height: 1; }.art-label span { margin-top: 5px; color: rgba(255,255,255,.72); font-size: 11px; }
.hero-footer { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; padding-bottom: 29px; color: rgba(255,255,255,.7); font-size: 13px; }.hero-footer p { margin: 0; font-family: var(--display); letter-spacing: .02em; }.hero-scroll { display: flex; gap: 10px; align-items: center; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }.hero-scroll span { width: 31px; height: 1px; background: var(--lime); }

.intro { padding-bottom: 80px; }.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9%; align-items: start; }.intro-copy { max-width: 530px; padding-top: 7px; font-size: 18px; }.intro-copy p { margin-bottom: 19px; }.intro-copy .text-link { margin-top: 12px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 97px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.stats-grid article { padding: 29px 22px 28px; border-left: 1px solid var(--line); }.stats-grid article:last-child { border-right: 1px solid var(--line); }.stats-grid strong { display: block; font-family: var(--display); font-size: 46px; letter-spacing: -.07em; line-height: 1; }.stats-grid strong span { color: #4e8f7b; }.stats-grid p { margin: 9px 0 0; color: #50615b; font-size: 13px; }

.services { padding-top: 80px; }.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }.section-heading h2 { margin: 0; }.section-heading > p { width: min(350px, 35%); margin: 0 0 8px; color: #52635e; font-size: 16px; }.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }.service-card { min-height: 460px; padding: 26px 25px 25px; border-right: 1px solid var(--line); transition: background .25s, color .25s; }.service-card:last-child { border-right: 0; }.service-card:hover, .service-card.featured { color: #fff; background: #1e4b42; }.service-icon { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: 22px; }.icon-blue { background: var(--blue); }.icon-coral { background: var(--clay); }.icon-gold { background: #eacb87; }.card-number { margin: 41px 0 9px; color: #56937e; font-size: 11px; font-weight: 700; letter-spacing: .14em; }.service-card.featured .card-number, .service-card:hover .card-number { color: var(--lime); }.service-card h3 { min-height: 58px; margin-bottom: 19px; font-size: 20px; letter-spacing: -.045em; }.service-card > p:not(.card-number) { min-height: 96px; margin-bottom: 23px; color: #61716d; font-size: 14px; }.service-card:hover > p:not(.card-number), .service-card.featured > p:not(.card-number) { color: rgba(255,255,255,.72); }.service-card ul { margin: 0; padding: 0; list-style: none; font-size: 12px; line-height: 1.45; }.service-card li { position: relative; padding: 6px 0 6px 15px; border-top: 1px solid var(--line); }.service-card li::before { content: ""; position: absolute; top: 13px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: #56937e; }.service-card:hover li, .service-card.featured li { border-color: rgba(255,255,255,.17); }.service-card:hover li::before, .service-card.featured li::before { background: var(--lime); }

.environment { overflow: hidden; }.environment-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 10%; }.environment-art { position: relative; height: 485px; }.water-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(217,255,103,.4); border-radius: 50%; transform: translate(-50%, -50%); }.ring-one { width: 178px; height: 178px; }.ring-two { width: 270px; height: 270px; }.ring-three { width: 376px; height: 376px; border-color: rgba(217,255,103,.16); }.water-drop { position: absolute; left: 50%; top: 48%; width: 55px; height: 76px; border-radius: 55px 55px 55px 7px; background: var(--blue); transform: translate(-50%, -50%) rotate(45deg); box-shadow: -13px 10px 40px rgba(120,199,221,.25); }.plant-stem { position: absolute; left: calc(50% - 4px); top: 50%; width: 7px; height: 147px; border-radius: 10px; background: var(--lime); transform: rotate(-7deg); transform-origin: top; }.plant-leaf { position: absolute; width: 90px; height: 44px; border: 5px solid var(--lime); border-radius: 100% 0 100% 0; }.plant-leaf.left { top: 62%; left: 28%; transform: rotate(16deg); }.plant-leaf.right { top: 56%; right: 24%; transform: rotate(152deg); }.environment-art p { position: absolute; bottom: 20px; left: 0; margin: 0; color: #fff; font-family: var(--display); font-size: 22px; font-weight: 700; line-height: 1.1; letter-spacing: -.05em; }.environment-art p span { color: var(--lime); font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }.environment-copy h2 { max-width: 620px; margin-bottom: 24px; }.environment-copy > p:not(.eyebrow) { max-width: 600px; color: rgba(255,255,255,.7); font-size: 17px; }.environment-list { margin: 37px 0 33px; }.environment-list article { display: grid; grid-template-columns: 43px 1fr; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.17); }.environment-list article:last-child { border-bottom: 1px solid rgba(255,255,255,.17); }.environment-list article > span { color: var(--lime); font-family: var(--display); font-size: 16px; font-weight: 700; }.environment-list h3 { margin: 0 0 4px; font-size: 16px; letter-spacing: -.03em; }.environment-list p { margin: 0; color: rgba(255,255,255,.67); font-size: 13px; }

.method { padding-bottom: 105px; }.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); }.method-step { min-height: 230px; padding: 25px 25px 0; border-left: 1px solid var(--line); }.method-step:last-child { border-right: 1px solid var(--line); }.method-step span { color: #57947f; font-size: 11px; font-weight: 700; letter-spacing: .15em; }.method-step h3 { margin: 47px 0 10px; font-size: 20px; letter-spacing: -.04em; }.method-step p { color: #566660; font-size: 13px; }
.trust { padding: 105px 0; }.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11%; }.trust-quote blockquote { max-width: 540px; margin: 0 0 30px; font-family: var(--display); font-size: clamp(25px, 3.1vw, 40px); font-weight: 600; letter-spacing: -.055em; line-height: 1.18; }.trust-quote > p:last-child { max-width: 525px; color: #53645e; font-size: 14px; }.trust-values { border-top: 1px solid var(--line); }.trust-values article { display: grid; grid-template-columns: 45px 1fr; column-gap: 17px; padding: 20px 0; border-bottom: 1px solid var(--line); }.trust-values span { grid-row: 1 / 3; color: #57947f; font-size: 11px; font-weight: 700; letter-spacing: .15em; }.trust-values h3 { margin: 0; font-size: 20px; letter-spacing: -.04em; }.trust-values p { margin: 4px 0 0; color: #586864; font-size: 13px; }

.clients { padding-top: 104px; padding-bottom: 115px; }.clients-head h2 { margin: 0; }.client-list { display: flex; flex-wrap: wrap; gap: 0; margin-top: 54px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }.client-list span { flex: 1 1 20%; display: grid; min-height: 94px; place-items: center; padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #426359; font-family: var(--display); font-size: 16px; font-weight: 700; letter-spacing: -.035em; text-align: center; }

.coverage { padding: 108px 0; }.coverage-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 11%; }.coverage-copy h2 { margin-bottom: 25px; }.coverage-copy > p:not(.eyebrow) { max-width: 380px; margin-bottom: 31px; color: rgba(255,255,255,.7); }.office-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }.office-list article { min-height: 142px; padding: 20px 24px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }.office-list p { margin: 0 0 21px; color: var(--lime); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.office-list h3 { display: inline; margin: 0; font-size: 24px; letter-spacing: -.055em; }.office-list a { display: block; margin-top: 4px; color: rgba(255,255,255,.69); font-size: 13px; }.office-list a:hover { color: var(--lime); }

.contact { padding: 120px 0; }.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 12%; }.contact-copy h2 { margin-bottom: 26px; }.contact-copy > p:not(.eyebrow) { max-width: 390px; color: #53645e; font-size: 17px; }.contact-direct { margin-top: 51px; }.contact-direct a { display: grid; grid-template-columns: 1fr auto; max-width: 390px; padding: 12px 0; border-top: 1px solid var(--line); color: #1d4c42; font-size: 15px; font-weight: 700; }.contact-direct a:last-child { border-bottom: 1px solid var(--line); }.contact-direct span { grid-column: 1 / 3; color: #66756f; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.contact-direct b { color: #57947f; }.contact-form { padding: 31px; background: #fff; box-shadow: 0 14px 34px rgba(23,45,39,.07); }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }.contact-form label { display: block; margin-bottom: 16px; color: #365c51; font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 11px 0; border: 0; border-bottom: 1px solid #cbd6d0; border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none; transition: border-color .2s; }.contact-form select { color: #586a63; }.contact-form textarea { resize: vertical; }.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #4d917c; }.contact-form .button { margin-top: 7px; }.form-note { margin: 13px 0 0; color: #718078; font-size: 11px; }

.site-footer { padding: 35px 0 18px; color: #fff; background: #0a1b18; }.footer-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 55px; padding-bottom: 36px; }.footer-brand .brand-mark { border-color: rgba(255,255,255,.45); }.footer-top > p { max-width: 430px; margin: 0; color: rgba(255,255,255,.58); font-size: 13px; }.footer-up { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--lime); font-size: 19px; }.footer-up:hover { border-color: var(--lime); background: var(--lime); color: var(--ink); }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); font-size: 11px; }.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-nav { gap: 17px; font-size: 12px; }.hero-grid, .environment-grid, .coverage-grid, .contact-grid { gap: 7%; }.services-grid { grid-template-columns: 1fr 1fr; }.service-card:nth-child(2) { border-right: 0; }.service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }.method-step { min-height: 250px; padding-left: 16px; padding-right: 16px; }.client-list span { flex-basis: 25%; }.intro-grid, .trust-grid { gap: 7%; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 36px, 560px); }.notice-inner { min-height: 31px; justify-content: center; }.notice-inner a { display: none; }.site-header { background: linear-gradient(to bottom, rgba(10,27,24,.45), transparent); }.nav-wrap { height: 67px; }.menu-toggle { position: relative; z-index: 12; display: block; }.site-nav { position: fixed; z-index: 11; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 29px; padding: 45px; background: var(--ink); font-family: var(--display); font-size: 25px; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .2s, transform .2s; }.site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }.nav-cta { padding: 0; border: 0; color: var(--lime); }.nav-cta span { display: none; }.brand { position: relative; z-index: 12; }.hero { min-height: 755px; padding-top: 139px; }.hero-grid { display: block; }.hero-copy { padding-bottom: 0; }.hero h1 { font-size: clamp(45px, 13vw, 65px); }.hero-text { margin: 23px 0 28px; font-size: 16px; }.hero-actions { gap: 20px; }.hero-art { width: 100%; height: 270px; margin-top: 13px; transform: scale(.75); transform-origin: bottom right; }.hero-footer { margin-top: -26px; }.hero-footer p { max-width: 170px; }.hero-scroll { font-size: 9px; }.section { padding: 80px 0; }.intro { padding-bottom: 50px; }.intro-grid, .environment-grid, .coverage-grid, .contact-grid, .trust-grid { grid-template-columns: 1fr; }.intro-copy { padding-top: 9px; font-size: 16px; }.stats-grid { grid-template-columns: 1fr 1fr; margin-top: 55px; }.stats-grid article:nth-child(2) { border-right: 1px solid var(--line); }.stats-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }.section-heading { display: block; margin-bottom: 37px; }.section-heading > p { width: auto; margin: 23px 0 0; }.services { padding-top: 50px; }.services-grid { grid-template-columns: 1fr; }.service-card, .service-card:nth-child(2) { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }.service-card:last-child { border-bottom: 0; }.service-card h3, .service-card > p:not(.card-number) { min-height: auto; }.service-card > p:not(.card-number) { margin-bottom: 16px; }.environment-art { height: 315px; transform: scale(.7); transform-origin: top left; margin-bottom: -88px; }.environment-copy { margin-top: 0; }.method { padding-bottom: 70px; }.method-grid { grid-template-columns: 1fr 1fr; }.method-step { min-height: 220px; padding: 19px 15px 0; }.method-step:nth-child(2) { border-right: 1px solid var(--line); }.method-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }.method-step h3 { margin-top: 32px; font-size: 18px; }.trust { padding: 73px 0; }.trust-values { margin-top: 24px; }.clients { padding: 75px 0; }.client-list { margin-top: 38px; }.client-list span { flex-basis: 50%; min-height: 75px; font-size: 13px; }.coverage { padding: 80px 0; }.office-list { margin-top: 47px; }.office-list article { min-height: 120px; padding: 17px; }.office-list h3 { font-size: 21px; }.contact { padding: 80px 0; }.contact-direct { margin-top: 35px; margin-bottom: 40px; }.contact-form { padding: 25px 20px; }.form-row { grid-template-columns: 1fr; gap: 0; }.footer-top { grid-template-columns: 1fr auto; gap: 24px; }.footer-top > p { grid-column: 1 / 3; grid-row: 2; }.footer-bottom { display: block; }.footer-bottom p + p { margin-top: 6px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; } }

/* RNS brand refresh: derived from the supplied navy, coral and orange logo. */
.site-header { color: var(--ink); }
.site-header::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--lime), var(--lime-bright)); }
.notice-inner { justify-content: center; }
.brand-logo { width: 50px; height: 50px; padding: 3px; border-radius: 6px; background: #fff; object-fit: contain; box-shadow: 0 5px 18px rgba(0, 0, 0, .16); }
.brand-name { font-size: 18px; font-weight: 600; letter-spacing: -.055em; }
.brand-name b { color: var(--ink); font-weight: 800; }
.brand-name small { color: #6b698b; }
.site-nav > a:not(.nav-cta):hover { color: #d53556; }
.nav-cta { border-color: rgba(37, 35, 83, .3); }
.nav-cta:hover { color: #fff; }
.menu-toggle { color: var(--ink); }

.eyebrow.dark { color: #c43754; }
h1 em, h2 em { color: #d53556; }
.section-dark h1 em, .section-dark h2 em { color: var(--lime-bright); }
.hero { color: var(--ink); background: radial-gradient(circle at 74% 38%, #dfdcfb 0%, #f3f2fd 38%, #fbfbfd 71%); }
.hero::after { background: rgba(37, 35, 83, .13); }
.hero .eyebrow { color: #cf3b54; }
.hero h1 em { color: #dc3b59; }
.hero-text { color: #5d5a7d; }
.hero .text-link.light { color: var(--ink); }
.hero-footer { color: #676488; }
.hero-scroll span { background: var(--lime); }
.hero-glow { border-color: rgba(244, 125, 55, .6); box-shadow: 0 0 0 48px rgba(233, 53, 87, .07), 0 0 0 98px rgba(124, 131, 198, .12); }
.sun { background: linear-gradient(135deg, var(--lime-bright), var(--lime)); box-shadow: 0 0 75px rgba(244, 125, 55, .25); }
.city i { background: #38366d; border-color: rgba(244, 125, 55, .54); }
.city-front i { background: #1d1b46; }
.ground { background: #171534; }
.leaf { border-color: var(--lime-bright); }
.art-label { background: rgba(37, 35, 83, .76); }
.art-label b { color: var(--lime-bright); }

.text-link.dark { color: #343265; }
.stats-grid strong span { color: #d53556; }
.service-card:hover, .service-card.featured { background: #302e65; }
.card-number, .method-step span, .trust-values span { color: #cf3b54; }
.service-card li::before { background: #d53c56; }
.service-card:hover li::before, .service-card.featured li::before { background: var(--lime-bright); }
.water-ring { border-color: rgba(244, 125, 55, .48); }
.ring-three { border-color: rgba(244, 125, 55, .15); }
.water-drop { background: var(--blue); box-shadow: -13px 10px 40px rgba(124, 131, 198, .27); }
.plant-stem, .plant-leaf { border-color: var(--green); }
.plant-stem { background: var(--green); }
.environment-art p span, .environment-list article > span { color: var(--lime-bright); }
.contact-direct a { color: #343265; }
.contact-direct b { color: #d53556; }
.contact-form label { color: #343265; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #d53556; }
.button-dark { background: var(--ink); }
.button-dark:hover { background: #3b3972; }
.site-footer { background: #302e65; }
.footer-brand .brand-logo { border: 0; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name b { color: var(--lime-bright); }
.footer-brand .brand-name small { color: rgba(255, 255, 255, .72); }
.client-list small { display: block; margin-top: 3px; color: #9b9ab7; font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.purpose-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 23px; }
.purpose-points article { padding: 13px 14px; border-left: 3px solid var(--lime); background: #f1f0fa; }
.purpose-points h3 { margin: 0 0 5px; color: var(--ink); font-size: 14px; letter-spacing: -.03em; }
.purpose-points p { margin: 0; color: #5e5c7c; font-size: 12px; line-height: 1.45; }
.waste-services { background: #f5f4fb; }
.waste-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.waste-service-card { min-height: 475px; padding: 30px; border: 1px solid rgba(37, 35, 83, .14); background: #fff; box-shadow: 0 12px 24px rgba(37, 35, 83, .045); }
.waste-service-card .card-number { margin: 0 0 38px; }
.waste-service-card h3 { margin: 0 0 16px; color: var(--ink); font-size: 28px; letter-spacing: -.055em; }
.waste-service-card > p:not(.card-number) { max-width: 500px; min-height: 66px; margin-bottom: 22px; color: #5f5c7e; font-size: 14px; }
.waste-service-card dl { margin: 0; }
.waste-service-card dl div { display: grid; grid-template-columns: 102px 1fr; gap: 10px; padding: 10px 0; border-top: 1px solid rgba(37, 35, 83, .12); }
.waste-service-card dt { color: #cf3b54; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.waste-service-card dd { margin: 0; color: #535173; font-size: 12px; line-height: 1.5; }
.nav-wrap { height: 106px; }
.nav-wrap .brand { gap: 15px; }
.nav-wrap .brand-logo { width: 84px; height: 84px; padding: 4px; }
.nav-wrap .brand-name { font-size: 25px; font-weight: 700; letter-spacing: -.045em; }
.nav-wrap .brand-name small { margin-top: 7px; font-size: 10px; letter-spacing: .08em; }
.director { background: #fff; }
.director .reveal { opacity: 1; transform: none; }
.director-grid { display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); align-items: start; gap: 8%; }
.director-grid-secondary { margin-top: 116px; padding-top: 116px; border-top: 1px solid rgba(37, 35, 83, .13); }
.director-portrait { position: sticky; top: 28px; margin: 0; }
.portrait-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: #e8e7f3; }
.portrait-frame::before { content: ""; position: absolute; z-index: 1; inset: 15px; border: 1px solid rgba(255, 255, 255, .72); pointer-events: none; }
.portrait-frame::after { content: ""; position: absolute; inset: auto 0 0; height: 37%; background: linear-gradient(transparent, rgba(37, 35, 83, .22)); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.director-portrait figcaption { display: flex; align-items: end; gap: 13px; padding: 18px 0 0; }
.director-portrait strong { color: var(--lime); font-family: var(--display); font-size: 48px; letter-spacing: -.08em; line-height: .8; }
.director-portrait strong span { color: var(--lime-bright); }
.director-portrait figcaption p { max-width: 155px; margin: 0; color: #646182; font-size: 12px; line-height: 1.35; }
.director-copy h2 { margin-bottom: 11px; }
.director-title { margin-bottom: 25px; color: #cb3b54; font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.director-summary { margin-bottom: 29px; color: #585576; font-size: 16px; }
.director-achievements { padding: 24px 25px; background: #f3f2fb; }
.director-achievements h3, .expertise-grid h3 { margin: 0 0 14px; color: var(--ink); font-size: 17px; letter-spacing: -.04em; }
.director-achievements ul, .expertise-grid ul { margin: 0; padding: 0; list-style: none; }
.director-achievements li { position: relative; padding: 8px 0 8px 19px; border-top: 1px solid rgba(37, 35, 83, .11); color: #545173; font-size: 13px; }
.director-achievements li::before, .expertise-grid li::before { content: ""; position: absolute; top: 15px; left: 1px; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.expertise-grid article { padding: 23px 22px; border: 1px solid rgba(37, 35, 83, .13); }
.expertise-grid li { position: relative; padding: 6px 0 6px 16px; color: #575477; font-size: 12px; line-height: 1.4; }
.expertise-grid li::before { top: 12px; width: 5px; height: 5px; background: var(--lime-bright); }
.office-list article { min-height: 195px; }
.office-list h3 { display: block; }
.office-list address { margin-top: 8px; color: rgba(255, 255, 255, .65); font-size: 12px; font-style: normal; line-height: 1.45; }

@media (max-width: 1040px) and (min-width: 721px) {
  .nav-wrap { height: 87px; }
  .nav-wrap .brand { gap: 10px; }
  .nav-wrap .brand-logo { width: 53px; height: 53px; }
  .nav-wrap .brand-name { font-size: 17px; }
  .nav-wrap .brand-name small { margin-top: 5px; font-size: 7px; }
  .site-nav { gap: 12px; }
  .nav-cta { padding: 10px 11px; }
}

@media (max-width: 720px) {
  .purpose-points { grid-template-columns: 1fr; }
  .waste-service-grid { grid-template-columns: 1fr; }
  .waste-service-card { min-height: 0; padding: 24px 19px; }
  .waste-service-card .card-number { margin-bottom: 25px; }
  .waste-service-card h3 { font-size: 24px; }
  .waste-service-card dl div { grid-template-columns: 1fr; gap: 3px; }
  .nav-wrap { height: 72px; }
  .nav-wrap .brand-logo { width: 43px; height: 43px; }
  .nav-wrap .brand-name { font-size: 14px; }
  .nav-wrap .brand-name small { margin-top: 4px; font-size: 7px; }
  .director-grid, .expertise-grid { grid-template-columns: 1fr; }
  .director-grid-secondary { margin-top: 80px; padding-top: 80px; }
  .director-portrait { position: static; max-width: 390px; }
  .director-copy { margin-top: 42px; }
  .director-summary { font-size: 15px; }
  .director-achievements { padding: 21px 18px; }
  .office-list article { min-height: 170px; }
}

@media (max-width: 720px) {
  .site-header { background: linear-gradient(to bottom, rgba(251, 251, 253, .9), transparent); }
  .brand-logo { width: 43px; height: 43px; }
  .brand-name { font-size: 14px; }
  .brand-name small { font-size: 7px; }
}
