/* Design tokens */
:root {
  --color-page: #f7faf7;
  --color-surface: #ffffff;
  --color-surface-muted: #edf3ee;
  --color-text: #17382a;
  --color-text-muted: #476254;
  --color-brand: #286346;
  --color-brand-dark: #173f2d;
  --color-brand-soft: #dfece3;
  --color-accent: #d7aa4b;
  --color-accent-soft: #fbf3df;
  --color-border: #dce6de;
  --color-error: #9b2c2c;
  --color-success: #236643;
  --shadow-card: 0 10px 30px rgba(18, 58, 39, .07);
  --shadow-floating: 0 22px 60px rgba(18, 58, 39, .12);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --layout-max-width: 1320px;
  --header-height: 84px;
}


/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(215, 170, 75, .75); outline-offset: 3px; }
::selection { background: var(--color-brand-soft); color: var(--color-brand-dark); }

.layout-container { width: min(calc(100% - 48px), var(--layout-max-width)); margin-inline: auto; }
.section-spacing { padding: 110px 0; }
.u-visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; left: 18px; top: 12px; transform: translateY(-160%); padding: 12px 18px; color: #fff; background: var(--color-brand-dark); border-radius: 8px; transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }


/* Header and navigation */
.site-header { position: sticky; z-index: 1000; top: 0; height: var(--header-height); background: rgba(247, 250, 247, .88); border-bottom: 1px solid transparent; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: box-shadow .2s ease, border-color .2s ease; }
.site-header.has-elevation { border-color: rgba(40, 99, 70, .08); box-shadow: 0 8px 30px rgba(15, 54, 35, .06); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.site-brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.site-brand__mark { display: grid; place-items: center; color: var(--color-brand); }
.site-brand__copy { display: flex; flex-direction: column; line-height: 1.18; }
.site-brand__copy strong { font-size: 1.05rem; letter-spacing: -.02em; }
.site-brand__copy small { margin-top: 4px; color: var(--color-text-muted); font-size: .72rem; letter-spacing: .02em; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); font-size: .93rem; font-weight: 650; }
.primary-nav > a:not(.btn) { position: relative; padding: 14px 0; color: #315443; }
.primary-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 9px; height: 2px; background: var(--color-accent); transition: right .2s ease; }
.primary-nav > a:not(.btn):hover::after { right: 0; }
.primary-nav__toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 10px; color: var(--color-brand-dark); background: var(--color-surface-muted); }
.primary-nav__toggle span:not(.u-visually-hidden) { display: block; width: 23px; height: 2px; margin: 5px auto; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }


/* Buttons */
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 13px 24px; color: #fff; background: var(--color-brand); border: 1px solid var(--color-brand); border-radius: 999px; box-shadow: 0 11px 25px rgba(40, 99, 70, .17); font-weight: 750; line-height: 1.2; transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-2px); background: var(--color-brand-dark); box-shadow: 0 14px 30px rgba(40, 99, 70, .23); }
.btn--small { min-height: 44px; padding: 10px 19px; font-size: .9rem; }
.btn--secondary { color: var(--color-brand-dark); background: rgba(255, 255, 255, .7); border-color: var(--color-border); box-shadow: none; }
.btn--secondary:hover { color: var(--color-brand-dark); background: #fff; }
.btn--outline { color: var(--color-brand); background: transparent; box-shadow: none; }
.btn--outline:hover { color: #fff; }
.btn--light { color: var(--color-brand-dark); background: #fff; border-color: #fff; }
.btn--light:hover { color: #fff; background: var(--color-accent); border-color: var(--color-accent); }
.btn--block { width: 100%; }


/* Hero */
.hero { position: relative; overflow: hidden; min-height: calc(100svh - var(--header-height)); display: grid; align-items: center; padding-top: 72px; background:
  radial-gradient(circle at 82% 22%, rgba(215, 170, 75, .13), transparent 25%),
  radial-gradient(circle at 7% 65%, rgba(40, 99, 70, .08), transparent 25%),
  linear-gradient(180deg, #f9fcf9 0%, #f3f7f3 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .38; pointer-events: none; background-image: radial-gradient(rgba(40, 99, 70, .18) .8px, transparent .8px); background-size: 24px 24px; mask-image: linear-gradient(90deg, #000 0%, transparent 54%); }
.hero__layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr); align-items: center; gap: clamp(40px, 5vw, 92px); }
.hero__content { max-width: 760px; padding: 20px 0 45px; }
.section-label { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--color-brand); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.section-label span { width: 30px; height: 2px; background: var(--color-accent); }
.section-label.section-label--light { color: #dfece3; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 { margin-top: 0; line-height: 1.1; letter-spacing: -.035em; text-wrap: balance; }
h1 { max-width: 760px; margin-bottom: 26px; font-size: clamp(2.85rem, 5.2vw, 5.25rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.15rem, 3.5vw, 3.65rem); }
h3 { font-size: 1.45rem; }
.hero__lead { max-width: 700px; margin: 0; color: var(--color-text-muted); font-size: clamp(1.08rem, 1.5vw, 1.27rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 35px; }
.hero__benefits { display: flex; flex-wrap: wrap; gap: 22px; margin: 30px 0 0; padding: 0; list-style: none; color: #3d5f4e; font-size: .93rem; font-weight: 650; }
.hero__benefits li { display: inline-flex; align-items: center; gap: 8px; }
.hero__benefits li span { display: grid; width: 21px; height: 21px; place-items: center; color: var(--color-brand); background: var(--color-brand-soft); border-radius: 50%; font-size: .72rem; }

.hero__visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero__art { position: relative; z-index: 2; width: min(100%, 660px); }
.hero__orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(40, 99, 70, .14); }
.hero__orbit--inner { width: 510px; height: 510px; }
.hero__orbit--outer { width: 610px; height: 610px; border-style: dashed; opacity: .7; }
.hero__badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 15px 18px; background: rgba(255, 255, 255, .9); border: 1px solid rgba(255,255,255,.8); border-radius: 15px; box-shadow: var(--shadow-floating); backdrop-filter: blur(10px); }
.hero__badge strong { display: block; font-size: .9rem; line-height: 1.25; }
.hero__badge small, .hero__badge span { display: block; color: var(--color-text-muted); font-size: .75rem; }
.hero__badge-icon { display: grid!important; width: 36px; height: 36px; place-items: center; color: #fff!important; background: var(--color-brand); border-radius: 50%; font-size: 1rem!important; font-weight: 800; }
.hero__badge--confirmation { left: 1%; bottom: 16%; }
.hero__badge--scope { right: 0; top: 17%; flex-direction: column; align-items: flex-start; gap: 2px; }

.trust-bar { position: relative; z-index: 2; margin-top: -42px; }
.trust-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 22px; box-shadow: var(--shadow-floating); }
.trust-bar__grid > div { position: relative; padding: 28px 30px; }
.trust-bar__grid > div:not(:last-child)::after { content: ""; position: absolute; top: 24px; right: 0; bottom: 24px; width: 1px; background: var(--color-border); }
.trust-bar__grid strong, .trust-bar__grid span { display: block; }
.trust-bar__grid strong { margin-bottom: 2px; font-size: 1.2rem; }
.trust-bar__grid span { color: var(--color-text-muted); font-size: .84rem; }

.section-heading { margin-bottom: 48px; }
.section-heading--split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.section-heading--split h2 { max-width: 760px; margin-bottom: 0; }
.section-heading--split > p { max-width: 520px; margin: 0 0 8px; color: var(--color-text-muted); font-size: 1.04rem; }
.section-heading--center { max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading--center .section-label { justify-content: center; }
.section-heading--center p:last-child { color: var(--color-text-muted); font-size: 1.02rem; }


/* Services */
.services { background: var(--color-page); }
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.service-card { display: flex; min-height: 525px; flex-direction: column; align-items: flex-start; padding: clamp(30px, 4vw, 52px); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-floating); }
.service-card--featured { background: linear-gradient(145deg, #fff 55%, #f0f6f1); }
.service-card__icon { display: grid; width: 66px; height: 66px; place-items: center; margin-bottom: 30px; color: var(--color-brand); background: var(--color-brand-soft); border-radius: 20px; }
.service-card__icon svg { width: 34px; }
.service-card__eyebrow { margin: 0 0 8px; color: var(--color-accent); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 16px; font-size: clamp(1.65rem, 2.3vw, 2.15rem); }
.service-card p:not(.service-card__eyebrow) { color: var(--color-text-muted); }
.checklist { margin: 24px 0 28px; padding: 0; list-style: none; }
.checklist li { position: relative; margin: 12px 0; padding-left: 29px; color: #355846; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 2px; display: grid; width: 20px; height: 20px; place-items: center; color: #fff; background: var(--color-brand); border-radius: 50%; font-size: .68rem; font-weight: 800; }
.inline-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--color-brand); font-weight: 800; }
.inline-link span { transition: transform .18s ease; }
.inline-link:hover span { transform: translateX(4px); }

.process { color: #fff; background: var(--color-brand-dark); }
.process__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 8vw, 130px); align-items: start; }
.process__intro { position: sticky; top: calc(var(--header-height) + 34px); }
.process__intro h2 { max-width: 570px; }
.process__intro > p:not(.section-label) { max-width: 520px; margin-bottom: 32px; color: #bad0c1; font-size: 1.05rem; }
.process__steps { margin: 0; padding: 0; list-style: none; }
.process__steps li { display: grid; grid-template-columns: 80px 1fr; gap: 26px; padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.process__steps li:first-child { padding-top: 0; }
.process-step__number { color: var(--color-accent); font-size: 1.1rem; font-weight: 850; letter-spacing: .08em; }
.process__steps h3 { margin-bottom: 9px; font-size: 1.55rem; }
.process__steps p { max-width: 610px; margin: 0; color: #b8cbbf; }


/* Pricing */
.pricing { background: #f9fbf9; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pricing-card { position: relative; display: flex; flex-direction: column; padding: 38px 34px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.pricing-card--featured { border: 2px solid var(--color-brand); box-shadow: var(--shadow-floating); transform: translateY(-10px); }
.pricing-card__badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); padding: 7px 17px; color: #fff; background: var(--color-brand); border-radius: 999px; font-size: .72rem; font-weight: 800; white-space: nowrap; }
.pricing-card__label { margin: 0 0 8px; color: var(--color-accent); font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.pricing-card h3 { margin-bottom: 18px; font-size: 1.9rem; }
.pricing-card__price { margin: 0 0 16px; font-size: 3.15rem; font-weight: 800; line-height: 1; letter-spacing: -.06em; }
.pricing-card__price span { margin-right: 4px; color: var(--color-text-muted); font-size: .85rem; font-weight: 650; letter-spacing: 0; }
.pricing-card__price small { font-size: 1rem; letter-spacing: 0; }
.pricing-card__description { min-height: 80px; margin: 0; color: var(--color-text-muted); font-size: .94rem; }
.checklist.checklist--compact { flex: 1; margin-top: 23px; }
.checklist.checklist--compact li { margin: 10px 0; font-size: .92rem; }
.pricing-card__extras { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; margin-top: 34px; padding: 38px 42px; background: var(--color-accent-soft); border: 1px solid #eadab5; border-radius: var(--radius-md); }
.pricing-card__extras h3 { margin-bottom: 10px; }
.pricing-card__extras p { margin: 0; color: var(--color-text-muted); }
.pricing-card__extras ul { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 30px; margin: 0; padding: 0; list-style: none; }
.pricing-card__extras li { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 9px; border-bottom: 1px solid rgba(143, 106, 35, .18); font-size: .9rem; }
.pricing-card__extras li span { color: #4e5f55; }
.pricing-card__extras li strong { text-align: right; }

.coverage { background: var(--color-surface-muted); }
.coverage__layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 7vw, 100px); align-items: center; }
.coverage__map { overflow: hidden; padding: 15px; background: rgba(255,255,255,.7); border: 1px solid rgba(40,99,70,.1); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.coverage__content > p:not(.section-label):not(.text-note) { color: var(--color-text-muted); font-size: 1.04rem; }
.coverage__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 18px; }
.coverage__tags span { padding: 9px 14px; color: var(--color-brand-dark); background: #fff; border: 1px solid #d7e3d9; border-radius: 999px; font-size: .85rem; font-weight: 650; }
.text-note { color: var(--color-text-muted); font-size: .88rem; }

.recurring-care { padding-top: 0; background: var(--color-surface-muted); }
.recurring-care__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: clamp(40px, 6vw, 72px); color: #fff; background: linear-gradient(125deg, var(--color-brand-dark), #2f7253); border-radius: var(--radius-lg); box-shadow: var(--shadow-floating); }
.recurring-care__inner h2 { max-width: 900px; margin-bottom: 15px; font-size: clamp(2rem, 3vw, 3.1rem); }
.recurring-care__inner p:not(.section-label) { max-width: 900px; margin: 0; color: #c2d4c8; }
.recurring-care__inner .btn { flex: 0 0 auto; }

.faq { background: #fff; }
.faq__layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 8vw, 120px); align-items: start; }
.faq__intro { position: sticky; top: calc(var(--header-height) + 32px); }
.faq__intro > p:not(.section-label) { color: var(--color-text-muted); }
.accordion details { border-bottom: 1px solid var(--color-border); }
.accordion details:first-child { border-top: 1px solid var(--color-border); }
.accordion summary { position: relative; padding: 25px 45px 25px 0; cursor: pointer; list-style: none; font-weight: 780; font-size: 1.08rem; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; top: 50%; right: 3px; width: 18px; height: 2px; background: var(--color-brand); transition: transform .2s ease; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion details p { max-width: 760px; margin: -3px 0 25px; padding-right: 45px; color: var(--color-text-muted); }


/* Contact */
.contact { color: #fff; background: var(--color-brand-dark); }
.contact__layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 8vw, 120px); align-items: start; }
.contact__content { padding-top: 26px; }
.contact__content > p:not(.section-label) { max-width: 570px; color: #bfd2c5; font-size: 1.05rem; }
.contact__methods { display: grid; gap: 14px; margin-top: 36px; }
.contact__methods a { display: flex; align-items: center; gap: 14px; width: fit-content; }
.contact-method__icon { display: grid; width: 44px; height: 44px; place-items: center; color: var(--color-brand-dark); background: var(--color-accent); border-radius: 13px; }
.contact-method__icon svg { width: 23px; }
.contact__methods small, .contact__methods strong { display: block; }
.contact__methods small { color: #a8c1b1; font-size: .75rem; }
.contact__methods strong { font-size: 1.05rem; }
.contact__note { display: flex; max-width: 570px; flex-direction: column; gap: 3px; margin-top: 34px; padding: 18px 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); }
.contact__note strong { font-size: .89rem; }
.contact__note span { color: #b9cdc0; font-size: .85rem; }

.enquiry-form { padding: clamp(28px, 4vw, 46px); color: var(--color-text); background: #fff; border-radius: var(--radius-lg); box-shadow: 0 26px 70px rgba(0,0,0,.2); }
.enquiry-form__row { display: grid; gap: 18px; }
.enquiry-form__row--two { grid-template-columns: 1fr 1fr; }
.enquiry-form label:not(.enquiry-form__consent) { display: block; margin-bottom: 18px; }
.enquiry-form label > span:first-child { display: block; margin-bottom: 7px; font-size: .82rem; font-weight: 750; }
input, select, textarea { width: 100%; color: var(--color-text); background: #fbfcfb; border: 1px solid #cbd9ce; border-radius: 11px; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
input, select { height: 51px; padding: 0 14px; }
textarea { min-height: 130px; padding: 13px 14px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #83968a; }
input:hover, select:hover, textarea:hover { border-color: #9ab29f; }
input:focus, select:focus, textarea:focus { outline: 0; background: #fff; border-color: var(--color-brand); box-shadow: 0 0 0 4px rgba(40,99,70,.1); }
.enquiry-form__consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 4px 0 22px; color: var(--color-text-muted); font-size: .78rem; line-height: 1.5; }
.enquiry-form__consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--color-brand); }
.enquiry-form__consent a { color: var(--color-brand); text-decoration: underline; }
.enquiry-form__note { margin: 12px 0 0; color: #75877c; text-align: center; font-size: .74rem; }
.enquiry-form__trap { position: absolute!important; left: -9999px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.enquiry-form__status { margin-bottom: 18px; padding: 13px 15px; border-radius: 10px; font-size: .88rem; font-weight: 650; }
.enquiry-form__status.is-success { color: #185234; background: #e1f3e7; border: 1px solid #a8d5b7; }
.enquiry-form__status.is-error { color: #7a2525; background: #fbe7e7; border: 1px solid #edb8b8; }


/* Footer */
.site-footer { padding: 72px 0 24px; color: #c3d2c8; background: #102c20; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr .8fr .9fr 1fr; gap: 50px; }
.site-footer__brand { color: #fff; }
.site-footer__grid > div:first-child > p { max-width: 440px; color: #94aa9c; font-size: .88rem; }
.site-footer__grid h2 { margin: 5px 0 18px; color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; font-size: .86rem; }
.site-footer__grid a:hover { color: var(--color-accent); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 54px; padding-top: 22px; color: #81988a; border-top: 1px solid rgba(255,255,255,.09); font-size: .75rem; }

@media (max-width: 1100px) {
  :root { --header-height: 74px; }
  .layout-container { width: min(calc(100% - 36px), var(--layout-max-width)); }
  .primary-nav { gap: 16px; font-size: .84rem; }
  .hero__layout { grid-template-columns: 1fr 1fr; gap: 25px; }
  .hero__visual { min-height: 520px; }
  .hero__badge--confirmation { left: -4%; }
  .process__layout, .contact__layout { gap: 60px; }
  .site-footer__grid { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 900px) {
  .section-spacing { padding: 84px 0; }
  .primary-nav__toggle { display: block; }
  .primary-nav__toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .primary-nav__toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .primary-nav__toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; top: var(--header-height); left: 18px; right: 18px; display: none; flex-direction: column; align-items: stretch; gap: 3px; padding: 18px; background: #fff; border: 1px solid var(--color-border); border-radius: 18px; box-shadow: var(--shadow-floating); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.btn) { padding: 11px 12px; }
  .primary-nav > a:not(.btn)::after { display: none; }
  .hero { min-height: auto; padding-top: 65px; }
  .hero__layout { grid-template-columns: 1fr; }
  .hero__content { max-width: 780px; padding-bottom: 0; }
  .hero__visual { min-height: 510px; }
  .hero__art { width: min(92%, 590px); }
  .trust-bar { margin-top: -10px; }
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .trust-bar__grid > div:nth-child(2)::after { display: none; }
  .trust-bar__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--color-border); }
  .section-heading--split { grid-template-columns: 1fr; gap: 20px; }
  .services__grid { grid-template-columns: 1fr; }
  .process__layout, .coverage__layout, .faq__layout, .contact__layout { grid-template-columns: 1fr; }
  .process__intro, .faq__intro { position: static; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 690px; margin-inline: auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card__description { min-height: auto; }
  .pricing-card__extras { grid-template-columns: 1fr; gap: 30px; }
  .recurring-care__inner { align-items: flex-start; flex-direction: column; }
  .contact__content { padding-top: 0; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --radius-lg: 25px; }
  body { font-size: 15.5px; }
  .layout-container { width: min(calc(100% - 28px), var(--layout-max-width)); }
  .section-spacing { padding: 68px 0; }
  .site-brand__copy small { display: none; }
  .hero { padding-top: 45px; }
  h1 { font-size: clamp(2.45rem, 13vw, 3.55rem); }
  h2 { font-size: clamp(2rem, 10vw, 2.75rem); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__benefits { display: grid; gap: 10px; }
  .hero__visual { min-height: 390px; margin-top: 12px; }
  .hero__orbit--inner { width: 330px; height: 330px; }
  .hero__orbit--outer { width: 390px; height: 390px; }
  .hero__badge--confirmation { left: 0; bottom: 7%; }
  .hero__badge--scope { right: 0; top: 8%; }
  .hero__badge { padding: 11px 13px; }
  .hero__badge strong { font-size: .75rem; }
  .hero__badge small, .hero__badge span { font-size: .65rem; }
  .hero__badge-icon { width: 29px; height: 29px; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .trust-bar__grid > div { padding: 20px 22px; border-bottom: 1px solid var(--color-border); }
  .trust-bar__grid > div:last-child { border-bottom: 0; }
  .trust-bar__grid > div::after { display: none; }
  .service-card, .pricing-card, .enquiry-form { padding: 27px 23px; }
  .process__steps li { grid-template-columns: 56px 1fr; gap: 13px; }
  .pricing-card__extras { padding: 28px 23px; }
  .pricing-card__extras ul { grid-template-columns: 1fr; }
  .coverage__map { padding: 0; }
  .recurring-care__inner { padding: 35px 25px; }
  .enquiry-form__row--two { grid-template-columns: 1fr; gap: 0; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid > div:first-child { grid-column: 1 / -1; }
  .site-footer__bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; }
}


/* Legal pages */
.legal-main { min-height: 70vh; padding: 80px 0 100px; }
.legal-card { max-width: 900px; margin: auto; padding: clamp(28px, 5vw, 64px); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.legal-card h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.legal-card h2 { margin-top: 38px; font-size: 1.55rem; }
.legal-card p, .legal-card li { color: var(--color-text-muted); }
.legal-card a { color: var(--color-brand); text-decoration: underline; }
.legal-back { display: inline-flex; margin-bottom: 24px; color: var(--color-brand); font-weight: 750; }
