:root {
  --cream: #e9deca;
  --cream-deep: #dfd2b8;
  --paper: #f6efe3;
  --ivory: #fbf6ee;
  --navy: #2a3a54;
  --navy-deep: #1a2438;
  --ink: #1c2433;
  --gold: #b48f41;
  --gold-soft: #c4a35a;
  --gold-ink: #8a6728;
  --muted: #6f6758;
  --line: rgba(42, 58, 84, 0.14);
  --shadow: 0 30px 60px rgba(26, 36, 56, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Onest", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.2rem;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: #fff;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--navy);
  color: var(--cream);
  padding: 0.7rem 1rem;
}

.skip:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.grain,
.page-frame {
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}

.page-frame {
  position: fixed;
  inset: 14px;
  z-index: 55;
  border: 1px solid rgba(180, 143, 65, 0.38);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  padding: 0.85rem clamp(1.25rem, 3vw, 2.6rem);
  flex-wrap: nowrap;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav.is-scrolled {
  background: rgba(246, 239, 227, 0.92);
  backdrop-filter: blur(18px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.nav-brand img,
.brand-photo {
  width: clamp(34px, 7vw, 44px);
  height: clamp(34px, 7vw, 44px);
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(180, 143, 65, 0.35);
  background: var(--cream);
}

.nav-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-brand small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  padding: 0.28rem;
  border: 1px solid rgba(42, 58, 84, 0.1);
  border-radius: 999px;
  background: rgba(251, 246, 238, 0.42);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 38px;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  white-space: nowrap;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover {
  background: rgba(180, 143, 65, 0.1);
  color: var(--gold-ink);
}

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

.nav-links a[aria-current="page"]:hover {
  background: var(--navy-deep);
  color: var(--ivory);
}

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

.nav-links .nav-coverage {
  padding-right: 0.48rem;
}

.nav-links .nav-coverage small {
  display: inline-grid;
  place-items: center;
  min-height: 24px;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.nav-links .nav-coverage[aria-current="page"] small {
  background: var(--cream);
  color: var(--navy-deep);
}

.nav-actions {
  display: flex;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.nav-actions .btn {
  min-height: 42px;
  padding-block: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 41;
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

.nav-toggle i {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}

.nav-toggle i:first-of-type { top: 16px; }
.nav-toggle i:last-of-type { top: 24px; }

.nav-toggle[aria-expanded="true"] i:first-of-type {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i:last-of-type {
  top: 20px;
  transform: rotate(-45deg);
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 100%);
  z-index: 35;
  background: rgba(246, 239, 227, 0.98);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 7rem clamp(2rem, 6vw, 3.6rem) 3rem;
  box-shadow: -30px 0 80px rgba(26, 36, 56, 0.15);
  animation: menu-in 0.42s var(--ease) both;
  counter-reset: menu;
}

.menu[hidden] {
  display: none !important;
}

.menu a {
  counter-increment: menu;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.menu > a:not(.btn)::before {
  content: "0" counter(menu);
  min-width: 1.7rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.menu a[aria-current="page"] {
  color: var(--gold-ink);
}

.menu .nav-coverage {
  flex-wrap: wrap;
}

.menu .nav-coverage small {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

.menu .btn {
  display: inline-flex;
  width: 100%;
  margin-top: 1.2rem;
  letter-spacing: 0.14em;
  border-bottom: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 34;
  background: rgba(26, 36, 56, 0.34);
  backdrop-filter: blur(3px);
  animation: fade-in 0.3s ease both;
}

.menu-backdrop[hidden] {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: #9d7b32;
}

.btn-navy {
  background: var(--navy);
  color: var(--cream);
}

.btn-navy:hover {
  background: var(--navy-deep);
}

.btn-ghost,
.btn-line,
.btn-line-light {
  border: 1px solid var(--line);
  background: transparent;
}

.btn-line-light {
  border-color: rgba(233, 222, 202, 0.28);
  color: var(--cream);
}

.btn-ghost:hover,
.btn-line:hover {
  border-color: var(--navy);
}

.hero {
  min-height: 100svh;
  padding: 8.5rem 7vw 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "24/7";
  position: absolute;
  right: 2.2rem;
  top: 50%;
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  opacity: 0.7;
  z-index: 1;
}

.hero::after {
  content: "DANIA";
  position: absolute;
  left: -1.5vw;
  bottom: -3.5rem;
  font-family: var(--serif);
  font-size: 22vw;
  line-height: 0.8;
  color: rgba(42, 58, 84, 0.045);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.04em;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 4vw;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.1rem, 7.2vw, 7.1rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.lede {
  max-width: 38rem;
  margin-top: 1.8rem;
  font-size: 1.08rem;
  color: var(--gold-ink);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.hero-reassurance {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 34rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-reassurance span {
  color: var(--gold);
}

.hero-care {
  justify-self: end;
  width: min(100%, clamp(300px, 34vw, 430px));
  max-width: 100%;
  min-width: 0;
  background: rgba(251, 246, 238, 0.72);
  border: 1px solid rgba(180, 143, 65, 0.35);
  padding: clamp(1.8rem, 4vw, 3.2rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-care::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -105px;
  bottom: -110px;
  border: 1px solid rgba(180, 143, 65, 0.2);
  border-radius: 50%;
}

.hero-care-mark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
}

.hero-care-mark img {
  width: clamp(58px, 7vw, 84px);
  height: auto;
}

.hero-care-mark span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-care blockquote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1.16;
  color: var(--navy);
  font-weight: 500;
}

.hero-care-signature {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-care-signature strong,
.hero-care-signature span {
  display: block;
}

.hero-care-signature > div > strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}

.hero-care-signature > div > span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-care-seal {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  display: grid !important;
  place-content: center;
  border: 1px solid rgba(180, 143, 65, 0.42);
  border-radius: 50%;
  text-align: center;
  color: var(--gold);
  font-size: 0.6rem;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-care-seal strong {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0;
}

.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  margin-top: 3.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--navy);
}

.hero-facts span {
  color: var(--gold);
}

.ribbon {
  border-block: 1px solid var(--line);
  background: var(--navy-deep);
  color: var(--cream);
  overflow: hidden;
}

.marquee {
  display: flex;
  width: max-content;
  animation: slide 32s linear infinite;
}

.marquee > div {
  display: flex;
  align-items: center;
}

.marquee span {
  padding: 1rem 0.4rem 1rem 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0.6rem;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-2px);
}

.services,
.values {
  padding: 7.5rem 7vw;
  background: var(--paper);
}

#prestations,
#a-propos,
#valeurs,
#parcours,
#prise-en-charge,
#contact {
  scroll-margin-top: 5.2rem;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 3.5rem;
}

.kicker {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.kicker-light {
  color: var(--gold-soft);
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}

.section-head h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-intro {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0.4rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.4s var(--ease), padding-left 0.4s var(--ease);
}

.service:hover {
  background: rgba(180, 143, 65, 0.07);
  padding-left: 1rem;
  box-shadow: inset 3px 0 0 var(--gold);
}

.num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
}

.service h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.service p {
  max-width: 46rem;
  color: var(--muted);
  font-weight: 300;
}

.about {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 78vh;
}

.about-panel {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 6.5rem 7vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.about-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -70px;
  bottom: -80px;
  border: 1px solid rgba(180, 143, 65, 0.25);
  border-radius: 50%;
}

.about-identity {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.about-panel h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ivory);
  font-size: clamp(3rem, 6vw, 5.2rem);
  margin-top: 0.35rem;
}

.about-role {
  margin-top: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-soft);
}

.stats {
  display: grid;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.stats div {
  border-top: 1px solid rgba(233, 222, 202, 0.14);
  padding-top: 0.9rem;
}

.stats dt {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.stats dd {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(233, 222, 202, 0.62);
}

.about-body {
  padding: 6.5rem 7vw;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-lead {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.6rem;
}

.about-body p {
  color: var(--muted);
  font-weight: 300;
  max-width: 38rem;
  margin-bottom: 1rem;
}

.path {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.8rem;
}

.path li {
  border: 1px solid var(--line);
  padding: 0.4rem 0.8rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.value {
  padding: 2.2rem 1.8rem 2.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
  min-height: 240px;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.value:hover {
  border-color: rgba(180, 143, 65, 0.55);
  background: rgba(255, 255, 255, 0.45);
}

.value-mark {
  color: var(--gold);
  font-size: 1.1rem;
}

.value h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  margin: 1.3rem 0 0.7rem;
  color: var(--navy);
}

.value p {
  color: var(--muted);
  font-weight: 300;
}

.journey {
  padding: 7.5rem 7vw;
  background: var(--cream);
}

.journey-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 4rem;
}

.journey-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}

.journey-head h2 em {
  color: var(--gold);
  font-style: italic;
}

.journey-head > p {
  max-width: 31rem;
  padding-bottom: 0.35rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

.journey-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-steps li {
  min-height: 280px;
  padding: 1.6rem 1.5rem 2rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.journey-steps li:first-child {
  padding-left: 0;
}

.journey-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.journey-steps > li > span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
}

.journey-steps h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 0.7rem;
}

.journey-steps p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.journey-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
}

.journey-cta p {
  color: var(--navy);
}

.journey-cta p span {
  color: var(--gold);
  margin-right: 0.45rem;
}

.coverage {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 7.5rem 7vw 6.5rem;
}

.coverage-intro {
  max-width: 44rem;
  margin-bottom: 3.2rem;
}

.coverage-intro h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ivory);
}

.coverage-intro h2 em {
  font-style: italic;
  color: var(--gold-soft);
}

.coverage-intro p:last-child {
  margin-top: 1.3rem;
  color: rgba(233, 222, 202, 0.72);
  font-weight: 300;
  font-size: 1.05rem;
}

.coverage-ledger {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(233, 222, 202, 0.16);
}

.coverage-ledger li {
  padding: 2rem 1.8rem 0.4rem 0;
  border-right: 1px solid rgba(233, 222, 202, 0.16);
}

.coverage-ledger li:first-child {
  padding-left: 0;
}

.coverage-ledger li:last-child {
  border-right: 0;
  padding-right: 0;
  padding-left: 1.8rem;
}

.coverage-ledger li:nth-child(2) {
  padding-left: 1.8rem;
}

.coverage-ledger span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold-soft);
  line-height: 1;
}

.coverage-ledger h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ivory);
  margin: 0.85rem 0 0.55rem;
  line-height: 1.15;
}

.coverage-ledger p {
  color: rgba(233, 222, 202, 0.7);
  font-weight: 300;
}

.coverage-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(233, 222, 202, 0.16);
  border-bottom: 1px solid rgba(233, 222, 202, 0.16);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.3rem;
  transition: color 0.3s var(--ease), padding 0.3s var(--ease);
}

.coverage-link:hover {
  color: var(--gold-soft);
  padding-inline: 0.6rem;
}

.coverage-page {
  background: var(--navy-deep);
}

.coverage-page .nav:not(.is-scrolled) {
  color: var(--cream);
}

.coverage-page .nav:not(.is-scrolled) .nav-brand small,
.coverage-page .nav:not(.is-scrolled) .nav-links a {
  color: rgba(233, 222, 202, 0.75);
}

.coverage-page .nav:not(.is-scrolled) .nav-links {
  background: rgba(251, 246, 238, 0.05);
  border-color: rgba(233, 222, 202, 0.14);
}

.coverage-page .nav:not(.is-scrolled) .nav-links a:hover {
  background: rgba(251, 246, 238, 0.09);
  color: var(--ivory);
}

.coverage-page .nav:not(.is-scrolled) .nav-links a[aria-current="page"] {
  background: var(--gold);
  color: var(--navy-deep);
}

.coverage-page .nav:not(.is-scrolled) .nav-toggle i {
  background: var(--cream);
}

.coverage-page .nav:not(.is-scrolled) .btn-ghost {
  border-color: rgba(233, 222, 202, 0.22);
}

.coverage-page .nav.menu-open {
  color: var(--navy-deep);
}

.coverage-page .nav.menu-open .nav-brand small {
  color: var(--muted);
}

.coverage-page .nav.menu-open .nav-toggle i {
  background: var(--navy);
}

.coverage-page-hero {
  min-height: 100svh;
  padding: 8.5rem 7vw 5rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(180, 143, 65, 0.14), transparent 26rem),
    var(--navy-deep);
  color: var(--cream);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: clamp(3.5rem, 8vh, 7rem);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(233, 222, 202, 0.62);
}

.back-link:hover {
  color: var(--gold-soft);
}

.coverage-page-title {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 4.5rem;
}

.coverage-page-title h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.4vw, 6.2rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--ivory);
}

.coverage-page-title h1 em {
  color: var(--gold-soft);
  font-style: italic;
}

.coverage-page-title > p {
  max-width: 33rem;
  padding-bottom: 0.4rem;
  color: rgba(233, 222, 202, 0.74);
  font-size: 1.06rem;
  font-weight: 300;
}

.coverage-ledger-page h2 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ivory);
  margin: 0.85rem 0 0.55rem;
}

.coverage-guidance {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 9vw;
  padding: 7rem 7vw;
  background: var(--paper);
}

.coverage-guidance h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
  font-weight: 500;
  line-height: 0.98;
  color: var(--navy-deep);
}

.coverage-guidance h2 em {
  color: var(--gold);
  font-style: italic;
}

.coverage-guidance-copy > p:first-child {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.25;
  color: var(--navy);
}

.coverage-note {
  margin-top: 1.4rem;
  color: var(--muted);
  font-weight: 300;
}

.coverage-guidance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.coverage-contact {
  padding: 5.5rem 7vw;
  background: var(--cream);
  text-align: center;
}

.coverage-contact h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 0.95;
  color: var(--navy-deep);
}

.coverage-contact > a {
  display: inline-block;
  margin-top: 1.7rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold-ink);
}

.trust {
  padding: 6.5rem 7vw;
  background: var(--ivory);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  align-items: start;
}

.trust-heading h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}

.trust-heading h2 em {
  color: var(--gold);
  font-style: italic;
}

.trust-statement {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.trust-list div {
  padding: 1.4rem 1.2rem 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.trust-list div:nth-child(even) {
  padding-left: 1.2rem;
  border-left: 1px solid var(--line);
}

.trust-list dt {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-list dd {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 300;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--navy-deep);
  color: var(--cream);
}

.contact-copy,
.contact-card {
  padding: 6.5rem 7vw;
}

.contact h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ivory);
}

.contact-lead {
  margin-top: 1.2rem;
  max-width: 28rem;
  color: rgba(233, 222, 202, 0.72);
  font-weight: 300;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.live i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8dce7a;
  box-shadow: 0 0 0 0 rgba(141, 206, 122, 0.7);
  animation: pulse 1.8s infinite;
}

.contact-card {
  border-left: 1px solid rgba(233, 222, 202, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.6rem;
}

.phone,
.mail,
.zone {
  display: block;
}

.phone span,
.mail span,
.zone span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

.phone {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  color: var(--ivory);
}

.mail,
.zone {
  font-size: 1.15rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  align-items: center;
  padding: 1.6rem 7vw 2.2rem;
  background: var(--cream);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  letter-spacing: 0.18em;
  color: var(--navy);
}

.footer-brand span,
.ids {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.wa {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: calc(clamp(1rem, 2.5vw, 2rem) + env(safe-area-inset-bottom, 0px));
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.wa-panel {
  width: min(calc(100vw - 2.4rem), 360px);
  background: var(--ivory);
  border: 1px solid rgba(180, 143, 65, 0.35);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.3rem 1.4rem;
  position: relative;
}

.wa-panel[hidden] {
  display: none !important;
}

.wa-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 36px;
  height: 36px;
}

.wa-close i {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 17px;
  height: 1.5px;
  background: var(--navy);
}

.wa-close i:first-child { transform: rotate(45deg); }
.wa-close i:last-child { transform: rotate(-45deg); }

.wa-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-right: 1.6rem;
}

.wa-head img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(180, 143, 65, 0.35);
}

.wa-head strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}

.wa-head span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.wa-hello {
  color: var(--navy);
  font-weight: 300;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.wa-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

.wa-note a {
  color: var(--gold);
  font-weight: 500;
}

.wa-panel .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

.btn-wa {
  background: #275e49;
  color: #fff;
}

.btn-wa:hover {
  background: #1e4b3a;
}

.wa-fab {
  min-width: 58px;
  height: 58px;
  padding: 0 1.15rem 0 1rem;
  border-radius: 50%;
  background: #1f6f50;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 12px 30px rgba(39, 94, 73, 0.35);
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
}

.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 2px solid rgba(31, 111, 80, 0.65);
  border-radius: inherit;
  animation: wa-ring 2.4s ease-out infinite;
}

.wa-fab:hover {
  transform: translateY(-3px);
  background: #185c42;
  box-shadow: 0 16px 36px rgba(39, 94, 73, 0.4);
}

.wa-fab svg {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
}

.wa-fab-label {
  display: none;
  text-align: left;
  line-height: 1.1;
}

.wa-fab-label strong,
.wa-fab-label small {
  display: block;
}

.wa-fab-label strong {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wa-fab-label small {
  margin-top: 0.2rem;
  font-size: 0.61rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 981px) {
  .wa-fab {
    border-radius: 999px;
  }

  .wa-fab-label {
    display: block;
  }
}

.wa-fab[aria-expanded="true"] {
  background: var(--navy);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.js [data-reveal].in {
  opacity: 1;
  transform: none;
}

@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(141, 206, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(141, 206, 122, 0); }
}

@keyframes wa-ring {
  0%, 45% {
    opacity: 0.65;
    transform: scale(1);
  }
  85%, 100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

@keyframes menu-in {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1240px) {
  .nav-actions .btn-ghost {
    display: none;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .coverage-page .nav.menu-open .nav-brand strong {
    color: var(--cream);
  }

  .coverage-page .nav.menu-open .nav-brand small {
    color: var(--gold-soft);
  }
}

@media (max-width: 980px) {
  .page-frame {
    display: none;
  }

  .hero-grid,
  .about,
  .contact,
  .value-grid,
  .coverage-ledger,
  .journey-head,
  .trust,
  .coverage-page-title,
  .coverage-guidance {
    grid-template-columns: 1fr;
  }

  .coverage-page-hero {
    padding: 7rem 1.3rem 4.5rem;
  }

  .coverage-page-title {
    gap: 1.8rem;
    margin-bottom: 3rem;
  }

  .coverage-page-title h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .coverage-guidance,
  .coverage-contact {
    padding: 4.5rem 1.3rem;
  }

  .hero {
    min-height: auto;
    padding: 6.4rem 1.25rem 2.2rem;
  }

  .hero::before {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .eyebrow {
    max-width: 100%;
  }

  .hero-care {
    justify-self: center;
    width: min(100%, 560px);
    margin: 0.8rem auto 0;
    padding: 2rem;
  }

  .hero-care blockquote {
    font-size: clamp(1.75rem, 5vw, 2.3rem);
  }

  .hero-facts {
    margin-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .services,
  .values,
  .journey,
  .coverage,
  .trust,
  .about-panel,
  .about-body,
  .contact-copy,
  .contact-card {
    padding: 4.5rem 1.3rem;
  }

  .coverage-ledger li,
  .coverage-ledger li:nth-child(2),
  .coverage-ledger li:last-child {
    padding: 1.4rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(233, 222, 202, 0.16);
  }

  .coverage-ledger li:last-child {
    border-bottom: 0;
  }

  .service {
    grid-template-columns: 3.2rem 1fr;
  }

  .journey-head {
    gap: 1.4rem;
    margin-bottom: 2.7rem;
  }

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

  .journey-steps li,
  .journey-steps li:first-child,
  .journey-steps li:last-child {
    min-height: 240px;
    padding: 1.4rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .journey-steps li:nth-child(even) {
    border-right: 0;
  }

  .journey-steps li:nth-child(n + 3) {
    border-bottom: 0;
  }

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

  .trust {
    gap: 2.5rem;
  }

  .contact-card {
    border-left: 0;
    border-top: 1px solid rgba(233, 222, 202, 0.12);
    padding-top: 2.5rem;
    padding-bottom: 6.5rem;
  }

  body:has(.menu:not([hidden])) .wa {
    display: none;
  }

  .nav {
    padding: 0.9rem 1.1rem;
  }
}

@media (max-width: 480px) {
  .coverage-page .nav.menu-open .nav-brand strong {
    color: var(--navy-deep);
  }

  .coverage-page .nav.menu-open .nav-brand small {
    color: var(--muted);
  }

  .nav-brand strong {
    font-size: 1.15rem;
  }

  .nav-brand small {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .hero-care {
    width: 100%;
    margin-bottom: 0;
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .hero-care-mark {
    margin-bottom: 1.35rem;
    padding-bottom: 1.15rem;
  }

  .hero-care-mark img {
    width: 58px;
  }

  .hero-care-seal {
    flex-basis: 62px;
    width: 62px;
    height: 62px;
  }

  .hero-facts {
    display: grid;
    gap: 0.8rem;
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-steps li,
  .journey-steps li:first-child,
  .journey-steps li:last-child {
    min-height: auto;
    padding: 1.4rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    gap: 1.8rem;
  }

  .journey-steps li:nth-child(n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .journey-steps li:last-child {
    border-bottom: 0;
  }

  .journey-cta .btn {
    width: 100%;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .trust-list div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .menu {
    width: 100%;
    padding-inline: 1.5rem;
  }

  .menu-backdrop {
    display: none;
  }

  .coverage-page-title h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .coverage-guidance-actions .btn {
    width: 100%;
  }

  .wa-panel {
    width: calc(100vw - 2rem);
    max-height: calc(100svh - 6.5rem);
    overflow-y: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal],
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .wa-fab::after {
    animation: none;
  }
}
