/* ============================================================
   SALUS CARE — site styles
   Navy-cyan dark surfaces · cream pages · cyan as primary accent.
   Mirrors the Scale With Salus / Stay With Salus component DNA.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* PRIMARY — navy-cyan dark surfaces */
  --sc-cyan-deep:    #1F4A5E;
  --sc-cyan-deep-2:  #142F3D;
  --sc-cyan:         #3D7C95;
  --sc-cyan-soft:    #5B9CB8;
  --sc-cyan-tint:    #d9e5ec;

  /* NEUTRALS */
  --sc-cream:        #F3ECD8;
  --sc-bone:         #faf7f1;
  --sc-stone:        #e8e3d8;
  --sc-white:        #ffffff;

  /* TEXT */
  --sc-ink:          #1A1F1A;
  --sc-charcoal:     #3d3a32;
  --sc-muted:        #8a8478;
  --sc-line:         #d9d1bd;
  --sc-line-soft:    #e6dfc8;

  /* Text + lines on dark surfaces */
  --sc-text-on-dk:   rgba(243,236,216,0.92);
  --sc-text-dk-mute: rgba(243,236,216,0.60);
  --sc-line-on-dk:   rgba(243,236,216,0.16);

  /* Type scale */
  --t-display-xl: clamp(48px, 6.4vw, 92px);
  --t-display-lg: clamp(38px, 4.6vw, 64px);
  --t-display-md: clamp(28px, 3.2vw, 42px);
  --t-display-sm: clamp(22px, 2.3vw, 30px);
  --t-body-lg: 18px;
  --t-body: 16px;
  --t-small: 14px;
  --t-micro: 13px;
  --t-eyebrow: 13px;
}

html, body { background: var(--sc-cream); color: var(--sc-ink); }

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ============ TYPOGRAPHY PRIMITIVES ============ */
.display, h1.display, h2.display, h3.display {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--sc-ink);
}
.display em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--sc-cyan);
  letter-spacing: -0.01em;
}
.on-dk .display, .on-dk h1, .on-dk h2, .on-dk h3 { color: var(--sc-cream); }
.on-dk .display em { color: var(--sc-cyan-soft); }

h1.display { font-size: var(--t-display-xl); }
h2.display { font-size: var(--t-display-lg); }
h3.display { font-size: var(--t-display-md); font-weight: 500; }
h4 { font-family: 'Outfit', sans-serif; font-weight: 500; font-size: var(--t-display-sm); color: var(--sc-ink); line-height: 1.2; }

.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: var(--t-eyebrow);
  color: var(--sc-cyan);
  display: inline-block;
}
.on-dk .eyebrow { color: var(--sc-cyan-soft); }

.eyebrow-rule { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.eyebrow-rule::before {
  content: ''; width: 36px; height: 1px;
  background: currentColor; opacity: 0.7;
  display: inline-block;
  color: var(--sc-cyan);
}
.on-dk .eyebrow-rule::before { color: var(--sc-cyan-soft); }

.lede {
  font-size: var(--t-body-lg);
  line-height: 1.6;
  color: var(--sc-ink);
  max-width: 600px;
}
.on-dk .lede { color: var(--sc-text-on-dk); }

.body-md { font-size: var(--t-body); line-height: 1.65; color: var(--sc-ink); }
.body-sm { font-size: var(--t-small); line-height: 1.65; color: var(--sc-ink); }
.on-dk .body-md, .on-dk .body-sm { color: var(--sc-text-on-dk); }

.muted { color: var(--sc-muted); }
.on-dk .muted { color: var(--sc-text-dk-mute); }

em.cyan { color: var(--sc-cyan); font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 500; }
.on-dk em.cyan { color: var(--sc-cyan-soft); }

/* ============ LAYOUT ============ */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 40px; }

section.band { padding: 120px 0; }
section.band-sm { padding: 80px 0; }
.bg-cream { background: var(--sc-cream); color: var(--sc-ink); }
.bg-bone  { background: var(--sc-bone);  color: var(--sc-ink); }
.bg-stone { background: var(--sc-stone); color: var(--sc-ink); }
.bg-white { background: var(--sc-white); color: var(--sc-ink); }
.bg-dark  { background: var(--sc-cyan-deep);   color: var(--sc-text-on-dk); }
.bg-deep  { background: var(--sc-cyan-deep-2); color: var(--sc-text-on-dk); }
.on-dk { color: var(--sc-text-on-dk); }

.section-head { max-width: 760px; margin: 0 0 60px; }
.section-head.center { margin: 0 auto 64px; text-align: center; }
.section-head.center .eyebrow-rule { justify-content: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }
.section-head .lede { margin-top: 22px; }

/* ============ BUTTONS — cyan family, no green ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 26px; border-radius: 2px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform 0.18s; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-lg { padding: 17px 32px; font-size: 15px; }

/* Filled cyan — primary action everywhere */
.btn-cyan { background: var(--sc-cyan); color: var(--sc-cream); border-color: var(--sc-cyan); }
.btn-cyan:hover { background: var(--sc-cyan-deep); border-color: var(--sc-cyan-deep); }

/* Outline cyan — secondary on light backgrounds */
.btn-outline { background: transparent; color: var(--sc-cyan); border-color: var(--sc-cyan); }
.btn-outline:hover { background: var(--sc-cyan); color: var(--sc-cream); }

/* Filled cream — primary on dark backgrounds */
.btn-cream { background: var(--sc-cream); color: var(--sc-cyan-deep); border-color: var(--sc-cream); }
.btn-cream:hover { background: var(--sc-white); }

/* Ghost on dark — secondary on dark backgrounds */
.btn-cyan-ghost { background: transparent; color: var(--sc-cream); border-color: var(--sc-cyan-soft); }
.btn-cyan-ghost:hover { background: var(--sc-cyan-soft); color: var(--sc-cyan-deep); border-color: var(--sc-cyan-soft); }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--sc-cyan-deep-2);
  color: var(--sc-text-dk-mute);
  font-size: var(--t-small);
}
.topbar-inner {
  max-width: 1240px; margin: 0 auto; padding: 10px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.topbar-left span { display: inline-flex; align-items: center; gap: 10px; }
.topbar-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sc-cyan-soft); }
.topbar a { color: var(--sc-cream); text-decoration: none; font-weight: 500; }
.topbar a:hover { color: var(--sc-cyan-soft); }

/* ============ NAV ============ */
nav.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--sc-cream);
  border-bottom: 1px solid var(--sc-line);
}
nav.site-nav.scrolled { box-shadow: 0 4px 20px rgba(20,47,61,0.06); }
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px; height: 84px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-link img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--sc-ink);
  text-decoration: none; padding: 4px 0;
  position: relative; transition: color 0.18s;
}
.nav-links a:hover { color: var(--sc-cyan); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--sc-cyan);
}
.nav-ctas { display: flex; gap: 10px; align-items: center; }

/* ============ MOBILE NAV (burger + dropdown) ============ */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  background: transparent; border: 1px solid var(--sc-line);
  border-radius: 4px;
  cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.nav-burger:hover { border-color: var(--sc-cyan); }
.nav-burger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--sc-ink);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-burger[aria-expanded="true"] { background: var(--sc-cyan); border-color: var(--sc-cyan); }
.nav-burger[aria-expanded="true"] span { background: var(--sc-cream); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--sc-cream);
  border-bottom: 1px solid var(--sc-line);
  padding: 12px 24px 24px;
}
.mobile-menu.open { display: block; }

/* Desktop default: hide the mobile parts */
@media (min-width: 981px) {
  .nav-burger { display: none !important; }
  .mobile-menu { display: none !important; }
}
.mobile-menu a {
  display: block;
  font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 500;
  color: var(--sc-ink); text-decoration: none;
  padding: 14px 4px;
  border-bottom: 1px solid var(--sc-line);
}
.mobile-menu a:hover { color: var(--sc-cyan); }
.mobile-menu-ctas {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 16px;
}
.mobile-menu-ctas .btn { justify-content: center; padding: 14px; font-size: 14px; }

/* ============ HERO ============ */
.hero {
  background: var(--sc-cyan-deep);
  color: var(--sc-text-on-dk);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 30%, rgba(91,156,184,0.18), transparent 60%),
              radial-gradient(ellipse 50% 50% at 15% 90%, rgba(91,156,184,0.10), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1240px; margin: 0 auto; padding: 110px 40px 120px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center;
}
.hero-text h1.display {
  margin-bottom: 28px; font-size: var(--t-display-xl);
  font-weight: 500;
}
.hero-text .lede { margin-bottom: 44px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,47,61,0) 50%, rgba(20,47,61,0.30) 100%);
  pointer-events: none;
}
.hero-image .badge {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(20,47,61,0.78); backdrop-filter: blur(8px);
  color: var(--sc-cream); padding: 14px 18px;
  border-left: 2px solid var(--sc-cyan-soft);
  font-size: var(--t-small);
}
.hero-image .badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: var(--sc-cyan-soft); margin-bottom: 2px; font-weight: 500; }

.hero-stats {
  display: flex; gap: 56px; flex-wrap: wrap;
  margin-top: 60px; padding-top: 36px;
  border-top: 1px solid var(--sc-line-on-dk);
}
.hero-stat .num {
  font-family: 'Outfit', sans-serif; font-weight: 300; font-size: 48px; line-height: 1;
  color: var(--sc-cream); letter-spacing: -0.02em;
}
.hero-stat .num em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sc-cyan-soft); font-weight: 500; }
.hero-stat .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--sc-text-dk-mute);
  margin-top: 10px;
}

/* ============ TRUST STRIP (5 signals) ============ */
.trust-strip { background: var(--sc-bone); border-bottom: 1px solid var(--sc-line); border-top: 1px solid var(--sc-line); }
.trust-strip-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.trust-cell {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--sc-line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.trust-cell:last-child { border-right: none; }
.trust-cell:hover { background: var(--sc-cream); }
.trust-val {
  font-family: 'Outfit', sans-serif; font-weight: 300;
  font-size: 38px; line-height: 1; color: var(--sc-ink);
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.trust-val em {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--sc-cyan); font-weight: 500;
}
.trust-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sc-muted);
  line-height: 1.4; max-width: 180px;
}

/* ============ PILLAR GRID (Why Salus) ============ */
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--sc-line);
  border-left: 1px solid var(--sc-line);
  background: var(--sc-white);
}
.pillar {
  padding: 40px 36px;
  border-right: 1px solid var(--sc-line);
  border-bottom: 1px solid var(--sc-line);
  background: var(--sc-white);
  display: flex; flex-direction: column;
}
.pillar-n {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 18px; color: var(--sc-cyan); margin-bottom: 18px;
  font-weight: 500;
}
.pillar h4 { margin-bottom: 12px; font-size: 22px; }
.pillar p { font-size: var(--t-body); line-height: 1.65; color: var(--sc-charcoal); }

/* ============ SERVICES ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 30px;
}
.service-card {
  background: var(--sc-white);
  padding: 36px 32px 32px;
  border: 1px solid var(--sc-line);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--sc-cyan); }
.service-card.featured { border-color: var(--sc-cyan); background: var(--sc-white); box-shadow: 0 0 0 1px var(--sc-cyan) inset, 0 8px 24px rgba(31,74,94,0.08); }
.service-pill {
  position: absolute; top: -10px; left: 32px;
  background: var(--sc-cyan); color: var(--sc-white);
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 5px 12px;
}
.service-card .service-n {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sc-cyan); font-weight: 600;
}
.service-card h4 { font-size: 24px; }
.service-card p { font-size: 15px; line-height: 1.65; color: var(--sc-charcoal); flex-grow: 1; }
.service-rate {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px; border-top: 1px solid var(--sc-line);
  font-size: 13px; color: var(--sc-muted);
}
.service-rate .rate {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; color: var(--sc-cyan); font-weight: 500;
}

/* ============ PHOTO STRIP ============ */
.photo-strip { position: relative; overflow: hidden; }
.photo-strip img { width: 100%; height: 480px; object-fit: cover; display: block; }
.photo-strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,47,61,0) 0%, rgba(20,47,61,0.15) 100%);
}

/* ============ PROCESS STEPS ============ */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  margin-top: 30px;
}
.process-step { position: relative; }
.process-step .step-rule {
  height: 1px; background: var(--sc-line);
  margin-bottom: 22px; position: relative;
}
.process-step .step-rule::before {
  content: ''; position: absolute; left: 0; top: -3px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--sc-cyan);
}
.process-step .step-n {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sc-cyan); font-weight: 600; margin-bottom: 14px;
}
.process-step h4 { font-size: 24px; margin-bottom: 10px; }
.process-step p { font-size: 15px; line-height: 1.65; color: var(--sc-charcoal); }

/* ============ COMPARISON TABLE ============ */
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--sc-white); border: 1px solid var(--sc-line);
  margin-top: 30px;
}
.compare-table th, .compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--sc-line);
  vertical-align: middle;
}
.compare-table thead th {
  background: var(--sc-cyan-deep); color: var(--sc-cream);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-bottom: none;
}
.compare-table thead th.us { color: var(--sc-cyan-soft); }
.compare-table tbody td { font-size: 15px; color: var(--sc-ink); }
.compare-table td:first-child { font-weight: 500; }
.compare-table td.us { background: var(--sc-cyan-tint); color: var(--sc-ink); font-weight: 500; }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* ============ CALLOUT ============ */
.callout {
  background: var(--sc-cream); border-left: 3px solid var(--sc-cyan);
  padding: 36px 40px;
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  align-items: start;
  margin-top: 0;
}
.callout-lozenge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sc-cyan);
  padding-top: 6px;
  white-space: nowrap;
}
.callout-text { font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1.45; color: var(--sc-ink); font-style: italic; font-weight: 400; }

/* ============ TESTIMONIALS ============ */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 60px; }
.quote-card { display: flex; flex-direction: column; gap: 22px; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 80px; line-height: 0.8; color: var(--sc-cyan-soft);
}
.quote-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.4;
  color: var(--sc-cream);
}
.quote-attr {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sc-cyan-soft); padding-top: 10px;
  border-top: 1px solid var(--sc-line-on-dk);
}

/* ============ PRICING ============ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.price-card {
  background: var(--sc-white); border: 1px solid var(--sc-line);
  padding: 36px 32px;
  display: flex; flex-direction: column;
}
.price-card.feat { border-color: var(--sc-cyan); box-shadow: 0 8px 24px rgba(31,74,94,0.08); }
.price-card .price-type {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sc-cyan); font-weight: 600; margin-bottom: 14px;
}
.price-card .price-name { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 500; color: var(--sc-ink); margin-bottom: 22px; line-height: 1.2; }
.price-card .price-figure { display: flex; align-items: baseline; gap: 8px; margin-bottom: 26px; }
.price-card .price-figure .num { font-family: 'Outfit', sans-serif; font-size: 52px; font-weight: 300; color: var(--sc-ink); line-height: 1; letter-spacing: -0.02em; }
.price-card .price-figure .num em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sc-cyan); font-weight: 500; }
.price-card .price-figure .unit { font-size: 13px; color: var(--sc-muted); letter-spacing: 0.06em; }
.price-list { display: flex; flex-direction: column; gap: 10px; padding-top: 18px; border-top: 1px solid var(--sc-line); margin-bottom: 28px; }
.price-row { display: flex; justify-content: space-between; font-size: 14px; }
.price-row .lbl { color: var(--sc-muted); }
.price-row .val { color: var(--sc-ink); font-weight: 500; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* ============ DEMENTIA HUB ============ */
.dem-stages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 30px; border-top: 1px solid var(--sc-line); }
.dem-stage { padding: 36px 28px 36px 0; border-right: 1px solid var(--sc-line); padding-left: 28px; }
.dem-stage:last-child { border-right: none; }
.dem-stage:first-child { padding-left: 0; }
.dem-stage-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--sc-cyan); font-weight: 600; margin-bottom: 16px; }
.dem-stage h4 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 28px; font-weight: 500; color: var(--sc-ink); margin-bottom: 14px; line-height: 1.15; }
.dem-stage p { font-size: 15px; line-height: 1.65; color: var(--sc-charcoal); }

.dem-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.dem-card {
  background: var(--sc-white); border: 1px solid var(--sc-line);
  padding: 36px 32px; position: relative;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.dem-card:hover { border-color: var(--sc-cyan); transform: translateY(-2px); }
.dem-card.feat { border-color: var(--sc-cyan); box-shadow: 0 0 0 1px var(--sc-cyan) inset, 0 8px 24px rgba(31,74,94,0.08); }
.dem-card .num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sc-cyan); font-weight: 600; margin-bottom: 12px;
}
.dem-card h4 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 500; color: var(--sc-ink); margin-bottom: 16px; }
.dem-card ul { list-style: none; padding: 0; margin-bottom: 22px; }
.dem-card li { font-size: 14px; color: var(--sc-charcoal); line-height: 1.6; padding: 8px 0 8px 20px; position: relative; border-bottom: 1px dotted var(--sc-line); }
.dem-card li:last-child { border-bottom: none; }
.dem-card li::before { content: ''; position: absolute; left: 0; top: 17px; width: 8px; height: 1px; background: var(--sc-cyan); }
.dem-card-rate {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; color: var(--sc-cyan); font-weight: 500;
  padding-top: 16px; border-top: 1px solid var(--sc-line);
  margin-top: auto;
}
.dem-card-pill {
  position: absolute; top: -10px; left: 32px;
  background: var(--sc-cyan); color: var(--sc-white);
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 5px 12px;
}

.benefits-light { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 30px; border-top: 1px solid var(--sc-line); border-left: 1px solid var(--sc-line); }
.benefit-light {
  background: var(--sc-bone);
  padding: 36px 32px;
  border-right: 1px solid var(--sc-line);
  border-bottom: 1px solid var(--sc-line);
  transition: background 0.2s;
}
.benefit-light:hover { background: var(--sc-white); }
.benefit-light .n {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--sc-cyan); font-size: 32px; font-weight: 500;
  margin-bottom: 12px; display: block; line-height: 1;
}
.benefit-light h4 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 500; color: var(--sc-ink); margin-bottom: 12px; line-height: 1.25; }
.benefit-light p { font-size: 14px; line-height: 1.65; color: var(--sc-charcoal); }

.matching-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; margin-top: 30px; align-items: start; }
.matching-narrative { font-size: 17px; line-height: 1.7; color: var(--sc-ink); }
.matching-narrative p { margin-bottom: 18px; }
.matching-narrative p:last-child { margin-bottom: 0; }
.matching-pillars { display: flex; flex-direction: column; gap: 0; background: var(--sc-white); border: 1px solid var(--sc-line); }
.matching-pillar { padding: 28px 30px; border-bottom: 1px solid var(--sc-line); }
.matching-pillar:last-child { border-bottom: none; }
.matching-pillar .lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sc-cyan); font-weight: 600; margin-bottom: 8px; }
.matching-pillar h4 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; font-weight: 500; color: var(--sc-ink); margin-bottom: 6px; line-height: 1.25; }
.matching-pillar p { font-size: 14px; color: var(--sc-charcoal); line-height: 1.6; }

.dem-link-note {
  margin-top: 24px; padding: 20px 22px;
  background: var(--sc-cyan-tint); border-left: 3px solid var(--sc-cyan);
  font-size: 14px; line-height: 1.6; color: var(--sc-ink);
}
.dem-link-note a { color: var(--sc-cyan); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--sc-cyan); }
.dem-link-note a:hover { color: var(--sc-cyan-deep); border-color: var(--sc-cyan-deep); }

/* ============ FAQ ACCORDION ============ */
.faq-list { margin-top: 30px; border-top: 1px solid var(--sc-line); }
.faq-item {
  border-bottom: 1px solid var(--sc-line);
  transition: background 0.2s;
}
.faq-item:hover { background: var(--sc-bone); }
.faq-q {
  display: grid; grid-template-columns: 60px 1fr 30px; align-items: center; gap: 20px;
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 24px 8px;
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 500;
  color: var(--sc-ink); text-align: left; line-height: 1.4;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--sc-cyan); }
.faq-q .n {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 24px; color: var(--sc-cyan); font-weight: 500;
}
.faq-q .toggle {
  width: 28px; height: 28px; position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--sc-line); border-radius: 50%;
  transition: border-color 0.2s, background 0.2s;
}
.faq-q .toggle::before, .faq-q .toggle::after {
  content: ''; position: absolute;
  background: var(--sc-cyan); transition: transform 0.25s;
}
.faq-q .toggle::before { width: 12px; height: 1.5px; }
.faq-q .toggle::after  { width: 1.5px; height: 12px; }
.faq-item.open .faq-q .toggle { background: var(--sc-cyan); border-color: var(--sc-cyan); }
.faq-item.open .faq-q .toggle::before, .faq-item.open .faq-q .toggle::after { background: var(--sc-cream); }
.faq-item.open .faq-q .toggle::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 8px 0 88px;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 28px; }
.faq-a p { font-size: 16px; line-height: 1.7; color: var(--sc-charcoal); max-width: 760px; }

/* ============ CAREERS ============ */
.careers-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 60px; }

.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.benefit {
  background: rgba(243,236,216,0.05); border: 1px solid var(--sc-line-on-dk);
  padding: 22px 24px;
}
.benefit-n { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sc-cyan-soft); font-size: 22px; margin-bottom: 8px; font-weight: 500; }
.benefit h5 { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 500; color: var(--sc-cream); margin-bottom: 4px; }
.benefit p { font-size: 13px; color: var(--sc-text-dk-mute); line-height: 1.5; }

.vacancy-list { border-top: 1px solid var(--sc-line-on-dk); margin-top: 24px; }
.vacancy {
  display: grid; grid-template-columns: 60px 1fr auto auto; gap: 28px;
  align-items: center; padding: 26px 12px;
  border-bottom: 1px solid var(--sc-line-on-dk);
  transition: background 0.2s;
}
.vacancy:hover { background: rgba(243,236,216,0.04); }
.vacancy-n { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sc-cyan-soft); font-size: 22px; }
.vacancy h4 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 500; color: var(--sc-cream); margin-bottom: 6px; }
.vacancy-meta { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; color: var(--sc-text-dk-mute); }
.vacancy-pay { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--sc-cyan-soft); font-size: 22px; font-weight: 500; white-space: nowrap; }

/* ============ APPLY FORM (multi-step) ============ */
.apply-wrap {
  background: var(--sc-white); border: 1px solid var(--sc-line);
  padding: 56px;
  max-width: 920px; margin: 0 auto;
}
.apply-stepper {
  display: flex; gap: 0; margin-bottom: 36px;
  border-bottom: 1px solid var(--sc-line);
}
.apply-step-item {
  flex: 1; padding: 14px 10px; text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sc-muted);
  border-bottom: 2px solid transparent;
}
.apply-step-item .n { font-family: 'Cormorant Garamond', serif; font-style: italic; margin-right: 8px; font-size: 18px; letter-spacing: 0; }
.apply-step-item.on { color: var(--sc-ink); border-bottom-color: var(--sc-cyan); }
.apply-step-item.done { color: var(--sc-cyan); }

.apply-step { display: none; }
.apply-step.on { display: block; }

.field-section-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; color: var(--sc-ink); font-weight: 500;
  margin: 24px 0 14px;
}
.field-section-title:first-child { margin-top: 0; }
.field-help { font-size: 13px; color: var(--sc-muted); margin: -4px 0 14px; line-height: 1.5; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sc-muted); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--sc-bone); border: 1px solid var(--sc-line);
  color: var(--sc-ink);
  padding: 13px 15px; font-family: 'Outfit', sans-serif; font-size: 15px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--sc-cyan);
  box-shadow: 0 0 0 3px rgba(61,124,149,0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--sc-muted); }

.file-drop {
  border: 1.5px dashed var(--sc-line); padding: 26px;
  text-align: center; cursor: pointer; display: block;
  background: var(--sc-bone);
  transition: border-color 0.2s, background 0.2s;
}
.file-drop:hover { border-color: var(--sc-cyan); background: var(--sc-cyan-tint); }
.file-drop input { display: none; }
.file-drop-icon { width: 32px; height: 32px; margin: 0 auto 10px; color: var(--sc-cyan); }
.file-drop-title { font-size: 14px; font-weight: 500; color: var(--sc-ink); }
.file-drop-sub { font-size: 12px; color: var(--sc-muted); margin-top: 4px; }
.file-drop.has-file { border-color: var(--sc-cyan); background: var(--sc-cyan-tint); }
.file-drop.has-file .file-drop-title { color: var(--sc-cyan); font-weight: 600; }

.ref-block {
  border: 1px solid var(--sc-line); background: var(--sc-bone);
  padding: 22px 24px; margin-bottom: 14px;
}
.ref-block h5 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 18px; color: var(--sc-ink); margin-bottom: 12px; font-weight: 500;
}

.consent-row { display: flex; gap: 10px; align-items: flex-start; margin: 14px 0; }
.consent-row input { margin-top: 4px; flex: 0 0 auto; accent-color: var(--sc-cyan); }
.consent-row label {
  font-size: 14px; color: var(--sc-ink); line-height: 1.55;
  font-family: 'Outfit', sans-serif; letter-spacing: 0;
  text-transform: none; font-weight: 400;
}

.apply-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 22px;
  border-top: 1px solid var(--sc-line); gap: 14px; flex-wrap: wrap;
}
.apply-progress {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--sc-muted);
}

.apply-summary {
  background: var(--sc-bone); border: 1px solid var(--sc-line);
  padding: 26px;
}
.apply-summary .sum-section {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 18px; color: var(--sc-cyan); margin: 16px 0 8px; font-weight: 500;
}
.apply-summary .sum-section:first-child { margin-top: 0; }
.apply-summary .row {
  display: grid; grid-template-columns: 180px 1fr; gap: 12px;
  padding: 6px 0; font-size: 13px;
  border-bottom: 1px dotted var(--sc-line);
}
.apply-summary .row .k {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sc-muted);
}
.apply-summary .row .v { color: var(--sc-ink); font-size: 14px; }

.apply-success {
  text-align: center; padding: 60px 20px;
}
.apply-success-tick {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--sc-cyan); color: var(--sc-white);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.apply-success h3 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 36px; color: var(--sc-ink); margin-bottom: 14px; font-weight: 500;
}
.apply-success p { color: var(--sc-ink); max-width: 480px; margin: 0 auto; line-height: 1.65; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; margin-top: 44px; padding-top: 40px; border-top: 1px solid var(--sc-line); }
.contact-info-item { display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: start; }
.contact-info-item .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--sc-cyan); padding-top: 2px;
}
.contact-info-item .val { font-size: 15px; line-height: 1.6; color: var(--sc-ink); }
.contact-info-item .val a { color: var(--sc-ink); text-decoration: none; border-bottom: 1px solid var(--sc-line); }
.contact-info-item .val a:hover { color: var(--sc-cyan); border-color: var(--sc-cyan); }

.contact-form {
  background: var(--sc-white); border: 1px solid var(--sc-line);
  padding: 44px;
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 26px; color: var(--sc-ink); font-weight: 500; margin-bottom: 10px;
}
.contact-form p.intro { font-size: 14px; color: var(--sc-muted); margin-bottom: 24px; line-height: 1.55; }
.form-submit {
  width: 100%; background: var(--sc-cyan); color: var(--sc-cream);
  border: none; padding: 16px;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer; transition: background 0.2s; border-radius: 2px;
  margin-top: 6px;
}
.form-submit:hover { background: var(--sc-cyan-deep); }

/* ============ CTA BANNER ============ */
.cta-banner { background: var(--sc-cyan-deep-2); padding: 100px 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(91,156,184,0.10), transparent 70%);
}
.cta-inner {
  position: relative;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center;
}
.cta-inner h2 { color: var(--sc-cream); font-size: var(--t-display-md); font-weight: 500; line-height: 1.1; }
.cta-inner h2 em { color: var(--sc-cyan-soft); font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; }
.cta-inner p { color: var(--sc-text-on-dk); font-size: 17px; margin-top: 16px; line-height: 1.6; max-width: 520px; }
.cta-actions { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }

/* ============ FOOTER ============ */
footer.site-footer {
  background: var(--sc-cyan-deep-2);
  color: var(--sc-text-on-dk);
  padding: 80px 40px 36px;
  border-top: 1px solid var(--sc-line-on-dk);
}
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 56px; border-bottom: 1px solid var(--sc-line-on-dk);
}
.footer-brand img { height: 46px; width: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: var(--sc-text-dk-mute); max-width: 360px; }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sc-cyan-soft); margin-bottom: 22px;
}
.footer-col a, .footer-col .item {
  display: block;
  font-size: 14px; color: var(--sc-text-on-dk);
  text-decoration: none; margin-bottom: 10px;
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--sc-cyan-soft); }
.footer-bottom {
  max-width: 1240px; margin: 28px auto 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; color: var(--sc-text-dk-mute);
}
.footer-bottom a { color: var(--sc-text-dk-mute); text-decoration: none; margin: 0 8px; }
.footer-bottom a:hover { color: var(--sc-cyan-soft); }

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.40s; }
.reveal.delay-6 { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ AWARDS / MILESTONE ============ */
.award-band {
  background: linear-gradient(180deg, var(--sc-cyan-deep) 0%, var(--sc-cyan-deep-2) 100%);
  color: var(--sc-cream);
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.award-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 20% 50%, rgba(212,175,99,0.10), transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(91,156,184,0.10), transparent 60%);
  pointer-events: none;
}
.award-inner {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: center;
}
.award-text .eyebrow,
.award-text .eyebrow-rule::before { color: var(--gold) !important; }
.award-text h2 {
  font-family: 'Outfit', sans-serif; font-weight: 500;
  font-size: clamp(34px, 4vw, 56px); line-height: 1.05;
  letter-spacing: -0.015em; color: var(--sc-cream);
  margin-bottom: 22px;
}
.award-text h2 em {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--gold); font-weight: 500;
}
.award-text p { font-size: 17px; line-height: 1.65; color: var(--sc-text-on-dk); max-width: 540px; margin-bottom: 28px; }
.award-meta { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--sc-line-on-dk); }
.award-meta-item { font-size: 13px; color: var(--sc-text-dk-mute); display: flex; flex-direction: column; gap: 4px; }
.award-meta-item .big { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); font-size: 22px; line-height: 1; font-weight: 500; }
.award-meta-item .small { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sc-text-dk-mute); }

:root { --gold: #d4af63; --gold-deep: #a87f3b; --gold-soft: #e8c98a; }

/* The seal itself */
.seal {
  position: relative;
  width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.35));
}
.seal-rotate {
  position: absolute; inset: 0;
  animation: sealSpin 36s linear infinite;
}
.seal-disc {
  position: absolute; inset: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, var(--gold-soft) 0%, var(--gold) 35%, var(--gold-deep) 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255,232,184,0.35),
    inset 0 -8px 24px rgba(0,0,0,0.18),
    inset 0 8px 24px rgba(255,243,212,0.20);
}
.seal-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(212,175,99,0.6);
}
.seal-ring.outer { inset: 6px; border-width: 1.5px; }
.seal-ring.inner { inset: 42px; border: 1px dashed rgba(255,243,212,0.35); }

.seal-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--sc-cyan-deep-2);
  padding: 12px;
}
.seal-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 700; color: var(--sc-cyan-deep-2);
  margin-bottom: 8px; opacity: 0.85;
}
.seal-number {
  font-family: 'Outfit', sans-serif; font-weight: 300;
  font-size: 64px; line-height: 1;
  color: var(--sc-cyan-deep-2); letter-spacing: -0.02em;
  position: relative; display: inline-block;
}
.seal-number .plus {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 38px; vertical-align: 14px; color: var(--sc-cyan-deep); margin-left: 2px;
}
.seal-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 18px; color: var(--sc-cyan-deep-2);
  margin: 6px 0 10px; line-height: 1.2; font-weight: 500;
}
.seal-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 700; color: var(--sc-cyan-deep-2); opacity: 0.8;
}
.seal-star {
  position: absolute; width: 10px; height: 10px;
  background: var(--sc-cyan-deep-2); opacity: 0.55;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.seal-star.s1 { top: 30px; left: 50%; transform: translateX(-50%); }
.seal-star.s2 { bottom: 30px; left: 50%; transform: translateX(-50%); }
.seal-star.s3 { top: 50%; left: 28px; transform: translateY(-50%); }
.seal-star.s4 { top: 50%; right: 28px; transform: translateY(-50%); }

/* Ribbon under the seal */
.seal-ribbon {
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  background: var(--sc-cyan-deep);
  color: var(--gold-soft);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 7px 18px;
  border: 1px solid var(--gold);
  z-index: 3;
  white-space: nowrap;
}

@keyframes sealSpin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .seal-rotate { animation: none; } }

@media (max-width: 980px) {
  .award-inner { grid-template-columns: 1fr; gap: 40px; justify-items: center; text-align: center; }
  .award-text .eyebrow-rule, .award-meta { justify-content: center; }
  .award-text p { margin-left: auto; margin-right: auto; }
  .award-meta { justify-content: center; }
  .seal { width: 260px; height: 260px; }
  .seal-number { font-size: 54px; }
}

/* ============ PART OF SALUS GROUP ============ */
.group-strip { background: var(--sc-bone); border-top: 1px solid var(--sc-line); padding: 56px 0; }
.group-inner {
  display: grid; grid-template-columns: 1.4fr auto; gap: 60px; align-items: center;
}
.group-text h3 {
  font-family: 'Outfit', sans-serif; font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500; line-height: 1.15; margin-bottom: 14px; color: var(--sc-ink);
}
.group-text h3 em {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  color: var(--sc-cyan); font-weight: 500;
}
.group-text p { font-size: 15px; line-height: 1.7; color: var(--sc-charcoal); max-width: 620px; }
.group-link {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 4px;
  text-decoration: none; padding: 18px 26px;
  border: 1px solid var(--sc-cyan); color: var(--sc-cyan);
  transition: background 0.2s, color 0.2s;
}
.group-link:hover { background: var(--sc-cyan); color: var(--sc-cream); }
.group-link-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600;
}
.group-link-url {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; font-weight: 500;
  display: inline-flex; align-items: baseline; gap: 6px;
}
.group-link-url .arrow { font-style: normal; transition: transform 0.2s; }
.group-link:hover .arrow { transform: translate(2px, -2px); }

/* ============ STICKY CALL ============ */
.sticky-call {
  position: fixed; right: 24px; bottom: 24px; z-index: 95;
  background: var(--sc-cyan); color: var(--sc-cream);
  padding: 14px 22px; border-radius: 999px;
  text-decoration: none; font-size: 14px; font-weight: 500;
  box-shadow: 0 10px 30px rgba(20,47,61,0.35);
  display: flex; align-items: center; gap: 10px;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.sticky-call:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(20,47,61,0.45); background: var(--sc-cyan-deep); }
.sticky-call svg { width: 16px; height: 16px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .wrap, .wrap-narrow, .topbar-inner, .nav-inner, .ribbon-inner, footer.site-footer { padding-left: 24px; padding-right: 24px; }
  section.band { padding: 80px 0; }
  .nav-inner { height: 72px; }
  .logo-link img { height: 34px; }
  .nav-links { display: none; }
  .nav-cta-desktop { display: none !important; }
  .nav-burger { display: inline-flex !important; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; padding: 60px 24px 80px; }
  .hero-image { aspect-ratio: 16/10; }
  .hero-stats { gap: 36px; }
  .pillar-grid, .services-grid, .process-grid, .price-grid, .dem-stages, .dem-cards, .benefits-light { grid-template-columns: 1fr; }
  .dem-stage { padding: 28px 0; border-right: none; border-bottom: 1px solid var(--sc-line); }
  .dem-stage:last-child { border-bottom: none; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-cell { border-right: 1px solid var(--sc-line); border-bottom: 1px solid var(--sc-line); padding: 24px 12px; }
  .trust-cell:nth-child(2n) { border-right: none; }
  .trust-cell:nth-child(5) { grid-column: 1 / -1; border-right: none; border-bottom: none; }
  .trust-val { font-size: 32px; }
  .matching-grid { grid-template-columns: 1fr; gap: 32px; }
  .matching-narrative { font-size: 16px; }
  .faq-q { grid-template-columns: 40px 1fr 24px; gap: 14px; font-size: 16px; padding: 20px 4px; }
  .faq-q .n { font-size: 20px; }
  .faq-q .toggle { width: 24px; height: 24px; }
  .faq-a { padding: 0 4px 0 56px; }
  .faq-item.open .faq-a { padding-bottom: 22px; }
  .quote-grid { grid-template-columns: 1fr; gap: 36px; }
  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 12px 14px; }
  .careers-head, .contact-grid, .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .vacancy { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; }
  .vacancy-pay { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-actions { justify-content: flex-start; }
  .callout { grid-template-columns: 1fr; gap: 16px; padding: 26px; }
  .apply-wrap { padding: 28px; }
  .apply-step-item { font-size: 10px; padding: 10px 4px; letter-spacing: 0.16em; }
  .apply-step-item .n { font-size: 14px; margin-right: 4px; }
  .contact-info-item { grid-template-columns: 1fr; gap: 4px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .apply-summary .row { grid-template-columns: 1fr; gap: 2px; }
  .topbar-left { gap: 16px; }
  .topbar-inner { font-size: 12px; }
  .group-inner { grid-template-columns: 1fr; gap: 32px; }
  .group-link { width: 100%; }
}
@media (max-width: 640px) {
  .hero-text h1.display { font-size: 44px; }
  .sticky-call .lbl { display: none; }
  .sticky-call { padding: 14px; }
}
