/* Safe Policies — company website. No external fonts or runtime dependencies. */
:root {
  --ink: #153d37;
  --dark: #092f2a;
  --green: #09674f;
  --lime: #d9ed89;
  --paper: #f6f7f2;
  --muted: #53675f;
  --line: #dce3dc;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 18px 50px rgb(10 47 39 / 9%);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 116px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--lime); color: var(--dark); }
a { color: var(--green); text-underline-offset: 4px; }
a:hover { color: var(--dark); }
img, svg { max-width: 100%; }
img { height: auto; display: block; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #ac7000; outline-offset: 5px; }
button, a { transition: background-color .18s ease, color .18s ease, border-color .18s ease; }
.wrap { width: min(1200px, calc(100% - 64px)); margin-inline: auto; }
.wrap > *, .hero-grid > *, .two > *, .split > *, .footer-grid > *, .form-grid > * { min-width: 0; }
h1, h2, h3 { margin: 0 0 21px; line-height: 1.14; letter-spacing: -.038em; text-wrap: balance; }
h1 { max-width: 880px; font-size: clamp(40px, 4.65vw, 67px); font-weight: 720; }
h1 em { color: var(--green); font-style: normal; }
h2 { font-size: clamp(30px, 3.05vw, 43px); font-weight: 710; }
h3 { font-size: 23px; font-weight: 690; letter-spacing: -.024em; }
p { margin: 0 0 20px; }
p:last-child { margin-bottom: 0; }
.lead { max-width: 670px; font-size: 19px; line-height: 1.7; color: var(--muted); }
.small { font-size: 13px; line-height: 1.7; color: var(--muted); }
.eyebrow, .tag {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .14em;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow { display: flex; gap: 11px; align-items: center; }
.eyebrow::before { content: ""; width: 24px; height: 2px; flex: 0 0 24px; background: currentColor; }
.skip { position: absolute; left: 12px; top: -120px; z-index: 100; padding: 14px 20px; background: white; color: var(--dark); }
.skip:focus { top: 12px; }

/* Navigation: direct routes to the two primary services. */
.topline { background: var(--dark); color: #d6e1d8; font-size: 11px; letter-spacing: .035em; }
.topline .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 36px; }
.topline a { color: #fff; text-decoration: none; }
.topline a:hover { text-decoration: underline; }
.site-header { position: sticky; top: 0; z-index: 40; background: rgb(255 255 255 / 98%); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 32px; min-height: 90px; }
.brand { display: flex; gap: 8px; align-items: center; flex-shrink: 0; text-decoration: none; }
.brand img { width: 70px; height: 70px; object-fit: contain; }
.brand-copy strong { display:block; color:var(--ink); font-size:21px; font-weight:750; line-height:1.2; letter-spacing:-.03em; }
.brand-copy small { display:block; margin-top:5px; color:var(--muted); font-size:10px; line-height:1.3; }
.navlinks { display: flex; align-items: center; gap: 29px; }
.navlinks > a, .navgroup > summary { color: var(--ink); font-size: 14px; font-weight: 650; text-decoration: none; cursor: pointer; }
.navlinks > a:not(.btn) { display: flex; align-items: center; min-height: 44px; }
.navlinks > a:not(.btn):hover, .navgroup > summary:hover { color: var(--green); }
.navgroup { position: relative; }
.navgroup > summary { display: flex; align-items: center; min-height: 52px; padding: 10px 0; list-style: none; }
.navgroup > summary::-webkit-details-marker { display: none; }
.navgroup > summary::after { content: ""; width: 6px; height: 6px; margin: -4px 0 0 9px; border-right: 1.5px solid; border-bottom: 1.5px solid; transform: rotate(45deg); }
.navgroup[open] > summary { color: var(--green); }
.navgroup[open] > summary::after { transform: rotate(225deg); margin-top: 3px; }
.dropdown { position: absolute; top: calc(100% + 8px); right: -24px; width: 440px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 16px; background: white; border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: 0 0 10px 10px; box-shadow: var(--shadow); }
.dropdown a { display: flex; align-items: center; min-height: 46px; padding: 10px 12px; border-radius: 5px; font-size: 13px; line-height: 1.5; font-weight: 550; text-decoration: none; }
.dropdown a:hover { color: var(--dark); background: #edf3e5; }
.nav-toggle, .menu-toggle { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 50px; padding: 13px 23px; border: 1px solid var(--green); border-radius: 6px; color: #fff !important; background: var(--green); font-size: 14px; line-height: 1.45; font-weight: 700; text-decoration: none; text-align: center; cursor: pointer; }
.btn:hover { border-color: var(--dark); background: var(--dark); }
.btn.light { color: var(--dark) !important; background: var(--lime); border-color: var(--lime); }
.btn.light:hover { background: #e6f5ae; border-color: #e6f5ae; }
.btn.outline { background: transparent; color: var(--ink) !important; border-color: #a1b1a8; }
.btn.outline:hover { background: #eaf0e2; border-color: var(--green); }
.btn:disabled { opacity: .65; cursor: wait; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin: 28px 0 0; }

/* A deliberately open, editorial hero with a strong visual anchor. */
.hero { position: relative; padding: 67px 0 54px; overflow: hidden; background: var(--paper); }
.hero::before { content: ""; position: absolute; top: 0; right: 0; width: 30%; height: 100%; background: #edf1e6; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 60px; }
.hero-copy h1 { margin-bottom: 25px; }
.hero-copy .lead { max-width: 540px; font-size: 18px; }
.hero-reassurance { max-width: 500px; margin-top: 24px; padding-top: 20px; border-top: 1px solid #d9e0d4; font-size: 12px; color: var(--muted); line-height: 1.7; }
.hero-reassurance strong { color: var(--ink); font-weight: 700; }
.hero-visual { position: relative; min-width: 0; padding-bottom: 35px; }
.hero-image { width: 100%; height: 474px; object-fit: cover; object-position: center; border-radius: 10px 10px 10px 0; background: #dce6db; }
.hero-overlay { position: relative; z-index: 1; width: calc(100% - 35px); margin-top: -139px; margin-left: -22px; padding: 27px 30px 28px; border-radius: 0 9px 9px 9px; background: var(--dark); color: white; box-shadow: 0 15px 38px rgb(10 35 25 / 14%); }
.hero-overlay::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--lime); }
.hero-overlay-label { display: block; margin-bottom: 10px; font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); }
.hero-overlay strong { display: block; font-size: 25px; line-height: 1.2; letter-spacing: -.025em; font-weight: 650; }
.hero-overlay p { margin: 11px 0 0; color: #d4e2d8; font-size: 13px; line-height: 1.65; }
.image-caption { margin: 10px 0 0; font-size: 10px; color: var(--muted); text-align: right; }
.service-rail { display: grid; grid-template-columns: repeat(3, 1fr); padding-block: 0; border-top: 1px solid #cbd8ca; border-bottom: 1px solid #cbd8ca; background: var(--paper); }
.route-link { display: flex; align-items: center; gap: 17px; min-height: 110px; padding: 22px 26px; color: var(--ink); text-decoration: none; }
.route-link:first-child { padding-left: 0; }
.route-link + .route-link { border-left: 1px solid #cbd8ca; }
.route-link:last-child { padding-right: 0; }
.route-link:hover { color: var(--green); background: #edf2e6; }
.route-index { flex-shrink: 0; align-self: flex-start; margin-top: 4px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .035em; }
.route-link strong { display: block; font-size: 17px; line-height: 1.3; letter-spacing: -.02em; }
.route-link small { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.route-arrow { margin-left: auto; padding-left: 6px; color: var(--green); font-size: 24px; line-height: 1; }
.standards-bar { background: white; border-bottom: 1px solid var(--line); }
.standards-bar .wrap { display: flex; align-items: center; gap: 30px; min-height: 96px; padding-block: 24px; }
.standards-bar small { flex: 0 0 140px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.standards-list { display: flex; align-items: center; justify-content: space-between; flex: 1; flex-wrap: wrap; gap: 13px 26px; }
.standards-list span { color: #455e54; font-size: 13px; letter-spacing: .01em; font-weight: 750; white-space: nowrap; }

/* Services and outcomes use typography and line work, not decorative badges. */
.section { padding: 88px 0; }
.section.white { background: white; }
.section.dark { background: var(--dark); color: white; }
.section.dark .eyebrow { color: var(--lime); }
.section.dark p, .section.dark .lead { color: #d2e0d5; }
.section-intro { max-width: 695px; margin-bottom: 39px; }
.section-intro p { color: var(--muted); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 38px; }
.section-heading .section-intro { margin-bottom: 0; }
.section-heading > a { flex-shrink: 0; font-size: 14px; font-weight: 700; padding-block: 10px; }
.section-heading h2 { max-width: 710px; }
.flagship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.flagship { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: 37px 37px 33px; background: #edf3e7; border: 1px solid #d5e1cf; border-radius: 12px; }
.flagship.iso { background: #eef2ef; border-color: #d9e2dd; }
.flagship .service-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 24px; border: 1px solid #bdceba; border-radius: 9px; color: var(--green); }
.service-icon svg { width: 27px; height: 27px; }
.flagship .tag { margin-bottom: 11px; }
.flagship h3 { max-width: 370px; margin-bottom: 17px; font-size: 31px; }
.flagship p { color: var(--muted); font-size: 15px; }
.flagship .checks { margin-bottom: 28px; width: 100%; font-size: 14px; }
.flagship .checks li { padding-top: 8px; padding-bottom: 8px; border-bottom: 1px solid rgb(17 64 38 / 9%); }
.flagship .btn { margin-top: auto; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { display: flex; flex-direction: column; align-items: flex-start; padding: 30px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.card:hover { border-color: #99b09d; }
.card.featured { background: #edf3e7; }
.card .tag { margin-bottom: 22px; }
.card h3 { font-size: 22px; }
.card p { font-size: 14px; color: var(--muted); }
.card > a { display: inline-flex; align-items: center; min-height: 44px; margin-top: auto; padding-top: 6px; font-size: 13px; font-weight: 750; }
.card .number { display: block; margin-bottom: 23px; color: var(--green); font-size: 12px; letter-spacing: .06em; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.experience-card { display: flex; flex-direction: column; padding: 29px 0 0; border-top: 2px solid var(--green); }
.experience-label { display: block; margin-bottom: 21px; color: var(--green); font-size: 10px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.experience-card h3 { font-size: 24px; }
.experience-card p { color: var(--muted); font-size: 14px; }
.experience-result { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 650; }
.section.dark .experience-card { border-color: #8eae89; }
.section.dark .experience-label { color: var(--lime); }
.section.dark .experience-result { color: #eef5e8; border-color: #42645a; }
.two { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 66px; }
.split { display: grid; grid-template-columns: 1.7fr 1fr; align-items: start; gap: 56px; }
.sector-copy h2 { max-width: 520px; }
.sectors { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 27px; }
.pill { padding: 10px 16px; border: 1px solid #719284; border-radius: 5px; color: #eff5e9; font-size: 13px; line-height: 1.6; }
.note { padding: 24px 26px; border-left: 3px solid var(--green); border-radius: 0 8px 8px 0; background: #ecf2e4; font-size: 14px; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 29px; margin-top: 42px; }
.step { position: relative; padding-top: 24px; border-top: 1px solid #bdcdbd; }
.step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 21px; color: var(--green); font-size: 12px; font-weight: 750; }
.step h3 { margin-bottom: 13px; font-size: 20px; }
.step p { font-size: 14px; color: var(--muted); }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; min-height: 68px; padding: 21px 44px 21px 0; cursor: pointer; font-size: 16px; font-weight: 650; line-height: 1.5; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 19px; right: 4px; color: var(--green); font-size: 24px; font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 850px; margin: 0 34px 22px 0; color: var(--muted); font-size: 15px; }
.faq details ul { color: var(--muted); font-size: 15px; padding-left: 20px; }
.cta { display: flex; justify-content: space-between; align-items: center; gap: 38px; padding: 47px 48px; border-radius: 12px; background: var(--dark); color: white; }
.cta > div { max-width: 700px; }
.cta h2 { margin-bottom: 14px; font-size: clamp(29px, 3vw, 37px); }
.cta p { margin: 0; color: #d2e0d5; max-width: 640px; font-size: 15px; }
.cta > .btn { flex-shrink: 0; }
.cta .actions { flex-shrink: 0; margin: 0; }

/* Individual service pages. */
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; font-size: 11px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.pagehero { padding: 36px 0 63px; background: #edf2e6; border-bottom: 1px solid #d6e0ce; }
.pagehero h1 { max-width: 910px; font-size: clamp(39px, 4.4vw, 60px); }
.pagehero .lead { max-width: 755px; }
.service-hero-grid { display: grid; grid-template-columns: 1.6fr 1fr; align-items: center; gap: 65px; }
.service-summary { padding: 27px 30px; border: 1px solid #cbd9c7; border-left: 3px solid var(--green); background: rgb(255 255 255 / 64%); border-radius: 0 9px 9px 0; }
.service-summary h2 { margin-bottom: 17px; font-size: 21px; }
.service-summary h3 { margin-bottom: 17px; font-size: 21px; }
.service-summary p, .service-summary li { font-size: 14px; color: var(--muted); }
.service-summary .checks { margin-bottom: 0; }
.section-menu { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 30px; min-height: 69px; padding-block: 10px; border-bottom: 1px solid var(--line); }
.section-menu a { display: inline-flex; align-items: center; min-height: 44px; color: var(--muted); font-size: 13px; font-weight: 650; text-decoration: none; }
.section-menu a:hover { color: var(--green); text-decoration: underline; }
.aside { position: sticky; top: 116px; padding: 30px; border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: 0 0 10px 10px; background: white; }
.aside h2 { font-size: 26px; }
.aside p, .aside li { color: var(--muted); font-size: 14px; }
.aside .btn { width: 100%; }
.checks { list-style: none; margin: 0 0 26px; padding: 0; }
.checks li { position: relative; padding: 10px 0 10px 26px; }
.checks li::before { position: absolute; left: 0; content: "✓"; color: var(--green); font-weight: 750; }
.article-item { margin-bottom: 32px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.article-item h2 { font-size: 27px; }
.article-item p { color: var(--muted); }
.source-note { margin-top: 35px; font-size: 12px; color: var(--muted); }
.article-date { font-size: 12px; color: var(--muted); }

/* Enquiry form. */
.contact-box { padding: 35px; border: 1px solid var(--line); border-top: 3px solid var(--green); border-radius: 0 0 12px 12px; background: white; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 21px 19px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 12px; font-weight: 750; }
input, select, textarea { width: 100%; min-width: 0; min-height: 49px; padding: 12px 13px; border: 1px solid #9bac9e; border-radius: 5px; background: #fcfdfb; color: var(--ink); font-size: 16px; line-height: 1.5; }
input::placeholder, textarea::placeholder { color: #6b7b70; }
textarea { resize: vertical; min-height: 140px; }
.contact-box button { margin-top: 23px; }
.form-status { margin: 20px 0 0; padding: 16px; border: 1px solid #cbd9c7; border-radius: 7px; background: #edf3e4; font-size: 14px; }
.form-status:empty { display: none; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact-method { display: block; padding: 23px 0; border-bottom: 1px solid var(--line); }
.contact-method strong { display: block; margin-bottom: 8px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.contact-method a { font-size: clamp(17px, 2vw, 24px); font-weight: 650; overflow-wrap: anywhere; }
.person { display: flex; align-items: center; gap: 22px; margin: 25px 0; padding: 27px; border: 1px solid #d8e2d1; border-radius: 10px; background: #edf2e6; }
.monogram { display: grid; place-items: center; flex-shrink: 0; width: 66px; height: 66px; border-radius: 8px; background: var(--dark); color: var(--lime); font-size: 22px; letter-spacing: -.03em; }
.person p { margin: 0; }

/* Site footer and compact mobile enquiry routes. */
.site-footer { padding: 65px 0 25px; background: #082923; color: #cadbce; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 65px; }
.site-footer h2 { color: white; font-size: 28px; }
.site-footer h3 { margin-bottom: 21px; color: var(--lime); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer a { display: inline-block; padding-block: 5px; color: #e1ece2; font-size: 13px; text-decoration: none; }
.site-footer a:hover { color: var(--lime); text-decoration: underline; }
.footer-links { display: grid; gap: 4px; }
.site-footer p { max-width: 400px; font-size: 12px; line-height: 1.85; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px 30px; margin-top: 40px; padding-top: 24px; border-top: 1px solid #36564a; font-size: 11px; }
.footer-bottom a { font-size: 11px; }
.mobile-actions { display: none; }
.legal { max-width: 850px; }
.legal h2 { margin-top: 35px; font-size: 26px; }
.legal p, .legal li { color: var(--muted); }
.legal a { overflow-wrap: anywhere; }

/* Compatibility for prior shared fragments while files are deployed. */
.hero-art { padding: 32px; border-radius: 12px; background: var(--dark); color: white; }
.hero-art .eyebrow { color: var(--lime); }
.art-heading { margin-bottom: 26px; font-size: 29px; line-height: 1.2; letter-spacing: -.025em; }
.route-card { display: flex; align-items: center; gap: 18px; padding: 19px 0; border-top: 1px solid #56776a; }
.route-card span { min-width: 28px; color: var(--lime); font-size: 22px; }
.route-card strong { display: block; font-size: 16px; }
.route-card small { display: block; margin-top: 3px; color: #d4e2d7; font-size: 12px; }
.trust-strip { background: white; border-block: 1px solid var(--line); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding-block: 24px; font-size: 12px; font-weight: 650; }
.trust-strip span::before { content: "✓"; color: var(--green); margin-right: 9px; }

@media (min-width: 1101px) {
  .navlinks .btn { min-height: 47px; padding: 12px 20px; font-size: 13px; }
}
@media (max-width: 1100px) {
  .wrap { width: calc(100% - 48px); }
  .nav { gap: 22px; }
  .navlinks { gap: 20px; }
  .navlinks > a, .navgroup > summary { font-size: 13px; }
  .brand img { width: 60px; height:60px; }
  .hero-grid { gap: 38px; }
  .hero-image { height: 445px; }
  .hero-overlay { margin-left: -14px; padding: 24px; width: calc(100% - 15px); }
  .route-link { gap: 13px; padding-inline: 19px; }
  .route-link strong { font-size: 16px; }
  .standards-bar .wrap { gap: 24px; }
  .standards-list { gap: 12px 21px; }
  .flagship { padding: 30px; }
  .cards { gap: 18px; }
  .card { padding: 25px; }
  .two, .split { gap: 42px; }
  .service-hero-grid { gap: 36px; }
  .footer-grid { gap: 40px; }
}
@media (max-width: 980px) {
  html { scroll-padding-top: 91px; }
  .wrap { width: calc(100% - 40px); }
  .topline .wrap { justify-content: center; min-height: 31px; }
  .topline .wrap > span { display: none; }
  .nav { position: relative; flex-wrap: wrap; min-height: 76px; gap: 0; }
  .brand img { width: 55px; height:55px; }
  .brand-copy strong { font-size:19px; }
  .brand-copy small { font-size:9px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: flex-end; gap: 9px; min-width: 73px; min-height: 44px; padding: 9px 0 9px 13px; font-size: 13px; cursor: pointer; }
  .menu-toggle::after { content: ""; display: block; width: 17px; height: 12px; border-block: 1.5px solid currentColor; }
  .nav-toggle { position: absolute; top: 16px; right: 0; z-index: 2; display: block; width: 78px; height: 44px; margin: 0; opacity: 0; cursor: pointer; }
  .nav-toggle:focus-visible + label { outline: 3px solid #ac7000; outline-offset: 3px; }
  .navlinks { display: none; width: 100%; flex-basis: 100%; align-items: stretch; gap: 2px; max-height: calc(100dvh - 156px); padding: 10px 0 22px; overflow-y: auto; overscroll-behavior: contain; border-top: 1px solid var(--line); }
  .nav-toggle:checked ~ .navlinks { display: flex; flex-direction: column; }
  .navlinks > a:not(.btn), .navgroup > summary { min-height: 48px; padding: 11px 0; font-size: 15px; }
  .navlinks .btn { margin-top: 12px; }
  .dropdown { position: static; width: 100%; grid-template-columns: 1fr 1fr; margin: 0 0 10px; padding: 7px 10px; border: 0; border-left: 2px solid #bdd0b8; border-radius: 0; box-shadow: none; }
  .dropdown a { padding: 9px 10px; font-size: 13px; }
  .hero { padding: 43px 0 35px; }
  .hero::before { width: 34%; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: 640px; }
  .hero-copy h1 { max-width: 630px; font-size: clamp(41px, 6.9vw, 60px); }
  .hero-copy .lead { max-width: 620px; }
  .hero-reassurance { max-width: 600px; }
  .hero-visual { padding-bottom: 10px; }
  .hero-image { height: 340px; object-position: center 50%; }
  .hero-overlay { width: min(465px, calc(100% - 24px)); margin-top: -100px; margin-left: 0; padding: 23px 26px; border-radius: 0 9px 9px 9px; }
  .hero-overlay strong { font-size: 24px; }
  .service-rail { width: calc(100% - 40px); }
  .route-link { min-height: 124px; padding: 21px 15px; gap: 10px; }
  .route-link .route-index { display: none; }
  .route-link strong { font-size: 15px; }
  .route-link small { font-size: 11px; }
  .route-arrow { padding-left: 0; font-size: 20px; }
  .standards-bar .wrap { display: block; padding-block: 23px; }
  .standards-bar small { display: block; margin-bottom: 13px; }
  .standards-list { justify-content: flex-start; gap: 12px 24px; }
  .standards-list span { font-size: 12px; }
  .section { padding: 59px 0; }
  .section-heading { align-items: flex-start; gap: 15px; flex-direction: column; margin-bottom: 28px; }
  .section-heading > a { padding-block: 4px; min-height: 36px; }
  .section-intro { margin-bottom: 30px; }
  .flagship-grid { gap: 18px; }
  .flagship { padding: 26px; }
  .flagship h3 { font-size: 27px; }
  .flagship p, .flagship .checks { font-size: 14px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { gap: 21px; }
  .experience-card h3 { font-size: 22px; }
  .two, .split, .service-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .service-summary { padding: 23px 26px; }
  .service-summary .checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .service-summary .checks li { font-size: 13px; }
  .section-menu { gap: 5px 24px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 29px; margin-top: 31px; }
  .aside { position: static; }
  .cta { display: block; padding: 32px; }
  .cta > .btn, .cta .actions { margin-top: 23px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 31px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .site-footer p { max-width: 560px; }
  .mobile-actions { position: fixed; bottom: 0; left: 0; z-index: 50; display: flex; gap: 10px; width: 100%; padding: 10px 20px; padding-bottom: max(10px, env(safe-area-inset-bottom)); border-top: 1px solid #53766a; background: var(--dark); }
  .mobile-actions a { flex: 1; min-height: 44px; padding: 10px; font-size: 13px; }
  .mobile-actions .btn.outline { color: white !important; border-color: #78988a; }
  .mobile-actions .btn.outline:hover { background: #21483e; }
  .site-footer { padding-bottom: calc(98px + env(safe-area-inset-bottom)); }
  .trust-strip .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
}
@media (max-width: 560px) {
  .wrap { width: calc(100% - 36px); }
  .topline { font-size: 10px; }
  .topline .wrap { gap: 12px; }
  .hero { padding-top: 35px; }
  .hero-copy h1 { font-size: clamp(36px, 9.5vw, 51px); letter-spacing: -.042em; }
  .hero-copy .lead, .lead { font-size: 16px; }
  .hero-grid { gap: 29px; }
  .hero .eyebrow { font-size: 10px; letter-spacing: .11em; }
  .hero-reassurance { font-size: 11px; }
  .hero-image { height: 300px; }
  .hero-overlay { width: calc(100% - 18px); margin-top: -103px; padding: 21px 23px; }
  .hero-overlay strong { font-size: 23px; }
  .hero-overlay p { font-size: 12px; }
  .image-caption { font-size: 9px; }
  .actions { gap: 10px; }
  .actions .btn { flex-grow: 1; padding-inline: 17px; }
  .service-rail { grid-template-columns: 1fr; width: calc(100% - 36px); }
  .route-link, .route-link:first-child, .route-link:last-child { min-height: 91px; padding: 18px 0; gap: 17px; }
  .route-link + .route-link { border-left: 0; border-top: 1px solid #cbd8ca; }
  .route-link .route-index { display: block; }
  .route-link strong { font-size: 17px; }
  .route-link small { font-size: 12px; }
  .route-arrow { margin-right: 3px; font-size: 24px; }
  .standards-list { gap: 10px 20px; }
  .standards-list span { font-size: 11px; }
  .section { padding-block: 48px; }
  h2 { font-size: 32px; }
  .section-heading h2 { margin-bottom: 16px; }
  .flagship-grid, .experience-grid, .cards, .form-grid { grid-template-columns: 1fr; }
  .flagship { padding: 28px 25px; }
  .flagship h3 { font-size: 30px; }
  .flagship .checks { margin-bottom: 25px; }
  .flagship .btn { width: 100%; }
  .card { padding: 27px 25px; }
  .experience-grid { gap: 28px; }
  .experience-card { padding-top: 23px; }
  .experience-label { margin-bottom: 15px; }
  .experience-card h3 { font-size: 25px; }
  .experience-result { padding-top: 14px; }
  .two, .split { gap: 30px; }
  .steps { gap: 25px 21px; }
  .step h3 { font-size: 18px; }
  .step p { font-size: 13px; }
  .pill { padding: 9px 13px; font-size: 12px; }
  .cta { width: calc(100% - 36px); padding: 29px 25px; }
  .cta h2 { font-size: 30px; }
  .cta p { font-size: 14px; }
  .cta > .btn { width: 100%; }
  .pagehero { padding: 26px 0 40px; }
  .breadcrumb { font-size: 10px; margin-bottom: 23px; }
  .pagehero h1 { font-size: clamp(35px, 8.6vw, 45px); }
  .service-summary .checks { display: block; }
  .section-menu { gap: 3px 21px; }
  .section-menu a { font-size: 12px; }
  .aside { padding: 27px 25px; }
  .contact-box { padding: 27px 22px; }
  .field.full { grid-column: auto; }
  .contact-box button { width: 100%; }
  .contact-method a { font-size: 20px; }
  .person { padding: 22px; gap: 17px; }
  .monogram { width: 50px; height: 50px; font-size: 19px; }
  .faq summary { font-size: 15px; }
  .faq details p { font-size: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .site-footer { padding-top: 47px; }
  .site-footer h3 { margin-bottom: 12px; }
  .footer-links { gap: 2px; }
  .site-footer a { padding-block: 8px; }
  .footer-bottom { display: block; margin-top: 26px; padding-top: 20px; }
  .footer-bottom span { display: block; margin-bottom: 10px; }
  .mobile-actions { padding-inline: 16px; }
  .trust-strip .wrap { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .topline .wrap { flex-wrap: wrap; gap: 1px 15px; padding-block: 5px; }
  .dropdown { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 36px; }
  .hero-image { height: 260px; }
  .hero-overlay strong { font-size: 22px; }
  .hero-overlay { padding: 20px; }
  .btn { font-size: 13px; padding-inline: 17px; }
  .steps { grid-template-columns: 1fr; }
  .contact-method a { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media print {
  .topline, .navlinks, .mobile-actions, .menu-toggle, .nav-toggle, .section-menu { display: none !important; }
  .site-header { position: static; }
  .wrap { width: 100%; }
  .section, .pagehero, .hero { padding-block: 24px; }
  .aside { position: static; }
  .site-footer { padding: 25px 0; }
  .faq details > * { display: block; }
}
