/* 1. Reset / Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--color-background); color: var(--color-text); font-family: Tahoma, Verdana, Arial, sans-serif; font-size: 1rem; line-height: 1.7; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
button, select { cursor: pointer; }
button { color: inherit; }
a { color: inherit; text-underline-offset: .25em; }
button, input, select, textarea { border-radius: 0; }
figure, blockquote { margin: 0; }
[hidden] { display: none !important; }

/* 2. Variables — all design colours live here. */
:root {
  color-scheme: light;
  --color-background: #ffffff;
  --color-surface: #f5f9ff;
  --color-surface-raised: #ffffff;
  --color-header: #ffffff;
  --color-text: #1b1f24;
  --color-text-muted: #5f6772;
  --color-border: #dce3ec;
  --color-control-border: #748091;
  --color-accent: #1f6feb;
  --color-accent-hover: #175cbf;
  --color-on-accent: #ffffff;
  --color-accent-soft: #eaf3ff;
  --color-focus: #175cbf;
  --color-placeholder: #eef3f9;
  --color-placeholder-line: #cbd5e1;
  --color-shadow: rgb(16 49 89 / 8%);
  --color-error: #9b302c;
  --page-width: 74rem;
  --page-gutter: clamp(1.25rem, 4.5vw, 4.5rem);
  --section-space: clamp(3.5rem, 7vw, 6.5rem);
  --radius: .65rem;
  --transition: 160ms ease;
}
/* Duplicated only to provide a complete no-JavaScript system-theme fallback. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --color-background: #0f1115; --color-surface: #171b22; --color-surface-raised: #1c2129;
    --color-header: #05070a; --color-text: #f3f6fa; --color-text-muted: #b4bcc8;
    --color-border: #333b48; --color-control-border: #7d899b; --color-accent: #5ea6ff; --color-accent-hover: #83baff;
    --color-on-accent: #07111f; --color-accent-soft: #172a43; --color-focus: #8cc2ff;
    --color-placeholder: #202630; --color-placeholder-line: #3d4755;
    --color-shadow: rgb(0 0 0 / 18%); --color-error: #ffb9b3;
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --color-background: #0f1115; --color-surface: #171b22; --color-surface-raised: #1c2129;
  --color-header: #05070a; --color-text: #f3f6fa; --color-text-muted: #b4bcc8;
  --color-border: #333b48; --color-control-border: #7d899b; --color-accent: #5ea6ff; --color-accent-hover: #83baff;
  --color-on-accent: #07111f; --color-accent-soft: #172a43; --color-focus: #8cc2ff;
  --color-placeholder: #202630; --color-placeholder-line: #3d4755;
  --color-shadow: rgb(0 0 0 / 18%); --color-error: #ffb9b3;
}

/* 3. Typography */
h1, h2, h3, h4, p { margin: 0 0 1rem; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -.045em; text-wrap: balance; overflow-wrap: anywhere; hyphens: auto; }
h1 { font-size: clamp(2.35rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.65rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); letter-spacing: -.025em; }
p { max-width: 67ch; }
p:last-child { margin-bottom: 0; }
ul { padding-left: 1.2rem; }
.eyebrow { display: block; margin-bottom: 1.3rem; font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--color-text-muted); }
.lead { font-size: clamp(1.06rem, 1.65vw, 1.25rem); color: var(--color-text-muted); line-height: 1.65; }
.muted { color: var(--color-text-muted); }
.accent-text { color: var(--color-accent); }
.small { font-size: .875rem; }

/* 4. Layout */
.container { width: min(var(--page-width), calc(100% - var(--page-gutter) * 2)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.section-tinted { background: var(--color-surface); }
.section-border { border-top: 1px solid var(--color-border); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
.section-heading h2 { margin-bottom: .6rem; }
.section-heading p { max-width: 38rem; color: var(--color-text-muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.split > *, .hero-grid > *, .facts > * { min-width: 0; }
.stack > * + * { margin-top: 1.5rem; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.grid-four { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.grid-two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }

/* 5. Components */
.skip-link { position: fixed; z-index: 100; top: .5rem; left: 1rem; transform: translateY(-180%); background: var(--color-accent); color: var(--color-on-accent); padding: .75rem 1.2rem; border-radius: var(--radius); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 5px; }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--color-border); background: var(--color-header); }
.header-inner { min-height: 6.2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; text-decoration: none; flex-shrink: 0; }
/* Original PNGs remain byte-for-byte unchanged. This viewport hides their excess canvas. */
.brand-mark { width: 8.5rem; height: 4.6rem; display: block; overflow: hidden; position: relative; }
.brand-mark img { position: absolute; width: 211%; max-width: none; height: auto; left: -55%; top: -58%; }
.logo-for-dark { display: none; }
:root[data-theme="dark"] .logo-for-light { display: none; }
:root[data-theme="dark"] .logo-for-dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .logo-for-light { display: none; }
  :root:not([data-theme="light"]) .logo-for-dark { display: block; }
}
.header-nav { margin-left: auto; order: 2; }
.nav-list { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1rem, 2vw, 1.75rem); list-style: none; padding: 0; margin: 0; }
.nav-list a { display: inline-flex; align-items: center; min-height: 2.75rem; position: relative; text-decoration: none; font-size: .875rem; color: var(--color-text-muted); }
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--color-text); }
.nav-list a[aria-current="page"]::after { position: absolute; bottom: .05rem; left: 0; right: 0; height: 2px; content: ""; background: var(--color-accent); }
.header-tools { display: flex; align-items: center; gap: 1rem; order: 3; }
.button { display: inline-flex; min-height: 3.1rem; align-items: center; justify-content: center; gap: .8rem; padding: .75rem 1.2rem; font-size: .875rem; font-weight: 700; line-height: 1.4; text-align: center; text-decoration: none; border: 1px solid transparent; border-radius: .35rem; transition: background-color var(--transition), border-color var(--transition), color var(--transition); cursor: pointer; }
.button-primary { background: var(--color-accent); color: var(--color-on-accent); }
.button-primary:hover { background: var(--color-accent-hover); }
.button-secondary { border-color: var(--color-border); background: var(--color-background); color: var(--color-text); }
.button-secondary:hover { background: var(--color-surface); border-color: var(--color-text-muted); }
.button:disabled { cursor: not-allowed; opacity: .65; }
.text-link { display: inline-flex; align-items: center; gap: .7rem; min-height: 2.75rem; font-size: .875rem; font-weight: 700; color: var(--color-accent); text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon-button { display: inline-flex; justify-content: center; align-items: center; gap: .5rem; min-width: 2.75rem; min-height: 2.75rem; padding: .5rem; border: 1px solid var(--color-border); border-radius: .35rem; background: transparent; }
.icon-button:hover { background: var(--color-surface); }
.theme-toggle .sun-icon { display: none; }
:root[data-theme="dark"] .theme-toggle .moon-icon { display: none; }
:root[data-theme="dark"] .theme-toggle .sun-icon { display: block; }
.menu-toggle { display: none; font-size: .875rem; }
.menu-toggle[aria-expanded="true"] .menu-lines { d: path("M6 6l12 12M6 18L18 6"); }
.service-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: 1.65rem; min-height: 19rem; background: var(--color-surface-raised); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: 0 4px 15px var(--color-shadow); }
.service-card.featured { background: var(--color-accent-soft); border-color: var(--color-accent); }
.service-card .icon { width: 1.8rem; height: 1.8rem; color: var(--color-accent); margin: 1.4rem 0 1.75rem; }
.service-card h3 { font-size: 1.09rem; letter-spacing: -.035em; overflow-wrap: anywhere; }
.service-card p { color: var(--color-text-muted); font-size: .9rem; line-height: 1.65; }
.service-card .text-link { margin-top: auto; padding-top: .8rem; }
.service-card .text-link .icon { width: 1rem; height: 1rem; margin: 0; }
.service-number { color: var(--color-text-muted); font-size: .75rem; letter-spacing: .06em; }
.service-tag { position: absolute; top: 1.45rem; right: 1.3rem; font-size: .7rem; color: var(--color-accent); font-weight: 700; }
.check-list { list-style: none; padding: 0; margin: 1.6rem 0; }
.check-list li { display: flex; gap: .8rem; padding-block: .7rem; border-bottom: 1px solid var(--color-border); }
.check-list .icon { margin-top: .2rem; color: var(--color-accent); }
.photo-placeholder { display: grid; place-items: center; min-height: 22rem; height: 100%; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-placeholder); overflow: hidden; position: relative; padding: 2rem; isolation: isolate; }
.photo-placeholder::before, .photo-placeholder::after { content: ""; position: absolute; z-index: -1; border: 1px solid var(--color-placeholder-line); }
.photo-placeholder::before { inset: 1.4rem; }
.photo-placeholder::after { height: 125%; width: 1px; border: 0; background: var(--color-placeholder-line); transform: rotate(35deg); }
.placeholder-label { padding: 1.4rem; text-align: center; background: var(--color-placeholder); }
.placeholder-label .icon { margin: 0 auto 1rem; width: 2.2rem; height: 2.2rem; color: var(--color-text-muted); }
.placeholder-label strong { display: block; font-size: .9rem; font-weight: 400; }
.placeholder-label span { display: block; margin-top: .4rem; font-size: .75rem; color: var(--color-text-muted); }
.content-image { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-surface); }
.section-image { aspect-ratio: 16 / 10; }
.about-image { aspect-ratio: 4 / 3; object-position: center; }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: 2rem; border-top: 1px solid var(--color-border); }
.fact { padding-left: 1.4rem; border-left: 1px solid var(--color-border); }
.fact:first-child { border: 0; padding-left: 0; }
.fact strong { display: block; font-size: .95rem; margin-bottom: .15rem; }
.fact span { font-size: .8rem; color: var(--color-text-muted); }
.detail-panel { padding: clamp(1.5rem, 4vw, 3rem); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); }
.service-overview { padding: 0; overflow: hidden; }
.service-overview-image { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-bottom: 1px solid var(--color-border); }
.service-overview-body { padding: clamp(1.5rem, 4vw, 3rem); }
.object-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; list-style: none; margin: 2.5rem 0 0; padding: 0; }
.object-list li { border-top: 1px solid var(--color-border); padding-top: 1.4rem; }
.object-list .icon { color: var(--color-accent); margin-bottom: 1rem; width: 1.8rem; height: 1.8rem; }
.object-list h3 { font-size: 1rem; }
.object-list p { font-size: .875rem; color: var(--color-text-muted); }
.cta-panel { padding: clamp(2rem, 5vw, 4rem); background: var(--color-accent-soft); border-radius: var(--radius); display: flex; gap: 2rem; align-items: center; justify-content: space-between; }
.cta-panel h2 { font-size: clamp(1.6rem, 2.7vw, 2.3rem); }
.cta-panel p { color: var(--color-text-muted); }
.cta-panel .button { flex-shrink: 0; }
.career-teaser { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 2.8rem; }
.career-teaser h2 { font-size: 1.6rem; }
.site-footer { padding: 3.5rem 0 1.5rem; background: var(--color-header); border-top: 1px solid var(--color-border); }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr .8fr 1.15fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { max-width: 27rem; font-size: .875rem; color: var(--color-text-muted); margin-top: 1rem; }
.footer-title { font-size: .875rem; letter-spacing: 0; margin: .8rem 0 1rem; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links a { display: inline-block; font-size: .875rem; text-decoration: none; padding: .35rem 0; color: var(--color-text-muted); }
.footer-links a:hover { color: var(--color-text); text-decoration: underline; }
.footer-contact { font-style: normal; font-size: .8rem; line-height: 1.75; color: var(--color-text-muted); overflow-wrap: anywhere; }
.footer-contact a { color: inherit; text-decoration: none; }
.footer-contact a:hover { color: var(--color-text); text-decoration: underline; }
.footer-bottom { border-top: 1px solid var(--color-border); padding-top: 1.3rem; display: flex; justify-content: space-between; gap: 1rem; color: var(--color-text-muted); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { text-decoration: none; padding-block: .5rem; }
.footer-legal a:hover { text-decoration: underline; }

/* 6. Pages */
.home-hero { padding: clamp(3rem, 6vw, 5rem) 0 2.5rem; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5.5vw, 5.5rem); align-items: center; }
.hero-copy { padding-block: 1.5rem; }
.hero-copy h1 { margin-bottom: 1.5rem; }
.hero-copy .lead { max-width: 30rem; }
.hero-services { font-size: .85rem; color: var(--color-text-muted); display: flex; flex-wrap: wrap; column-gap: 1.1rem; row-gap: .25rem; list-style: none; padding: 0; margin: 1.5rem 0 0; }
.hero-services li { position: relative; }
.hero-media { position: relative; align-self: stretch; min-height: 25rem; padding-bottom: 1.5rem; }
.hero-media .photo-placeholder { border-radius: .65rem .65rem 3rem .65rem; min-height: 25rem; }
.hero-image { min-height: 25rem; border-radius: .65rem .65rem 3rem .65rem; object-position: center; }
.hero-note { position: absolute; bottom: 0; left: -1rem; right: 3rem; display: flex; align-items: center; gap: .8rem; padding: 1.1rem 1.5rem; border-radius: .4rem; background: var(--color-surface-raised); border: 1px solid var(--color-border); box-shadow: 0 8px 25px var(--color-shadow); font-size: .8rem; }
.hero-note .icon { color: var(--color-accent); }
.page-intro { padding: clamp(2.5rem, 5vw, 4.5rem) 0 3rem; }
.page-intro .lead { max-width: 46rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; font-size: .8rem; color: var(--color-text-muted); margin-bottom: 2.8rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.service-index { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.service-index a { text-decoration: none; border: 1px solid var(--color-border); padding: .6rem 1rem; border-radius: .35rem; font-size: .875rem; }
.service-index a:hover { background: var(--color-accent-soft); }
.service-detail { padding-block: 3.8rem; border-top: 1px solid var(--color-border); }
.service-detail .split { align-items: start; }
.service-detail .check-list { margin-top: 0; }
.detail-label { display: inline-flex; gap: 1rem; align-items: center; margin-bottom: 1.2rem; color: var(--color-accent); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.value-card { padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.value-card .icon { margin-bottom: 1rem; color: var(--color-accent); }
.value-card h3 { font-size: 1.15rem; }
.value-card p { color: var(--color-text-muted); font-size: .9375rem; }
.contact-layout { display: grid; grid-template-columns: .78fr 1.3fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.contact-details { margin: 2rem 0; }
.contact-details > div { border-top: 1px solid var(--color-border); padding-block: 1.2rem; }
.contact-details dt { font-weight: 700; font-size: .875rem; margin-bottom: .4rem; }
.contact-details dd { margin: 0; font-size: .875rem; color: var(--color-text-muted); }
.contact-details address { font-style: normal; }
.contact-details a { color: inherit; }
.form-panel { padding: clamp(1.3rem, 3vw, 2.5rem); border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-surface-raised); }
.form-panel h2 { font-size: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.field { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.field label { font-size: .875rem; font-weight: 700; }
.field-full { grid-column: 1 / -1; }
input:not([type="checkbox"]), select, textarea { width: 100%; min-width: 0; min-height: 3rem; padding: .7rem .85rem; border: 1px solid var(--color-control-border); border-radius: .3rem; background: var(--color-background); color: var(--color-text); font-size: 1rem; }
textarea { resize: vertical; min-height: 9rem; }
input:hover, select:hover, textarea:hover { border-color: var(--color-text-muted); }
.checkbox-label { display: flex; align-items: start; gap: .7rem; font-size: .875rem; }
input[type="checkbox"] { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin: .25rem 0 0; accent-color: var(--color-accent); }
.form-notice { border-left: 3px solid var(--color-accent); background: var(--color-surface); padding: .8rem 1rem; margin-bottom: 1.8rem; font-size: .875rem; color: var(--color-text-muted); }
.form-feedback { margin-top: 1.25rem; background: var(--color-accent-soft); border-radius: .3rem; padding: 1rem; font-size: .875rem; }
.legal-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(2rem, 5vw, 5rem); padding-bottom: var(--section-space); }
.legal-nav { align-self: start; padding: 1.5rem; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-surface); }
.legal-nav a { display: block; padding: .6rem 0; font-size: .875rem; }
.legal-content section { padding: 2rem 0; border-bottom: 1px solid var(--color-border); }
.legal-content h2 { font-size: 1.4rem; }
.legal-placeholder { border: 1px dashed var(--color-border); border-radius: .3rem; padding: 1.2rem; color: var(--color-text-muted); font-size: .9375rem; }

/* 7. Responsive — breakpoints follow content and navigation width. */
@media (max-width: 68rem) {
  .header-inner { gap: 1rem; }
  .header-tools { gap: .65rem; }
  .nav-list { gap: 1rem; }
  .header-offer { padding-inline: .85rem; }
  .grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 17rem; }
  .hero-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 57rem) {
  .header-inner { min-height: 5.3rem; flex-wrap: wrap; padding-block: .4rem; }
  .brand-mark { width: 7.3rem; height: 3.95rem; }
  .header-tools { margin-left: auto; order: 2; }
  .header-offer { display: none; }
  .header-nav { order: 3; width: 100%; margin: 0; padding-bottom: .5rem; }
  .js .header-nav:not(.is-open) { display: none; }
  .js .menu-toggle { display: inline-flex; }
  .nav-list { display: grid; gap: .1rem; }
  .nav-list a { min-height: 2.9rem; padding-inline: .6rem; }
  .nav-list a[aria-current="page"] { background: var(--color-accent-soft); border-radius: .3rem; }
  .nav-list a[aria-current="page"]::after { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .hero-copy h1 { font-size: clamp(2.2rem, 5.4vw, 3.5rem); }
  .hero-media, .hero-media .photo-placeholder, .hero-image { min-height: 24rem; }
  .hero-note { left: -.5rem; right: 1rem; padding: .9rem; }
  .split { gap: 2.5rem; }
  .object-list { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: .8fr 1.2fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 43rem) {
  html { scroll-padding-top: 6rem; }
  .home-hero { padding-top: 1.8rem; }
  .hero-grid, .split, .contact-layout, .legal-layout { grid-template-columns: 1fr; }
  .hero-copy { padding-block: .6rem; }
  .hero-copy h1 { font-size: clamp(2.5rem, 9.5vw, 3.8rem); }
  .hero-copy .lead { max-width: 32rem; }
  .hero-media, .hero-media .photo-placeholder, .hero-image { min-height: 18rem; }
  .hero-media { margin-top: .5rem; }
  .hero-note { left: .75rem; right: .75rem; }
  .facts { grid-template-columns: repeat(2, 1fr); row-gap: 1.7rem; }
  .fact:nth-child(3) { border-left: 0; padding-left: 0; }
  .section-heading { display: block; margin-bottom: 2rem; }
  .section-heading .text-link { margin-top: .5rem; }
  .grid-two { grid-template-columns: 1fr; }
  .photo-placeholder { min-height: 17rem; }
  .cta-panel, .career-teaser { align-items: start; flex-direction: column; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .service-detail { padding-block: 2.75rem; }
  .breadcrumbs { margin-bottom: 2rem; }
  .legal-nav { display: none; }
}
@media (max-width: 29rem) {
  .grid-four, .values-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card .icon { margin-block: 1rem; }
  .actions { flex-direction: column; align-items: stretch; }
  .object-list { gap: 1rem; }
  .object-list h3 { overflow-wrap: anywhere; }
  .hero-services { font-size: .8rem; }
  .fact strong { font-size: .85rem; }
  .fact span { font-size: .75rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media print {
  .site-header, .site-footer, .actions, .theme-toggle, .menu-toggle, .photo-placeholder, .hero-note { display: none; }
  body { background: white; color: black; }
  .container { width: 100%; }
  .section { padding-block: 1rem; }
  .hero-grid, .split, .contact-layout { display: block; }
}

/* 8. Utilities */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.no-bottom-space { padding-bottom: 0; }
.max-reading { max-width: 47rem; }
.space-top { margin-top: 2rem; }
