:root {
  --ink: #245561;
  --ink-deep: #173f49;
  --ink-dark: #0f333b;
  --teal: #9bd9d4;
  --teal-strong: #71c5c0;
  --teal-soft: #edf8f7;
  --blue: #119bd7;
  --blue-dark: #0878aa;
  --blue-deep: #066b97;
  --grey: #617277;
  --muted: #8a999c;
  --line: #dbe8e7;
  --paper: #ffffff;
  --off-white: #f7faf9;
  --shadow-sm: 0 8px 24px rgba(20, 62, 72, 0.08);
  --shadow: 0 22px 55px rgba(20, 62, 72, 0.13);
  --radius: 20px;
  --radius-lg: 30px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink-deep);
  background: var(--paper);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
button, input, textarea { font: inherit; }
::selection { background: var(--teal); color: var(--ink-dark); }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 850px); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 58px 0; }
.bg-soft { background: var(--off-white); }
.bg-teal { background: linear-gradient(135deg, #f1fbfa 0%, #e5f5f3 100%); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 38px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3, h4 {
  margin: 0 0 .52em;
  color: var(--ink);
  font-family: inherit;
  font-weight: 760;
  letter-spacing: -.025em;
  line-height: 1.12;
}
h1 { font-size: clamp(2.55rem, 5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.15rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.08em; }
ul, ol { margin: 0 0 1.25em; padding-left: 1.3em; }
li + li { margin-top: .4em; }
.skip-link { position: fixed; left: 12px; top: -90px; z-index: 9999; background: #fff; padding: 12px 18px; border-radius: 9px; box-shadow: var(--shadow); }
.skip-link:focus { top: 12px; }

/* Utility bar */
.topbar { background: var(--teal); color: var(--ink-dark); font-size: .82rem; font-weight: 700; }
.topbar .container { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar a { color: var(--ink-dark); text-decoration: none; }
.topbar a:hover { color: var(--blue-dark); }
.topbar-meta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-meta > * { position: relative; }
.topbar-meta > * + *::before { content: ''; position: absolute; left: -12px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: rgba(15, 51, 59, .45); }
.social-links { display: flex; gap: 9px; }
.social-links a { display: inline-grid; place-items: center; width: 30px; height: 30px; border: 1px solid currentColor; border-radius: 50%; font-weight: 800; text-decoration: none; opacity: .9; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(36, 85, 97, .08); backdrop-filter: blur(14px); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 1 260px; }
.brand img { width: 250px; max-width: 38vw; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav > a, .nav-dropdown > button { color: var(--ink); text-decoration: none; font-weight: 720; font-size: .9rem; background: transparent; border: 0; padding: 31px 0; cursor: pointer; transition: color .18s ease; }
.main-nav > a:not(.btn):hover, .main-nav > a[aria-current='page'], .nav-dropdown > button:hover { color: var(--blue-dark); }
.nav-dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% - 9px); left: -18px; min-width: 290px; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu, .nav-dropdown.is-open .dropdown-menu { display: grid; }
.dropdown-menu a { padding: 9px 11px; color: var(--ink); text-decoration: none; border-radius: 9px; font-size: .9rem; font-weight: 650; }
.dropdown-menu a:hover { background: var(--teal-soft); color: var(--blue-dark); }
.main-nav > a.header-cta {
  white-space: nowrap;
  margin-left: 4px;
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 8px;
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
  font-size: .86rem;
  line-height: 1.1;
  box-shadow: 0 6px 16px rgba(17,155,215,.14);
}
.main-nav > a.header-cta:hover,
.main-nav > a.header-cta:focus-visible {
  background: transparent;
  border-color: var(--blue-dark);
  color: var(--blue-dark);
  transform: none;
  box-shadow: none;
}
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: var(--teal-soft); color: var(--ink); font-size: 1.35rem; cursor: pointer; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 22px; border: 2px solid transparent; border-radius: 10px; background: var(--blue-dark); color: #fff; font-weight: 780; font-size: .92rem; text-decoration: none; line-height: 1.2; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { color: #fff; background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17,155,215,.22); }
.btn-outline { background: transparent; color: var(--ink); border-color: #b8cdcf; }
.btn-outline:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #fff; color: var(--blue-dark); }

/* Home hero */
.hero { position: relative; min-height: 600px; overflow: hidden; color: #fff; background: var(--ink-dark); }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity .75s ease; background-size: cover; background-position: center; }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 41, 48, .78) 0%, rgba(10, 41, 48, .55) 45%, rgba(10, 41, 48, .10) 78%, rgba(10,41,48,.02) 100%); }
.hero-slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 2; min-height: 600px; display: flex; align-items: center; }
.hero-copy { max-width: 680px; padding: 82px 0 105px; }
.hero-copy-inner { min-height: 248px; opacity: 1; transform: translateY(0); transition: opacity .22s ease, transform .22s ease; }
.hero-copy-inner.is-changing { opacity: 0; transform: translateY(8px); }
.hero .eyebrow { color: #c9f4ef; }
.hero h1 { color: #fff; max-width: 660px; font-size: clamp(3rem, 5.5vw, 5rem); text-wrap: balance; }
.hero-lead { max-width: 610px; font-size: clamp(1.08rem, 1.7vw, 1.28rem); line-height: 1.6; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; color: rgba(255,255,255,.88); font-size: .86rem; font-weight: 700; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta span::before { content: '✓'; color: #c9f4ef; font-weight: 900; }
.hero-dots { position: absolute; z-index: 3; left: max(24px, calc((100vw - var(--max)) / 2 + 24px)); bottom: 10px; display: flex; gap: 2px; }
.hero-dot { position: relative; width: 44px; height: 44px; border: 0; border-radius: 999px; background: transparent; cursor: pointer; padding: 0; display: grid; place-items: center; }
.hero-dot::before { content: ''; width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.62); transition: width .2s ease, background .2s ease; }
.hero-dot.active::before { width: 28px; background: #fff; }
.hero-dot:focus-visible { outline: 3px solid #fff; outline-offset: -5px; }

.trust-strip { position: relative; z-index: 5; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 6px 24px rgba(20,62,72,.05); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 112px; display: flex; align-items: center; gap: 14px; padding: 22px 24px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-number { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-soft); color: var(--blue-dark); font-size: .78rem; font-weight: 850; }
.trust-item strong { display: block; color: var(--ink); font-size: .94rem; line-height: 1.3; }
.trust-item span { display: block; color: var(--grey); font-size: .8rem; line-height: 1.4; margin-top: 3px; }

/* Home sections */
.intro-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(48px, 7vw, 86px); align-items: center; }
.image-frame { position: relative; padding: 0 0 20px 20px; }
.image-frame::before { content: ''; position: absolute; left: 0; bottom: 0; width: 74%; height: 72%; background: var(--teal); border-radius: var(--radius); z-index: 0; }
.image-frame::after { content: 'Local care. Made in-house.'; position: absolute; right: -18px; bottom: 4px; z-index: 2; max-width: 210px; padding: 14px 16px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); color: var(--ink); font-size: .82rem; font-weight: 760; line-height: 1.35; }
.image-frame img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/3.3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 900; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; text-align: left; }
.feature-card { position: relative; min-height: 260px; padding: 28px 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c9dcdd; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 11px; background: var(--teal-soft); color: var(--blue-dark); font-size: 1.08rem; font-weight: 850; }
.feature-card h3 { font-size: 1.22rem; }
.feature-card p { color: var(--grey); font-size: .93rem; line-height: 1.6; }
.feature-card a { font-size: .88rem; font-weight: 800; text-decoration: none; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(46px, 7vw, 78px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); max-height: 560px; object-fit: cover; }
.home-page .bg-teal { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--ink-dark), var(--ink)); color: rgba(255,255,255,.88); }
.home-page .bg-teal::after { content: ''; position: absolute; width: 420px; height: 420px; right: -160px; top: -190px; border-radius: 50%; background: rgba(155,217,212,.10); }
.home-page .bg-teal .container { position: relative; z-index: 2; }
.home-page .bg-teal h2, .home-page .bg-teal h3 { color: #fff; }
.home-page .bg-teal .eyebrow { color: #aee7e2; }
.home-page .bg-teal .split-media { padding: 26px; background: #fff; border-radius: var(--radius); box-shadow: 0 20px 55px rgba(0,0,0,.15); }
.home-page .bg-teal .split-media img { box-shadow: none; border-radius: 12px; }
.home-page .bg-teal .check-list li::before { color: #aee7e2; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; text-align: left; }
.service-card { position: relative; overflow: hidden; min-height: 315px; border-radius: 16px; box-shadow: var(--shadow-sm); color: #fff; text-decoration: none; background: var(--ink); }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10, 42, 49, .94) 0%, rgba(10,42,49,.52) 42%, rgba(10,42,49,.04) 78%); }
.service-card-content { position: absolute; z-index: 2; inset: auto 22px 22px; }
.service-card h3 { color: #fff; margin: 0 0 6px; font-size: 1.28rem; }
.service-card span { color: rgba(255,255,255,.84); font-size: .86rem; line-height: 1.45; }
.service-card:hover { color: #fff; box-shadow: var(--shadow); }
.service-card:hover img { transform: scale(1.045); }
.profile-card { display: grid; grid-template-columns: .83fr 1.17fr; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: #fff; }
.profile-card img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; object-position: 50% 20%; }
.profile-copy { padding: clamp(34px, 6vw, 70px); align-self: center; }
.cta { position: relative; overflow: hidden; padding: 76px 0; color: #fff; background: var(--teal-strong); }
.cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,51,59,.18), rgba(15,51,59,.02)), url('../images/cta-background.webp') center/cover; opacity: .18; }
.cta .container { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta h2 { color: #fff; max-width: 700px; }
.cta .eyebrow { color: #fff; }
.cta p { max-width: 690px; color: rgba(255,255,255,.93); }

/* Internal pages */
.page-hero { position: relative; min-height: 410px; display: grid; place-items: center; color: #fff; background: var(--ink-dark); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--hero-image) center/cover no-repeat; opacity: .46; transform: scale(1.01); }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,42,49,.88) 0%, rgba(10,42,49,.7) 52%, rgba(10,42,49,.38) 100%); }
.page-hero .container { position: relative; z-index: 2; padding: 78px 20px; text-align: left; }
.page-hero h1, .page-hero .eyebrow { color: #fff; }
.page-hero h1 { max-width: 820px; font-size: clamp(2.65rem, 5vw, 4.35rem); }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.9); font-size: 1.08rem; }
.anchor-nav { position: sticky; top: 88px; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.anchor-nav .container { display: flex; gap: 8px; overflow-x: auto; padding-block: 11px; scrollbar-width: thin; }
.anchor-nav a { flex: 0 0 auto; padding: 8px 13px; border-radius: 999px; background: var(--teal-soft); color: var(--ink); font-size: .82rem; font-weight: 760; text-decoration: none; }
.anchor-nav a:hover { background: var(--teal); }
.service-detail { scroll-margin-top: 160px; }
.service-detail + .service-detail { border-top: 1px solid var(--line); }
.service-detail .split { min-height: 430px; }
.badge-row { display: flex; align-items: center; justify-content: center; gap: 42px; flex-wrap: wrap; padding-top: 34px; }
.badge-row img { width: 150px; max-height: 80px; object-fit: contain; filter: saturate(.9); }
.faq-list { display: grid; gap: 12px; margin-top: 30px; }
details { border: 1px solid var(--line); border-radius: 13px; background: #fff; box-shadow: 0 5px 16px rgba(20,62,72,.035); }
summary { list-style: none; cursor: pointer; padding: 19px 56px 19px 20px; font-weight: 780; color: var(--ink); position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; position: absolute; right: 20px; top: 13px; font-size: 1.55rem; color: var(--blue-dark); }
details[open] summary::after { content: '−'; }
details > div { padding: 0 20px 20px; color: var(--grey); }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 64px; align-items: start; }
.content-grid article > h2:not(:first-child) { margin-top: 1.3em; }
.content-grid article > h3 { margin-top: 1.25em; }
.sidebar-card { position: sticky; top: 130px; padding: 28px; background: var(--teal-soft); border: 1px solid #d6e9e7; border-radius: 16px; }
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card li + li { border-top: 1px solid rgba(36,85,97,.12); }
.sidebar-card a { display: block; padding: 11px 0; color: var(--ink); text-decoration: none; font-weight: 730; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 34px 0; }
.benefit-card { padding: 24px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow-sm); }
.benefit-card h3 { font-size: 1.22rem; }
.contact-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 58px; align-items: start; }
.contact-form { display: grid; gap: 17px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 730; font-size: .91rem; }
input, textarea { width: 100%; border: 1px solid #bfd0d1; border-radius: 10px; padding: 13px 14px; background: #fff; color: var(--ink); }
input:focus, textarea:focus { outline: 3px solid rgba(17,155,215,.16); border-color: var(--blue); }
textarea { min-height: 150px; resize: vertical; }
.contact-card { padding: 32px; border-radius: var(--radius); background: linear-gradient(145deg, var(--ink-dark), var(--ink)); color: #fff; box-shadow: var(--shadow); }
.contact-card h2, .contact-card h3 { color: #fff; }
.contact-card a { color: #fff; }
.contact-item + .contact-item { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.map-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.map-wrap iframe { width: 100%; min-height: 440px; border: 0; display: block; }
.notice { padding: 18px 20px; border-left: 4px solid var(--blue); background: var(--teal-soft); border-radius: 9px; }

/* Footer */
.site-footer { color: rgba(255,255,255,.8); background: var(--ink-dark); }
.footer-main { padding: 68px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .9fr; gap: 56px; }
.footer-logo { width: 260px; max-width: 100%; margin-bottom: 20px; }
.footer-heading { margin: 0 0 .52em; color: #fff; font-size: 1.12rem; font-weight: 760; letter-spacing: -.01em; line-height: 1.12; }
.site-footer p { font-size: .91rem; }
.site-footer a { color: rgba(255,255,255,.86); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer p a, .footer-bottom a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.site-footer .social-links a { color: #fff; }
.footer-links { list-style: none; padding: 0; }
.footer-links li + li { margin-top: 5px; }
.footer-links a { font-size: .9rem; }

/* Footer partner / accreditation logos */
.footer-accreditations {
  background: #fff;
  border-top: 1px solid #e3ecee;
  border-bottom: 1px solid #e3ecee;
  padding: 22px 0;
}
.footer-accreditation-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr .55fr;
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}
.footer-accreditation-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.footer-accreditation-item img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.footer-accreditation-item--dva img { max-width: 285px; max-height: 54px; }
.footer-accreditation-item--dhsv img { max-width: 230px; max-height: 54px; }
.footer-accreditation-item--adpa img { max-width: 96px; max-height: 56px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); padding: 18px 0; font-size: .8rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 25px; flex-wrap: wrap; }
.floating-call { position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); box-shadow: 0 10px 28px rgba(17,155,215,.36); transition: transform .2s ease; }
.floating-call:hover { transform: translateY(-3px); }
.floating-call img { width: 25px; height: 25px; }
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
/* Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid var(--blue-dark); outline-offset: 3px; }
.site-footer a:focus-visible, .hero a:focus-visible { outline-color: #fff; }
.netlify-honeypot { position: absolute!important; overflow: hidden!important; clip: rect(0 0 0 0)!important; height: 1px!important; width: 1px!important; margin: -1px!important; padding: 0!important; border: 0!important; white-space: nowrap!important; }


@media (max-width: 1040px) {
  .main-nav { gap: 17px; }
  .main-nav > a, .nav-dropdown > button { font-size: .85rem; }
  .brand { flex-basis: 220px; }
  .brand img { width: 220px; }
}
@media (max-width: 980px) {
  .topbar { display: none; }
  .header-inner { min-height: 76px; }
  .brand img { width: 220px; max-width: 65vw; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; padding: 12px 24px 24px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); align-items: stretch; flex-direction: column; gap: 0; max-height: calc(100vh - 76px); overflow-y: auto; }
  .main-nav.is-open { display: flex; }
  .main-nav > a, .nav-dropdown > button { display: block; width: 100%; text-align: left; padding: 12px 0; font-size: .95rem; }
  .dropdown-menu { position: static; display: none; min-width: 0; box-shadow: none; border: 0; padding: 0 0 5px 14px; }
  .nav-dropdown.is-open .dropdown-menu { display: grid; }
  .header-cta { margin: 8px 0 0; text-align: center!important; }
  .hero, .hero-content { min-height: 570px; }
  .hero-copy { max-width: 620px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .intro-grid, .split, .profile-card, .contact-grid, .content-grid { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-card img { min-height: 420px; max-height: 590px; }
  .sidebar-card { position: static; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .anchor-nav { top: 76px; }
  .service-detail { scroll-margin-top: 135px; }
  .page-hero .container { text-align: center; }
  .page-hero p { margin-inline: auto; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 30px), var(--max)); }
  .section { padding: 68px 0; }
  .site-header { box-shadow: 0 2px 10px rgba(20,62,72,.06); }
  .brand img { width: 205px; }
  .hero, .hero-content { min-height: 560px; }
  .hero-copy { padding: 62px 0 88px; }
  .hero-copy-inner { min-height: 285px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 3.7rem); }
  .hero-slide::after { background: linear-gradient(90deg, rgba(10,41,48,.82), rgba(10,41,48,.52)); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { gap: 7px 14px; font-size: .8rem; }
  .hero-dots { left: 20px; transform: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { min-height: 100px; padding: 18px 14px; align-items: flex-start; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--line); }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-number { width: 34px; height: 34px; flex-basis: 34px; font-size: .66rem; }
  .trust-item span { display: none; }
  .image-frame { padding-left: 10px; }
  .image-frame::after { right: 0; bottom: 0; max-width: 175px; }
  .feature-grid, .service-grid, .benefit-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .service-card { min-height: 285px; }
  .cta { padding: 66px 0; }
  .cta .container { align-items: flex-start; flex-direction: column; }
  .page-hero { min-height: 350px; }
  .page-hero .container { padding: 66px 8px; }
  .profile-card { border-radius: 18px; }
  .profile-card img { min-height: 330px; }
  .footer-accreditations { padding: 20px 0; }
  .footer-accreditation-grid { grid-template-columns: 1fr 1fr; gap: 18px 26px; }
  .footer-accreditation-item--adpa { grid-column: 1 / -1; }
  .footer-accreditation-item--dva img { max-width: 205px; max-height: 43px; }
  .footer-accreditation-item--dhsv img { max-width: 165px; max-height: 43px; }
  .footer-accreditation-item--adpa img { max-width: 82px; max-height: 46px; }
  .floating-call { width: 54px; height: 54px; right: 14px; bottom: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto!important; transition: none!important; animation: none!important; }
}
