/* ============================================================
   NSCH Care Group — Design System
   Brand: warm, caring, professional. Green→Blue gradients, lime accent.
   ============================================================ */
:root {
  /* Brand */
  --blue: #0F6FA8;
  --blue-dk: #0B5176;
  --blue-deep: #0A3D5C;
  --green: #5BB247;
  --green-dk: #3E9438;
  --lime: #A7D429;
  --lime-dk: #8FBE1F;

  /* Neutrals */
  --ink: #1f2c34;
  --body: #3c4951;
  --soft: #67757d;
  --line: #e6edef;
  --line-2: #eef3f4;
  --cream: #fbfcfa;
  --panel: #f3f7f4;
  --panel-blue: #eef6fb;
  --white: #ffffff;

  /* Effects */
  --grad: linear-gradient(135deg, var(--green-dk), var(--blue));
  --grad-soft: linear-gradient(135deg, var(--green), var(--blue));
  --grad-lime: linear-gradient(90deg, var(--lime), var(--green));
  --shadow-sm: 0 2px 8px rgba(10, 61, 92, .06);
  --shadow: 0 12px 30px rgba(10, 61, 92, .10);
  --shadow-lg: 0 24px 60px rgba(10, 61, 92, .16);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);

  /* Type */
  --f-head: 'Poppins', system-ui, -apple-system, sans-serif;
  --f-body: 'Mulish', system-ui, -apple-system, sans-serif;
  --f-accent: 'Lora', Georgia, serif;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--body);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--blue-dk);
}

ul {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0;
  font-weight: 700;
  letter-spacing: -.01em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

p {
  margin: 0 0 1rem;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue-deep);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 10px 0;
  font-family: var(--f-head);
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section {
  padding-block: clamp(48px, 7vw, 96px);
}

.section--tint {
  background: var(--cream);
}

.section--panel {
  background: var(--panel);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--soft);
}

.center {
  text-align: center;
}

.eyebrow {
  font-family: var(--f-head);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .74rem;
  color: var(--green-dk);
  margin: 0 0 .6rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-head.center {
  margin-inline: auto;
}

.section-head h2 {
  margin-bottom: .6rem;
}

.section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 3px;
  background: var(--grad-lime);
  margin-top: 14px;
}

.section-head.center h2::after {
  margin-inline: auto;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 1rem;
  padding: .85em 1.6em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .22s;
  text-align: center;
  line-height: 1.2;
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 111, 168, .28);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 111, 168, .36);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .7);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--blue-dk);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dk);
  transform: translateY(-2px);
}

.btn-lg {
  font-size: 1.08rem;
  padding: 1em 1.9em;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 1.02rem;
  flex: none;
}

.brand img {
  height: 46px;
  width: auto;
}

.brand span small {
  display: block;
  font-weight: 500;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-dk);
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--green-dk);
  background: var(--panel);
}

.nav-links a[aria-current="page"] {
  color: var(--green-dk);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--grad-lime);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-weight: 600;
  color: var(--blue-dk);
  font-size: .95rem;
  white-space: nowrap;
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--blue-deep);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(167, 212, 41, .5), transparent 55%),
    radial-gradient(120% 100% at -10% 110%, rgba(91, 178, 71, .55), transparent 55%),
    linear-gradient(150deg, #0A3D5C 0%, #0B5176 45%, #0F6FA8 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .74rem;
  color: #cdeefb;
  background: rgba(255, 255, 255, .10);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero h1 {
  color: #fff;
}

.hero h1 .hl {
  background: var(--grad-lime);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: #e8f4fb;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  max-width: 48ch;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-figure {
  position: relative;
}

.hero-figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3.4;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}

.hero-badge .hb-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex: none;
}

.hero-badge .hb-ic svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.hero-badge b {
  font-family: var(--f-head);
  display: block;
  color: var(--blue-deep);
  font-size: 1.05rem;
}

.hero-badge small {
  color: var(--soft);
  font-size: .84rem;
}

/* trust strip */
.trust {
  background: var(--blue-deep);
  color: #dbeefb;
}

.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-block: 22px;
}

@media (max-width:900px) {
  .trust .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:540px) {
  .trust .wrap {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: .70rem;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--lime);
  flex: none;
}

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid {
  display: grid;
  gap: 26px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card .ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--panel);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.card .ic svg {
  width: 28px;
  height: 28px;
  color: var(--green-dk);
}

.card h3 {
  margin-bottom: .5rem;
  color: var(--blue-dk);
}

.card p {
  margin: 0;
  color: var(--body);
  font-size: .97rem;
}

.card.is-grad .ic {
  background: var(--grad);
}

.card.is-grad .ic svg {
  color: #fff;
}

/* feature list */
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature .fic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex: none;
}

.feature .fic svg {
  width: 21px;
  height: 21px;
  color: #fff;
}

.feature h3 {
  font-size: 1.12rem;
  margin-bottom: .25rem;
  color: var(--blue-dk);
}

.feature p {
  margin: 0;
  font-size: .96rem;
}

/* split / media */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split.rev .split-media {
  order: 2;
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split-body h2 {
  margin-bottom: 1rem;
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
  padding: 26px 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.stat b {
  font-family: var(--f-head);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
}

.stat span {
  font-size: .92rem;
  color: var(--soft);
  font-family: var(--f-head);
  font-weight: 500;
  margin-top: 8px;
  display: block;
}

/* checklist */
.checklist {
  list-style: none;
  display: grid;
  gap: 14px;
}

.checklist li {
  position: relative;
  padding-left: 38px;
  font-size: 1rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad-lime);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

.checklist.on-dark li {
  color: #e8f4fb;
}

/* bullet list (content) */
.rich h3 {
  margin: 1.8rem 0 .6rem;
  color: var(--green-dk);
}

.rich h2 {
  margin: 2rem 0 .8rem;
}

.rich p {
  color: var(--body);
}

.rich ul.dot {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: .6rem 0 1.4rem;
}

.rich ul.dot li {
  position: relative;
  padding-left: 26px;
}

.rich ul.dot li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--grad-lime);
}

.rich ul.dot li .lab {
  font-family: var(--f-head);
  font-weight: 600;
  color: var(--blue-dk);
}

/* pull quote / mission */
.mission {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--grad-soft);
  padding: clamp(34px, 5vw, 60px);
}

.mission::before {
  content: "\201C";
  position: absolute;
  top: -30px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 170px;
  color: rgba(255, 255, 255, .16);
}

.mission q {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  line-height: 1.45;
  display: block;
  position: relative;
  quotes: none;
}

.mission .sub {
  position: relative;
  font-family: var(--f-head);
  font-weight: 300;
  margin-top: 18px;
  color: #eafff0;
  font-size: 1.05rem;
}

/* ============================================================
   PAGE HEADER (interior)
   ============================================================ */
.page-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--blue-deep);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 90% -20%, rgba(167, 212, 41, .4), transparent 55%), linear-gradient(150deg, #0A3D5C, #0F6FA8);
}

.page-hero .wrap {
  position: relative;
  padding-block: clamp(46px, 7vw, 86px);
}

.page-hero h1 {
  color: #fff;
  max-width: 18ch;
}

.page-hero p {
  color: #dbeefb;
  max-width: 60ch;
  margin-top: 14px;
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--f-head);
  font-size: .82rem;
  color: #bfe7fa;
  margin-bottom: 14px;
  list-style: none;
}

.breadcrumb a {
  color: #bfe7fa;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 8px;
  opacity: .5;
}

.breadcrumb li:last-child::after {
  content: "";
}

/* ============================================================
   GALLERY + LIGHTBOX
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.gallery img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  transition: transform .4s;
}

.gallery button:hover img {
  transform: scale(1.06);
}

.gallery button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(10, 61, 92, .35));
  opacity: 0;
  transition: .3s;
}

.gallery button:hover::after {
  opacity: 1;
}

.gallery .cap {
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: #fff;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .85rem;
  z-index: 1;
  opacity: 0;
  transition: .3s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}

.gallery button:hover .cap {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8, 30, 45, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.lightbox-cap {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  text-align: center;
  color: #dbeefb;
  font-family: var(--f-head);
}

.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: 0;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .2s;
}

.lightbox button:hover {
  background: rgba(255, 255, 255, .25);
}

.lightbox button svg {
  width: 26px;
  height: 26px;
}

.lb-close {
  top: 22px;
  right: 22px;
}

.lb-prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================================
   TEAM
   ============================================================ */
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.team-card .ph {
  aspect-ratio: 4/3.6;
  overflow: hidden;
  background: var(--panel);
}

.team-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card .tb {
  padding: 24px 26px;
}

.team-card .role {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dk);
}

.team-card h3 {
  margin: 6px 0 10px;
  color: var(--blue-deep);
}

.team-card p {
  font-size: .95rem;
  margin: 0;
  color: var(--body);
}

/* ============================================================
   HOME CARDS (properties)
   ============================================================ */
.home-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}

.home-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.home-card .ph {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.home-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-card .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--grad);
  color: #fff;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 50px;
}

.home-card .tag.soon {
  background: rgba(10, 61, 92, .82);
}

.home-card .body {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.home-card h3 {
  color: var(--blue-deep);
}

.home-card .addr {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--soft);
  font-size: .92rem;
}

.home-card .addr svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex: none;
  margin-top: 2px;
}

.home-card .foot {
  margin-top: auto;
  padding-top: 8px;
}

/* dummy / coming soon illustration */
.dummy-illus {
  aspect-ratio: 16/10;
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f4ee, #dcebf5 120%);
}

.dummy-illus svg {
  width: 46%;
  opacity: .92;
}

.dummy-illus .lbl {
  position: absolute;
  bottom: 14px;
  font-family: var(--f-head);
  font-weight: 600;
  color: var(--blue-dk);
  font-size: .8rem;
  background: rgba(255, 255, 255, .8);
  padding: 5px 14px;
  border-radius: 50px;
}

/* ============================================================
   ACCORDION (FAQ / process)
   ============================================================ */
.accordion {
  display: grid;
  gap: 14px;
  max-width: 840px;
}

.acc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--f-head);
  font-weight: 600;
  color: var(--blue-dk);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
}

.acc summary::-webkit-details-marker {
  display: none;
}

.acc summary .chev {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--panel);
  display: grid;
  place-items: center;
  flex: none;
  transition: .3s;
}

.acc summary .chev svg {
  width: 16px;
  height: 16px;
  color: var(--green-dk);
  transition: transform .3s;
}

.acc[open] summary .chev {
  background: var(--grad);
}

.acc[open] summary .chev svg {
  color: #fff;
  transform: rotate(180deg);
}

.acc .acc-body {
  padding: 0 24px 22px;
  color: var(--body);
}

.acc .acc-body p:last-child {
  margin-bottom: 0;
}

/* steps / process */
.steps {
  counter-reset: step;
  display: grid;
  gap: 22px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.step .num {
  counter-increment: step;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.2rem;
  flex: none;
}

.step .num::before {
  content: counter(step, decimal-leading-zero);
}

.step h3 {
  margin-bottom: .3rem;
  color: var(--blue-dk);
}

.step p {
  margin: 0;
  font-size: .97rem;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--grad);
  padding: clamp(36px, 5vw, 60px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.cta-band .ctb {
  position: relative;
  z-index: 1;
  max-width: 60ch;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: .5rem;
}

.cta-band p {
  color: #eafff0;
  margin: 0;
}

.cta-band .acts {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FORM
   ============================================================ */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-family: var(--f-head);
  font-weight: 600;
  color: var(--ink);
  font-size: .92rem;
  margin-bottom: 7px;
}

.field .req {
  color: var(--green-dk);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: var(--cream);
  transition: .2s;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(91, 178, 71, .12);
}

.field input:user-invalid,
.field textarea:user-invalid,
.field select:user-invalid {
  border-color: #d9534f;
}

.field .err {
  color: #c0392b;
  font-size: .84rem;
  margin-top: 6px;
  display: none;
  font-family: var(--f-head);
  font-weight: 500;
}

.field.invalid .err {
  display: block;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #d9534f;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-note {
  font-size: .85rem;
  color: var(--soft);
  margin-top: 6px;
}

.form-status {
  display: none;
  padding: 16px 18px;
  border-radius: 12px;
  font-family: var(--f-head);
  font-weight: 600;
  margin-bottom: 20px;
}

.form-status.ok {
  display: block;
  background: #e7f6ea;
  color: #256b2e;
  border: 1px solid #bfe3c6;
}

.form-status.bad {
  display: block;
  background: #fdecea;
  color: #b3261e;
  border: 1px solid #f3c2bd;
}

.hp {
  position: absolute;
  left: -9999px;
}

/* contact info cards (legacy — still used elsewhere) */
.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.contact-item .ci {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex: none;
}

.contact-item .ci svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.contact-item h3 {
  font-size: 1.05rem;
  margin-bottom: 3px;
  color: var(--blue-dk);
}

.contact-item p,
.contact-item a {
  margin: 0;
  font-size: .96rem;
  color: var(--body);
}

/* ============================================================
   CONTACT PAGE — redesigned
   ============================================================ */
.contact-hero .wrap {
  padding-bottom: clamp(86px, 11vw, 128px);
}

.hero-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
  padding: 0;
}

.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  color: #e8f4fb;
  font-family: var(--f-head);
  font-weight: 500;
  font-size: .84rem;
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.hero-chips svg {
  width: 16px;
  height: 16px;
  color: var(--lime);
  flex: none;
}

.contact-quick {
  margin-top: clamp(-72px, -7vw, -56px);
  position: relative;
  z-index: 3;
}

.contact-quick .qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.qa {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-decoration: none;
  color: inherit;
}

.qa:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.qa-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--panel);
  display: grid;
  place-items: center;
  flex: none;
}

.qa-ic svg {
  width: 26px;
  height: 26px;
  color: var(--green-dk);
}

.qa-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.qa-lbl {
  font-family: var(--f-head);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .7rem;
  color: var(--green-dk);
}

.qa-val {
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 1.06rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qa-sub {
  color: var(--soft);
  font-size: .84rem;
  margin-top: 2px;
}

.qa-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--panel);
  display: grid;
  place-items: center;
  flex: none;
  transition: .25s;
}

.qa-arrow svg {
  width: 18px;
  height: 18px;
  color: var(--blue-dk);
  transition: .25s;
}

.qa:hover .qa-arrow {
  background: var(--grad);
  transform: translateX(3px);
}

.qa:hover .qa-arrow svg {
  color: #fff;
}

.qa-primary {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 111, 168, .32);
}

.qa-primary .qa-ic {
  background: rgba(255, 255, 255, .18);
}

.qa-primary .qa-ic svg {
  color: #fff;
}

.qa-primary .qa-lbl {
  color: #cdeefb;
}

.qa-primary .qa-val {
  color: #fff;
  font-size: 1.28rem;
}

.qa-primary .qa-sub {
  color: #eafff0;
}

.qa-primary .qa-arrow {
  background: rgba(255, 255, 255, .20);
}

.qa-primary .qa-arrow svg {
  color: #fff;
}

.qa-primary:hover .qa-arrow {
  background: #fff;
}

.qa-primary:hover .qa-arrow svg {
  color: var(--blue-dk);
}

.qa-alert {
  background: linear-gradient(180deg, #fff, #fff6f4);
  border-color: #f7d3cd;
}

.qa-alert .qa-ic {
  background: #fde6e2;
}

.qa-alert .qa-ic svg {
  color: #c0392b;
}

.qa-alert .qa-lbl {
  color: #c0392b;
}

.qa-alert .qa-val {
  color: #7d2117;
}

.qa-alert:hover .qa-arrow {
  background: #c0392b;
}

.section-contact {
  padding-top: clamp(56px, 7vw, 88px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.form-card-deluxe {
  position: relative;
  overflow: hidden;
}

.form-card-deluxe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad-lime);
}

.form-card-deluxe .fc-head {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
}

.form-card-deluxe .fc-head .eyebrow {
  margin-bottom: .5rem;
}

.form-card-deluxe .fc-head h2 {
  margin: 0 0 .4rem;
  color: var(--blue-deep);
}

.form-card-deluxe .fc-head .lead {
  margin: 0;
  font-size: 1rem;
  color: var(--soft);
}

.form-card-deluxe .form-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: var(--panel);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--blue-dk);
  margin-top: 10px;
}

.form-card-deluxe .form-note svg {
  width: 16px;
  height: 16px;
  color: var(--green-dk);
  flex: none;
  margin-top: 3px;
}

.contact-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}

.aside-card:hover {
  box-shadow: var(--shadow);
}

.aside-card>h3 {
  color: var(--blue-deep);
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.loc-list {
  list-style: none;
  display: grid;
  gap: 18px;
  padding: 0;
}

.loc-list>li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
}

.loc-pin {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 6px 16px rgba(15, 111, 168, .22);
}

.loc-pin svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.loc-pin.soon {
  background: linear-gradient(135deg, #8095a3, #5d7384);
  box-shadow: 0 6px 16px rgba(93, 115, 132, .22);
}

.loc-name {
  margin: 0 0 4px;
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 1.02rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.loc-tag {
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--grad-lime);
  color: var(--blue-deep);
  padding: 3px 9px;
  border-radius: 50px;
}

.loc-tag.tag-soon {
  background: #eaf1f5;
  color: var(--soft);
}

.loc-addr {
  margin: 0 0 8px;
  color: var(--body);
  font-size: .9rem;
  line-height: 1.55;
}

.loc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--green-dk);
}

.loc-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}

.loc-link:hover {
  color: var(--blue-dk);
}

.loc-link:hover svg {
  transform: translateX(3px);
}

.aside-office p {
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--body);
  font-size: .94rem;
  line-height: 1.55;
}

.aside-office svg {
  width: 18px;
  height: 18px;
  color: var(--green-dk);
  flex: none;
  margin-top: 3px;
}

.hours {
  list-style: none;
  display: grid;
  gap: 0;
  padding: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
}

.hours li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours li:first-child {
  padding-top: 4px;
}

.hours li span {
  color: var(--body);
  font-size: .92rem;
}

.hours li b {
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--green-dk);
  font-size: .9rem;
  text-align: right;
  white-space: nowrap;
}

@media (max-width:1024px) {
  .contact-quick .qa-grid {
    grid-template-columns: 1fr;
  }

  .qa-primary {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
    top: auto;
  }
}

@media (max-width:560px) {
  .qa {
    grid-template-columns: auto 1fr;
    padding: 18px 20px;
  }

  .qa-arrow {
    display: none;
  }

  .qa-val {
    font-size: 1rem;
  }

  .qa-primary .qa-val {
    font-size: 1.15rem;
  }

  .hero-chips li {
    font-size: .78rem;
    padding: 7px 13px;
  }
}

/* ============================================================
   SAFEGUARDING PAGE — redesigned
   ============================================================ */
.safeguard-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .74rem;
  color: #cdeefb;
  background: rgba(255, 255, 255, .10);
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
}

.safeguard-hero .hero-eyebrow svg {
  width: 16px;
  height: 16px;
  color: var(--lime);
}

.safeguard-hero h1 {
  color: #fff;
  max-width: 22ch;
}

.safeguard-hero h1 .hl {
  background: var(--grad-lime);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.qa-grid.qa-grid-2 {
  grid-template-columns: 1fr 1fr;
}

@media (max-width:1024px) {
  .qa-grid.qa-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* pillars (4 commitments) */
.pillars {
  margin-top: 6px;
}

.pillar {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
  height: 100%;
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: .35s;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar .p-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(15, 111, 168, .22);
}

.pillar .p-ic svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.pillar h3 {
  color: var(--blue-deep);
  margin-bottom: .45rem;
  font-size: 1.08rem;
}

.pillar p {
  margin: 0;
  color: var(--body);
  font-size: .94rem;
}

/* split-section adjustments for safeguarding */
.sg-split {
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 52px);
}

@media (max-width:860px) {
  .sg-split {
    grid-template-columns: 1fr;
  }
}

/* escalation card */
.escalation-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.escalation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad);
}

.ec-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}

.ec-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--panel);
  display: grid;
  place-items: center;
  flex: none;
}

.ec-ic svg {
  width: 22px;
  height: 22px;
  color: var(--green-dk);
}

.ec-head .eyebrow {
  margin: 0 0 .2rem;
}

.ec-head h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 1.1rem;
}

.escalation {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  counter-reset: esc;
}

.escalation li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 14px 0;
  position: relative;
}

.escalation li+li {
  border-top: 1px dashed var(--line);
}

.escalation li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 48px;
  bottom: -14px;
  width: 2px;
  background: linear-gradient(to bottom, var(--line), transparent);
}

.escalation li:last-child::before {
  display: none;
}

.escalation .e-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1rem;
  flex: none;
  z-index: 1;
}

.escalation .e-title {
  margin: 4px 0 4px;
  font-family: var(--f-head);
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.escalation .e-tag {
  font-family: var(--f-head);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--grad-lime);
  color: var(--blue-deep);
  padding: 3px 8px;
  border-radius: 50px;
}

.escalation .e-desc {
  margin: 0;
  color: var(--body);
  font-size: .9rem;
  line-height: 1.55;
}

/* numbered risk-management steps */
.sg-steps {
  max-width: 880px;
}

.sg-steps .step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}

.sg-steps .step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.sg-steps .step h3 {
  color: var(--blue-deep);
}

/* surveillance callout banner */
.callout {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fff7e6, #fffbf2);
  border: 1px solid #f3dca6;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.co-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f7d774;
  display: grid;
  place-items: center;
  flex: none;
}

.co-ic svg {
  width: 22px;
  height: 22px;
  color: #7a5300;
}

.callout p {
  margin: 0;
  color: #5e4500;
  font-size: .98rem;
  line-height: 1.6;
}

.callout b {
  color: #3d2d00;
  font-weight: 700;
}

.sg-monitor {
  margin-bottom: 28px;
}

.sg-monitor .feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}

.sg-monitor .feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.sg-monitor .feature h3 {
  font-size: 1.05rem;
  color: var(--blue-deep);
}

.sg-monitor .feature p {
  font-size: .92rem;
}

/* absences card */
.absence-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green);
}

.absence-card .ac-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--grad);
  display: grid;
  place-items: center;
  flex: none;
}

.absence-card .ac-ic svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.absence-card h3 {
  margin: 0 0 .35rem;
  color: var(--blue-deep);
  font-size: 1.1rem;
}

.absence-card p {
  margin: 0;
  color: var(--body);
  font-size: .96rem;
}

/* safeguarding CTA */
.sg-cta {
  background: linear-gradient(135deg, #0A3D5C 0%, #0B5176 55%, #0F6FA8 100%);
}

.sg-cta::after {
  background: rgba(167, 212, 41, .10);
}

.sg-cta .cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-head);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--lime);
  margin-bottom: 10px;
}

.sg-cta .cta-eyebrow svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--blue-deep);
  color: #bcd4e2;
  font-size: .95rem;
}

.site-footer a {
  color: #cfe6f3;
}

.site-footer a:hover {
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-block: clamp(46px, 6vw, 72px);
}

.footer-brand img {
  height: 48px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #9fc0d2;
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--f-head);
  color: #fff;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--lime);
  flex: none;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #84a6ba;
  font-size: .85rem;
}

.footer-bottom .fb-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ============================================================
   UTIL: reveal animation, loader
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--blue-deep);
  display: grid;
  place-items: center;
  transition: opacity .5s;
}

.page-loader.done {
  opacity: 0;
  pointer-events: none;
}

.page-loader .spin {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, .2);
  border-top-color: var(--lime);
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

img.lazy {
  background: var(--panel);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1140px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 8px 11px;
    font-size: .92rem;
  }

  .nav-phone {
    display: none;
  }
}

@media (max-width:1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-figure {
    max-width: 560px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links a {
    padding: 8px 9px;
    font-size: .88rem;
  }

  .nav-cta .btn-primary {
    padding: .72em 1.15em;
    font-size: .92rem;
  }
}

@media (max-width:900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gut);
    gap: 2px;
    box-shadow: var(--shadow);
    font-size: 1rem;
  }

  .nav-links.open a {
    padding: 14px 12px;
    border-radius: 10px;
    font-size: 1.05rem;
    white-space: normal;
  }

  .nav-links.open a[aria-current="page"]::after {
    display: none;
  }

  .nav-links.open a[aria-current="page"] {
    background: var(--panel);
  }
}

@media (max-width:860px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split.rev .split-media {
    order: 0;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width:480px) {
  body {
    font-size: 16px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn,
  .cta-band .btn {
    width: auto;
  }
}