@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/lato-300.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/lato-400.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/lato-700.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("fonts/lato-900.woff2") format("woff2");
}
:root {
  --ink: #152526;
  --muted: #556666;
  --line: #d3dedb;
  --paper: #f7f9f8;
  --pale: #e8f0ee;
  --teal: #15534f;
  --teal-dark: #0d3d3a;
  --steel: #627f89;
  --mist: #afc7c1;
  --white: #ffffff;
  --warning-bg: #fff7e2;
  --warning-border: #bd8522;
  --max: 1280px;
  --header-height: 88px;
}
* { box-sizing: border-box; }
html { color: var(--ink); font-family: "Lato", Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.55; scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { background: var(--white); margin: 0; overflow-x: hidden; }
body.overlay-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 400; letter-spacing: 0; }
h1 { font-size: 64px; line-height: 1.02; margin-bottom: 24px; }
h2 { font-size: 46px; line-height: 1.12; margin-bottom: 24px; }
h3 { font-size: 32px; line-height: 1.18; margin-bottom: 18px; }
p { color: var(--muted); }
:focus-visible { outline: 3px solid var(--mist); outline-offset: 4px; }
.skip-link { background: var(--white); left: 20px; padding: 10px 14px; position: fixed; top: -80px; z-index: 300; }
.skip-link:focus { top: 12px; }
.section-shell { margin: 0 auto; max-width: var(--max); padding-left: 40px; padding-right: 40px; }
.eyebrow { color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: .12em; margin: 0 0 18px; text-transform: uppercase; }
.eyebrow.light { color: var(--white); }
.button { align-items: center; border: 1px solid var(--teal); border-radius: 0; display: inline-flex; font-size: 15px; font-weight: 700; gap: 30px; justify-content: space-between; min-height: 54px; padding: 14px 18px; text-decoration: none; transition: background-color .2s ease, color .2s ease; }
.button.primary { background: var(--teal); color: var(--white); }
.button.primary:hover { background: var(--teal-dark); }
.button.light { border-color: rgba(255,255,255,.72); color: var(--white); }
.button.light:hover { background: var(--white); color: var(--teal-dark); }
.text-link { align-items: center; display: inline-flex; font-size: 14px; font-weight: 700; gap: 16px; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header { align-items: center; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(21,83,79,.14); display: flex; height: var(--header-height); justify-content: space-between; left: 0; padding: 0 max(28px, calc((100vw - var(--max)) / 2)); position: fixed; right: 0; top: 0; transition: box-shadow .2s ease, height .2s ease; z-index: 100; }
.site-header.scrolled { box-shadow: 0 8px 28px rgba(13,61,58,.08); height: 76px; }
.brand { align-items: center; display: flex; gap: 20px; min-width: 0; text-decoration: none; }
.brand img { display: block; height: 48px; object-fit: contain; width: 146px; }
.brand > span { color: var(--teal-dark); font-size: 18px; font-weight: 700; line-height: 1.12; }
.header-actions, .language-switch { align-items: center; display: flex; }
.header-actions { gap: 8px; }
.language-switch { gap: 7px; white-space: nowrap; }
.language-switch a { color: var(--muted); font-size: 12px; font-weight: 700; text-decoration: none; }
.language-switch a.active, .language-switch a:hover { color: var(--teal); }
.language-switch span { color: var(--line); }
.header-language { border-right: 1px solid var(--line); margin-right: 6px; padding-right: 14px; }
.header-action { align-items: center; background: transparent; border: 0; color: var(--ink); cursor: pointer; display: inline-flex; font-size: 13px; gap: 12px; min-height: 44px; padding: 8px 12px; }
.header-action:hover { color: var(--teal); }
.contact-toggle { border-right: 1px solid var(--line); padding-right: 20px; }
.menu-icon { display: grid; gap: 5px; width: 24px; }
.menu-icon i { background: currentColor; display: block; height: 1px; transform-origin: center; transition: transform .2s ease; width: 24px; }
.menu-toggle[aria-expanded="true"] .menu-icon { gap: 0; }
.menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: rotate(-45deg); }

.menu-overlay { background: var(--teal); color: var(--white); inset: 0; opacity: 0; overflow-y: auto; pointer-events: none; position: fixed; transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease; visibility: hidden; z-index: 80; }
.menu-overlay.open { opacity: 1; pointer-events: auto; transform: none; visibility: visible; }
.menu-inner { display: grid; grid-template-columns: 1fr 1.8fr; margin: 0 auto; max-width: var(--max); min-height: 100%; padding: 148px 40px 44px; }
.menu-kicker { color: var(--mist); font-size: 13px; margin: 10px 0; max-width: 210px; }
.overlay-nav { border-top: 1px solid rgba(255,255,255,.28); }
.overlay-nav a { align-items: center; border-bottom: 1px solid rgba(255,255,255,.28); display: grid; grid-template-columns: 50px 1fr auto; min-height: 92px; text-decoration: none; }
.overlay-nav a > span { color: var(--mist); font-size: 12px; }
.overlay-nav strong { font-size: 40px; font-weight: 300; }
.overlay-nav i { font-size: 25px; font-style: normal; transition: transform .2s ease; }
.overlay-nav a:hover i { transform: translateX(5px); }
.overlay-nav a.active strong { font-weight: 700; }
.menu-meta, .menu-legal { align-items: center; display: flex; grid-column: 2; }
.menu-meta { gap: 32px; justify-content: space-between; margin-top: 48px; }
.menu-meta .language-switch a { color: var(--white); }
.menu-meta > a { align-items: center; display: flex; font-weight: 700; gap: 16px; text-decoration: none; }
.menu-legal { border-top: 1px solid rgba(255,255,255,.28); color: var(--mist); font-size: 12px; gap: 24px; justify-content: flex-end; margin-top: 42px; padding-top: 22px; }
.menu-legal a { text-decoration: none; }

.drawer-backdrop { background: rgba(10,27,28,.54); border: 0; inset: 0; opacity: 0; pointer-events: none; position: fixed; transition: opacity .25s ease; visibility: hidden; z-index: 110; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; visibility: visible; }
.contact-drawer { background: var(--steel); color: var(--white); display: flex; flex-direction: column; height: 100%; max-width: 560px; overflow-y: auto; padding: 104px 56px 54px; position: fixed; right: 0; top: 0; transform: translateX(100%); transition: transform .3s ease; width: 42vw; z-index: 120; }
.contact-drawer.open { transform: none; }
.contact-drawer h2 { color: var(--white); font-size: 42px; }
.contact-drawer > p:not(.eyebrow) { color: rgba(255,255,255,.82); font-size: 17px; }
.drawer-close { align-items: center; background: transparent; border: 1px solid rgba(255,255,255,.45); color: var(--white); cursor: pointer; display: flex; font-size: 28px; height: 44px; justify-content: center; position: absolute; right: 28px; top: 28px; width: 44px; }
.contact-drawer dl { margin: 28px 0 34px; }
.contact-drawer dl div { border-top: 1px solid rgba(255,255,255,.35); padding: 16px 0; }
.contact-drawer dl div:last-child { border-bottom: 1px solid rgba(255,255,255,.35); }
.contact-drawer dt { font-size: 12px; text-transform: uppercase; }
.contact-drawer dd { color: var(--white); margin: 4px 0 0; overflow-wrap: anywhere; }
.contact-drawer .button { margin-top: auto; }

.home-hero { min-height: 760px; min-height: 100svh; overflow: hidden; position: relative; }
.home-hero-media { filter: saturate(.82) contrast(.96); height: 100%; inset: 0; object-fit: cover; object-position: center 42%; position: absolute; width: 100%; }
.home-hero-overlay { background: rgba(13,61,58,.88); bottom: 0; height: 56%; left: 0; position: absolute; right: 0; }
.home-hero-content { bottom: 64px; color: var(--white); left: max(40px, calc((100vw - var(--max)) / 2)); max-width: min(1120px, calc(100vw - 80px)); position: absolute; z-index: 1; }
.home-hero h1 { color: var(--white); font-size: 76px; margin-bottom: 20px; max-width: 990px; }
.home-hero .subheadline { color: rgba(255,255,255,.9); font-size: 17px; font-weight: 700; margin-bottom: 30px; max-width: 1050px; }
.metrics-band { background: var(--white); border-bottom: 1px solid var(--line); }
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); margin: 0 auto; max-width: var(--max); padding: 0 40px; }
.metrics-grid div { border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; min-height: 188px; padding: 38px 30px 30px; }
.metrics-grid div:last-child { border-right: 1px solid var(--line); }
.metrics-grid strong { color: var(--teal); font-size: 42px; font-weight: 400; line-height: 1; }
.metrics-grid span { color: var(--muted); font-size: 13px; max-width: 150px; }
.editorial-intro { display: grid; gap: 90px; grid-template-columns: 1.1fr .9fr; padding-bottom: 126px; padding-top: 126px; }
.section-heading h2 { max-width: 690px; }
.editorial-copy { border-top: 1px solid var(--line); padding-top: 24px; }
.editorial-copy p { font-size: 17px; }
.editorial-copy p:last-child { margin-bottom: 0; }

.services-showcase { background: var(--pale); overflow: hidden; padding: 104px 0 96px; }
.section-heading-row { align-items: end; display: flex; justify-content: space-between; }
.section-heading-row h2 { margin-bottom: 0; max-width: 720px; }
.carousel { margin-top: 52px; }
.carousel-track { display: flex; gap: 20px; overflow-x: auto; padding: 0 max(40px, calc((100vw - var(--max)) / 2)) 18px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.service-slide { background: var(--white); border: 1px solid rgba(21,83,79,.12); border-radius: 4px; display: grid; flex: 0 0 min(44vw, 580px); gap: 30px; grid-template-columns: 58px 1fr; min-height: 360px; padding: 42px; scroll-snap-align: start; }
.service-slide:nth-child(even) { background: var(--steel); border-color: var(--steel); color: var(--white); }
.service-slide:nth-child(even) p { color: rgba(255,255,255,.82); }
.service-slide:nth-child(even) .text-link { color: var(--white); }
.service-slide-number { color: var(--mist); font-size: 18px; font-weight: 700; }
.service-slide h3 { font-size: 38px; max-width: 680px; }
.service-slide p { font-size: 17px; max-width: 620px; }
.service-slide .text-link { color: var(--teal); margin-top: 24px; }
.carousel-controls { align-items: center; display: flex; gap: 18px; justify-content: flex-end; margin: 22px auto 0; max-width: var(--max); padding: 0 40px; }
.carousel-controls button { align-items: center; background: transparent; border: 1px solid var(--teal); color: var(--teal); cursor: pointer; display: flex; height: 48px; justify-content: center; width: 48px; }
.carousel-controls button:hover { background: var(--teal); color: var(--white); }
.carousel-controls button:disabled { cursor: default; opacity: .35; }
.carousel-status { color: var(--muted); font-size: 13px; min-width: 58px; text-align: center; }
.carousel-status strong { color: var(--teal); }

.project-settings { background: var(--steel); color: var(--white); padding: 116px 0; }
.project-settings h2 { color: var(--white); max-width: 850px; }
.project-setting-list { border-top: 1px solid rgba(255,255,255,.4); margin-top: 58px; }
.project-setting-list span { border-bottom: 1px solid rgba(255,255,255,.4); display: block; font-size: 26px; font-weight: 300; padding: 20px 0; }
.pathways { padding-bottom: 126px; padding-top: 126px; }
.pathways > h2 { max-width: 1040px; }
.pathway-links { border-top: 1px solid var(--line); margin-top: 68px; }
.pathway-links a { align-items: center; border-bottom: 1px solid var(--line); display: flex; font-size: 24px; justify-content: space-between; padding: 22px 0; text-decoration: none; }
.pathway-links a span:last-child { transition: transform .2s ease; }
.pathway-links a:hover span:last-child { transform: translateX(5px); }

.inner-page main { padding-top: var(--header-height); }
.page-intro { background: var(--teal); color: var(--white); margin: 0; max-width: none; min-height: 580px; overflow: hidden; padding: 168px max(40px, calc((100vw - var(--max)) / 2)) 76px; position: relative; }
.page-intro::after { background-image: url("clinical-operations-workspace.png"); background-position: center; background-size: cover; bottom: 0; content: ""; opacity: .88; position: absolute; right: 0; top: 0; width: 42%; }
.page-intro.intro-documentation::after { background-image: url("images/clinical-documentation-illustration.webp"); background-position: 56% center; filter: saturate(.72) contrast(.96); }
.page-intro.intro-operations::after { background-image: url("images/operations-data-review.webp"); background-position: 58% center; filter: saturate(.72) contrast(.94); }
.page-intro.intro-laboratory::after { background-image: url("images/clinical-research-laboratory.webp"); background-position: 42% center; filter: saturate(.76) contrast(.94); }
.page-intro > * { max-width: 52%; position: relative; z-index: 1; }
.page-intro h1 { color: var(--white); font-size: 58px; }
.page-intro p:not(.eyebrow) { color: rgba(255,255,255,.82); font-size: 18px; max-width: 650px; }
.service-overview { margin: 0 auto; max-width: var(--max); padding: 100px 40px 120px; }
.service-list { border-top: 1px solid var(--line); }
.service-list-link { align-items: center; border-bottom: 1px solid var(--line); display: grid; gap: 22px; grid-template-columns: 60px 1fr auto 34px; min-height: 112px; padding: 20px 6px; text-decoration: none; transition: background-color .2s ease, padding .2s ease; }
.service-list-link:hover { background: var(--pale); padding-left: 18px; padding-right: 18px; }
.service-number { color: var(--steel); font-size: 12px; }
.service-name { font-size: 27px; font-weight: 400; }
.service-list-link small { color: var(--muted); font-size: 13px; }
.service-arrow { color: var(--teal); font-size: 22px; }
.service-detail { display: grid; gap: 0 64px; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 0 auto; max-width: var(--max); padding: 104px 40px 128px; }
.service-detail article { border-top: 1px solid var(--line); padding: 30px 0 56px; }
.service-detail article h2 { font-size: 28px; }
.service-detail ul, .facts-panel ul { margin: 0; padding-left: 19px; }
.service-detail li, .facts-panel li { color: var(--muted); margin-bottom: 9px; }
.service-detail > .button { grid-column: 1 / -1; justify-self: start; }
.related-links { display: flex; flex-direction: column; }
.related-links a { align-items: center; border-bottom: 1px solid var(--line); color: var(--teal); display: grid; gap: 16px; grid-template-columns: 38px minmax(0,1fr) auto; padding: 15px 0; text-decoration: none; }
.related-links a > span { color: var(--muted); font-size: 13px; font-weight: 700; }
.related-links a > strong { font-weight: 700; }
.related-links a::after { content: "\2192"; }
.profile-layout { display: grid; gap: 80px; grid-template-columns: 1.15fr .85fr; margin: 0 auto; max-width: var(--max); padding: 112px 40px 128px; }
.profile-text { border-top: 1px solid var(--line); padding-top: 30px; }
.profile-text p { font-size: 19px; }
.facts-panel { background: var(--pale); border-radius: 4px; padding: 36px; }
.facts-panel h2 { font-size: 25px; }
.facts-panel h2:not(:first-child) { border-top: 1px solid rgba(21,83,79,.22); margin-top: 30px; padding-top: 28px; }
.contact-panel { align-items: start; background: var(--paper); display: grid; gap: 72px; grid-template-columns: minmax(260px,.7fr) minmax(0,1.3fr); margin: 0 auto; max-width: var(--max); padding: 88px 40px 120px; }
.contact-list { width: 100%; }
.contact-list div, .placeholder-list div { border-bottom: 1px solid var(--line); padding: 18px 0; }
.contact-list div:first-child, .placeholder-list div:first-child { border-top: 1px solid var(--line); }
.contact-form-wrap { background: var(--white); border-top: 4px solid var(--teal); padding: 38px; }
.contact-form-wrap h2 { font-size: 34px; margin-bottom: 34px; }
.form-grid { display: grid; gap: 22px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.contact-form label { color: var(--ink); display: grid; font-size: 13px; font-weight: 700; gap: 8px; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { background: var(--paper); border: 1px solid var(--line); border-radius: 0; color: var(--ink); min-height: 50px; padding: 12px 14px; width: 100%; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal); outline: 2px solid var(--pale); outline-offset: 0; }
.form-wide { grid-column: 1 / -1; }
.form-confirm { align-items: start; display: grid !important; gap: 12px !important; grid-template-columns: 20px 1fr; margin: 24px 0; }
.form-confirm input { height: 18px; margin: 2px 0 0; width: 18px; }
.form-confirm span { color: var(--muted); font-size: 12px; font-weight: 400; line-height: 1.5; }
.form-confirm a { color: var(--teal); font-weight: 700; }
.honeypot-field { height: 1px !important; left: -10000px !important; overflow: hidden !important; position: absolute !important; width: 1px !important; }
.contact-form .button { cursor: pointer; }
.contact-form .button:disabled { cursor: wait; opacity: .65; }
.form-note, .form-status { font-size: 12px; margin: 14px 0 0; }
.form-status { color: var(--teal); font-weight: 700; min-height: 19px; }
.form-status.error { color: #8b2e2e; }
dt { font-size: 13px; font-weight: 700; }
dd { color: var(--muted); margin: 5px 0 0; overflow-wrap: anywhere; }
.legal-page { margin: 0 auto; max-width: 900px; min-height: 65vh; padding: 164px 40px 120px; }
.legal-page h1 { font-size: 58px; }
.legal-page > p:not(.warning) { font-size: 18px; }
.legal-page.privacy-content { max-width: 1000px; }
.legal-intro { color: var(--steel); font-size: 16px !important; font-weight: 700; }
.legal-sections { margin-top: 52px; }
.legal-sections section { border-top: 1px solid var(--line); padding: 32px 0 38px; }
.legal-sections section:last-child { border-bottom: 1px solid var(--line); }
.legal-sections h2 { font-size: 27px; margin-bottom: 18px; }
.legal-sections p, .legal-sections address { color: var(--muted); font-size: 17px; }
.legal-sections address { font-style: normal; }
.legal-sections a { color: var(--teal); font-weight: 700; overflow-wrap: anywhere; }
.legal-note { background: var(--pale); border-left: 4px solid var(--steel); color: var(--ink) !important; font-size: 15px !important; margin-top: 40px; padding: 18px 20px; }
.warning { background: var(--warning-bg); border-left: 4px solid var(--warning-border); color: var(--ink); font-weight: 700; padding: 14px 18px; }

.footer-cta { align-items: end; background: var(--teal-dark); color: var(--white); display: flex; gap: 50px; justify-content: space-between; padding: 96px max(40px, calc((100vw - var(--max)) / 2)); }
.footer-cta h2 { color: var(--white); margin: 0; max-width: 780px; }
.footer-cta .button { flex: 0 0 auto; }
.site-footer { background: var(--white); border-top: 1px solid var(--line); color: var(--muted); padding: 48px max(40px, calc((100vw - var(--max)) / 2)) 32px; }
.footer-brand { align-items: center; display: flex; gap: 18px; }
.footer-brand img { height: 64px; width: 64px; }
.footer-brand p { margin: 0; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: var(--teal); }
.footer-brand span { font-size: 13px; }
.footer-meta { align-items: center; border-top: 1px solid var(--line); display: flex; font-size: 12px; gap: 24px; justify-content: space-between; margin-top: 34px; padding-top: 22px; }
.footer-meta p { margin: 0; }
.footer-meta nav { display: flex; gap: 20px; }
.footer-meta a { text-decoration: none; }
.footer-meta a:hover { color: var(--teal); }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
@media (max-width: 1040px) {
  h1 { font-size: 54px; }
  h2 { font-size: 40px; }
  .home-hero h1 { font-size: 60px; }
  .home-hero-overlay { height: 60%; }
  .editorial-intro { gap: 54px; }
  .service-slide { flex-basis: min(72vw, 580px); }
  .contact-drawer { width: 54vw; }
}
@media (max-width: 820px) {
  :root { --header-height: 76px; }
  .section-shell { padding-left: 24px; padding-right: 24px; }
  .site-header { height: var(--header-height); padding: 0 22px; }
  .site-header.scrolled { height: 68px; }
  .brand img { height: 40px; width: 114px; }
  .brand > span { display: none; }
  .contact-toggle { display: none; }
  .menu-inner { display: block; padding: 112px 24px 36px; }
  .menu-kicker { margin-bottom: 30px; }
  .overlay-nav a { min-height: 74px; }
  .overlay-nav strong { font-size: 32px; }
  .menu-meta, .menu-legal { grid-column: auto; }
  .contact-drawer { max-width: none; padding: 92px 32px 42px; width: min(100%, 520px); }
  .home-hero { min-height: 760px; }
  .home-hero-overlay { height: 67%; }
  .home-hero-content { bottom: 46px; left: 24px; max-width: calc(100vw - 48px); }
  .home-hero h1 { font-size: 48px; }
  .home-hero .subheadline { font-size: 16px; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); padding: 0 24px; }
  .metrics-grid div { min-height: 158px; }
  .metrics-grid div:nth-child(2) { border-right: 1px solid var(--line); }
  .editorial-intro { gap: 30px; grid-template-columns: 1fr; padding-bottom: 90px; padding-top: 90px; }
  .services-showcase { padding: 80px 0; }
  .section-heading-row { align-items: start; flex-direction: column; gap: 26px; }
  .carousel-track { padding-left: 24px; padding-right: 24px; }
  .service-slide { flex-basis: calc(100vw - 48px); gap: 28px; grid-template-columns: 60px 1fr; min-height: 340px; padding: 38px; }
  .service-slide h3 { font-size: 34px; }
  .carousel-controls { padding: 0 24px; }
  .project-settings, .pathways { padding-bottom: 90px; padding-top: 90px; }
  .project-setting-list span { font-size: 22px; }
  .page-intro { min-height: 720px; padding: 420px 24px 64px; }
  .page-intro::after { bottom: auto; height: 360px; left: 0; right: 0; top: 0; width: 100%; }
  .page-intro > * { max-width: 100%; }
  .page-intro h1 { font-size: 48px; }
  .service-overview, .service-detail, .profile-layout, .contact-panel { padding-left: 24px; padding-right: 24px; }
  .service-list-link { grid-template-columns: 46px 1fr 28px; }
  .service-list-link small { display: none; }
  .service-detail, .profile-layout, .contact-panel { grid-template-columns: 1fr; }
  .profile-layout, .contact-panel { gap: 44px; }
  .footer-cta { align-items: flex-start; flex-direction: column; padding: 76px 24px; }
  .site-footer { padding: 40px 24px 28px; }
}
@media (max-width: 560px) {
  h1 { font-size: 40px; }
  h2 { font-size: 34px; }
  h3 { font-size: 28px; }
  .header-language { margin-right: 0; padding-right: 10px; }
  .menu-toggle > span:last-child { display: none; }
  .header-action { padding-left: 8px; padding-right: 8px; }
  .home-hero { min-height: 700px; }
  .home-hero-media { object-position: 45% center; }
  .home-hero-overlay { height: 72%; }
  .home-hero h1 { font-size: 40px; }
  .home-hero .subheadline { font-size: 15px; }
  .metrics-grid div { min-height: 146px; padding: 28px 18px 22px; }
  .metrics-grid strong { font-size: 34px; }
  .metrics-grid span { font-size: 12px; }
  .desktop-link { display: none; }
  .carousel-track { display: grid; gap: 16px; overflow: visible; padding: 0 24px; scroll-snap-type: none; }
  .service-slide { display: block; flex-basis: auto; min-height: 0; padding: 30px; scroll-snap-align: none; }
  .service-slide-number { margin-bottom: 24px; }
  .service-slide h3 { font-size: 30px; overflow-wrap: anywhere; }
  .carousel-controls { display: none; }
  .project-setting-list span { font-size: 19px; }
  .page-intro { min-height: 660px; padding-top: 350px; }
  .page-intro::after { height: 300px; }
  .page-intro h1 { font-size: 40px; overflow-wrap: anywhere; }
  .service-overview { padding-bottom: 88px; padding-top: 72px; }
  .service-list-link { gap: 14px; grid-template-columns: 36px 1fr 24px; min-height: 96px; }
  .service-name { font-size: 21px; overflow-wrap: anywhere; }
  .service-detail { padding-bottom: 90px; padding-top: 72px; }
  .profile-layout, .contact-panel { padding-bottom: 90px; padding-top: 72px; }
  .contact-form-wrap { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .facts-panel { padding: 28px; }
  .legal-page { padding: 130px 24px 90px; }
  .legal-page h1 { font-size: 34px; }
  .footer-cta h2 { font-size: 34px; }
  .footer-brand img { height: 52px; width: 52px; }
  .footer-meta { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
