:root {
  --paper: #fbfdfc;
  --soft-blue: #eaf6fb;
  --soft-green: #edf8f2;
  --cream: #fff8ed;
  --ink: #173236;
  --body: #5c7074;
  --quiet: #7d9093;
  --green: #2f9b74;
  --blue: #3b98c8;
  --aqua: #d8f1ed;
  --line: rgba(47, 155, 116, 0.18);
  --line-blue: rgba(59, 152, 200, 0.2);
  --panel: rgba(255, 255, 255, 0.86);
  --shadow: 0 26px 70px rgba(46, 88, 94, 0.13);
  --font-display: "DM Sans", "Arial", sans-serif;
  --font-body: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1160px, calc(100% - 40px));
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(59, 152, 200, .13), transparent 28%),
    radial-gradient(circle at 90% 6%, rgba(47, 155, 116, .12), transparent 26%),
    linear-gradient(180deg, var(--paper), #f5fbf8 52%, var(--paper));
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }
.page-shell { width: var(--shell); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 40;
  padding: 10px 14px;
  background: var(--green);
  color: #fff;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 253, 252, .9);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}
.brand img { width: 250px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 24px; color: var(--body); font-size: 15px; font-weight: 650; }
.site-nav a { position: relative; text-decoration: none; transition: color .22s ease; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; }

button, .button { font: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid rgba(59, 152, 200, .55); outline-offset: 4px; }
.button, button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}
.button:hover, button:hover { transform: translateY(-2px); border-color: rgba(47, 155, 116, .36); box-shadow: 0 14px 28px rgba(47, 155, 116, .14); }
.button.primary, button.primary { background: var(--green); border-color: var(--green); color: #fff; }
.button.secondary { background: rgba(255,255,255,.7); }

.eyebrow {
  margin-bottom: 14px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--font-display); letter-spacing: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 1.02;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.04;
}
h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.2; }
.lead { max-width: 700px; color: var(--body); font-size: clamp(19px, 2vw, 23px); }

.hero { padding: 84px 0 58px; overflow: hidden; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(390px, .74fr);
  gap: 76px;
  align-items: center;
}
.hero-copy { animation: soft-rise .7s ease both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.care-board { position: relative; min-height: 600px; isolation: isolate; }
.care-photo {
  position: absolute;
  inset: 0 0 72px 54px;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line-blue);
  background: #fff;
  box-shadow: var(--shadow);
}
.care-photo img { width: 100%; height: 100%; object-fit: cover; }
.care-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,253,252,.08), rgba(251,253,252,.42));
}
.journey-card {
  position: absolute;
  left: 18px;
  right: 54px;
  bottom: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  animation: soft-rise .7s .12s ease both;
}
.mini-label { margin-bottom: 14px; color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.journey-card ol { list-style: none; display: grid; gap: 10px; margin: 0; padding: 0; position: relative; }
.journey-card ol::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(var(--green), var(--blue));
  transform-origin: top;
  animation: care-line 1.3s .3s ease both;
}
.journey-card li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding-left: 0;
}
.journey-card li::before {
  content: "";
  z-index: 1;
  width: 30px;
  height: 30px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--line), 0 8px 18px rgba(47,155,116,.17);
}
.journey-card span {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
}
.journey-card small {
  display: block;
  grid-column: 2;
  width: 112px;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid var(--line-blue);
  border-radius: 14px;
  background: rgba(234, 246, 251, .74);
  color: var(--body);
  font-size: 14px;
  line-height: 1.28;
  white-space: normal;
}

.trust-band { border-block: 1px solid var(--line); background: rgba(255,255,255,.68); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.trust-grid p { margin: 0; padding: 26px 28px; border-right: 1px solid var(--line); color: var(--body); transition: background-color .22s ease; }
.trust-grid p:last-child { border-right: 0; }
.trust-grid p:hover { background: var(--soft-green); }
.trust-grid strong { display: block; color: var(--ink); font-family: var(--font-display); margin-bottom: 4px; }
.trust-grid span { display: block; }

.section { padding: 94px 0; }
.section-heading { max-width: 820px; margin-bottom: 34px; }
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pathway-grid article {
  min-height: 320px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: 0 20px 52px rgba(46, 88, 94, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.pathway-grid article:hover { transform: translateY(-8px); border-color: rgba(47,155,116,.38); box-shadow: var(--shadow); }
.pathway-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  border-radius: 50%;
  background: var(--soft-green);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 850;
}
.pathway-grid p, .flow-copy p, .flow-timeline p, .review-sheet p, .notes-copy p, .principle-list p, .contact-panel p, .policy-content p, .disclaimer { color: var(--body); }

.flow-section { background: linear-gradient(180deg, var(--soft-blue), rgba(255,255,255,.72)); border-block: 1px solid var(--line-blue); }
.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  gap: 58px;
  align-items: start;
}
.flow-image { margin: 34px 0 0; overflow: hidden; border-radius: 30px; border: 1px solid var(--line-blue); box-shadow: var(--shadow); }
.flow-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.flow-timeline {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 36px;
}
.flow-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(var(--blue), var(--green));
  transform-origin: top;
  animation: care-line 1.4s ease both;
}
.flow-timeline article {
  position: relative;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 42px rgba(46, 88, 94, .08);
  transition: transform .22s ease, border-color .22s ease;
}
.flow-timeline article::before {
  content: "";
  position: absolute;
  left: -27.7px;
  top: 28px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--green);
}
.flow-timeline article:hover { transform: translateX(6px); border-color: rgba(47,155,116,.38); }
.flow-timeline span { color: var(--green); font-family: var(--font-display); font-weight: 850; font-size: 24px; }

.review-grid {
  display: grid;
  grid-template-columns: .92fr 1.16fr .92fr;
  gap: 16px;
  align-items: stretch;
}
.review-sheet {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 48px rgba(46,88,94,.08);
  transition: transform .24s ease, border-color .24s ease;
}
.review-sheet.featured {
  background:
    linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.94)),
    url("assets/images/snapshot.jpg") center / cover;
}
.review-sheet:hover { transform: translateY(-6px); border-color: rgba(59,152,200,.38); }
.context { margin-bottom: 12px; color: var(--blue) !important; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.review-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.review-meta span { padding: 6px 10px; border-radius: 999px; background: var(--soft-green); color: var(--green); font-size: 13px; font-weight: 700; }

.notes-section { background: var(--cream); border-block: 1px solid rgba(201,153,81,.18); }
.notes-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr); gap: 58px; align-items: start; }
.memo-list { display: grid; gap: 12px; }
.memo-list article {
  padding: 22px 24px;
  border: 1px solid rgba(201,153,81,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  transition: transform .22s ease, background-color .22s ease;
}
.memo-list article:hover { transform: translateX(8px); background: #fff; }
.memo-list span { display: block; margin-bottom: 6px; color: var(--green); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.memo-list h3 { margin-bottom: 0; font-size: clamp(22px, 2.7vw, 34px); }

.principles-layout { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr); gap: 58px; align-items: center; }
.principles-layout figure { margin: 0; overflow: hidden; border-radius: 34px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.principles-layout img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.principle-list { display: grid; gap: 14px; }
.principle-list article { padding: 22px 24px; border-left: 4px solid var(--green); border-radius: 18px; background: rgba(255,255,255,.78); transition: transform .22s ease; }
.principle-list article:hover { transform: translateX(6px); }

.contact-section { padding: 88px 0; }
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
  gap: 34px;
  align-items: end;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(135deg, var(--soft-green), #fff);
  box-shadow: var(--shadow);
}
.contact-panel h2 { max-width: 760px; }
.contact-actions { display: grid; gap: 12px; }

.site-footer { border-top: 1px solid var(--line); background: #fff; color: var(--body); padding: 32px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1.2fr; gap: 24px; align-items: center; }
.footer-grid img { width: 54px; margin-bottom: 8px; }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-grid a { color: var(--body); text-decoration: none; }
.footer-grid a:hover { color: var(--green); }
.disclaimer { margin: 0; font-size: 13px; }

.policy-hero { padding: 92px 0 54px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, var(--soft-blue), rgba(255,255,255,.72)); }
.policy-hero h1 { max-width: 840px; }
.narrow { max-width: 820px; }
.policy-content h2 { margin-top: 38px; margin-bottom: 10px; padding-top: 24px; border-top: 1px solid var(--line); font-size: clamp(26px, 3vw, 38px); }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 18px; }
.text-link { display: inline-block; margin: 18px 18px 0 0; color: var(--green); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(47,155,116,.32); }
.text-link:hover { color: var(--ink); }

.consent-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.consent-banner h2, .consent-modal h2 { margin-bottom: 6px; font-size: 22px; }
.consent-banner p { margin-bottom: 6px; color: var(--body); }
.consent-banner a { margin-right: 12px; color: var(--green); font-weight: 700; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 50, 54, .42);
}
.modal-panel { width: min(520px, 100%); padding: 28px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow); }
.modal-panel label { display: block; margin: 16px 0; color: var(--body); }
[hidden] { display: none !important; }

@keyframes soft-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes care-line {
  from { transform: scaleY(0); opacity: .25; }
  to { transform: scaleY(1); opacity: 1; }
}

.service-map-section {
  background: linear-gradient(180deg, #fff, #eff9f6);
  border-block: 1px solid var(--line);
}
.service-map-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 46px;
  align-items: center;
}
.service-map-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}
.service-checklist {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.service-checklist article {
  display: grid;
  gap: 7px;
  padding: 18px 20px;
  border-left: 5px solid var(--green);
  border-radius: 18px;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
}
.service-checklist article:hover { transform: translateX(8px); box-shadow: 0 14px 38px rgba(47,155,116,.14); }
.service-checklist span { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-checklist strong { color: var(--ink); font-size: 18px; line-height: 1.35; }
.service-photo-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
  align-items: end;
}
.service-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: #fff;
}
.service-photo-grid figure:first-child { transform: translateY(-34px); }
.service-photo-grid img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform .55s ease, filter .3s ease;
}
.service-photo-grid figure:hover img { transform: scale(1.04); filter: saturate(1.05); }

@media (max-width: 980px) {
  .brand img { width: 214px; }
  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: 0;
    top: 15px;
    min-width: 78px;
    height: 46px;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero-layout,
  .service-map-layout,
  .flow-layout,
  .review-grid,
  .notes-layout,
  .principles-layout,
  .contact-panel,
  .footer-grid,
  .consent-banner {
    grid-template-columns: 1fr;
  }
  .pathway-grid { grid-template-columns: 1fr 1fr; }
  .care-board { min-height: 520px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid p:last-child { border-bottom: 0; }
  .service-photo-grid { grid-template-columns: 1fr; }
  .service-photo-grid figure:first-child { transform: none; }
}

@media (max-width: 620px) {
  :root { --shell: min(100% - 28px, 1160px); }
  .brand img { width: 174px; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .hero { padding-top: 48px; }
  .hero-layout { gap: 38px; }
  .hero-actions .button, .contact-actions .button, .consent-actions button { width: 100%; }
  .service-map-copy { padding: 24px; border-radius: 24px; }
  .service-photo-grid img { min-height: 280px; }
  .care-board { min-height: 440px; }
  .care-photo { inset: 0 0 82px 0; border-radius: 28px; }
  .journey-card { right: 0; padding: 20px; border-radius: 24px; }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-grid article { min-height: 0; }
  .section { padding: 72px 0; }
  .flow-timeline { padding-left: 26px; }
  .flow-timeline::before { left: 13px; }
  .flow-timeline article::before {
    left: -22.7px;
  }
  .contact-panel { padding: 26px; border-radius: 28px; }
  .consent-banner { left: 12px; right: 12px; bottom: 12px; max-height: 62vh; overflow: auto; border-radius: 20px; }
}

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

/* Brand-specific GDPR surface */
.consent-banner {
  grid-template-columns: 10px minmax(0, 1fr) auto;
  border: 1px solid rgba(47,155,116,.28);
  border-radius: 26px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 24px 70px rgba(46,88,94,.18);
}
.consent-banner::before {
  content: "";
  width: 10px;
  align-self: stretch;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--blue));
}
.consent-banner h2 { color: var(--ink); font-family: var(--font-display); }
.consent-banner p { color: var(--body); }
.consent-actions button {
  border-color: rgba(47,155,116,.24);
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--ink);
}
.consent-actions button.primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
.consent-modal { background: rgba(23,50,54,.48); }
.modal-panel {
  border-radius: 28px;
  border: 1px solid rgba(47,155,116,.24);
  background: #fff;
}
@media (max-width: 980px) {
  .consent-banner { grid-template-columns: 10px minmax(0, 1fr); }
  .consent-actions { grid-column: 2; }
}
