@font-face {
  font-family: "Cormorant AuDela";
  src: url("../assets/fonts/CormorantGaramond-Variable.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope AuDela";
  src: url("../assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --plum-950: #2a0d20;
  --plum-900: #351326;
  --plum-700: #54203e;
  --pink: #e62b78;
  --pink-action: #c81760;
  --pink-dark: #9f104b;
  --turquoise: #18b9b1;
  --turquoise-dark: #087b77;
  --paper: #faf5f8;
  --white: #ffffff;
  --ink: #291621;
  --muted: #66555f;
  --line: #e8dde4;
  --serif: "Cormorant AuDela", Georgia, serif;
  --sans: "Manrope AuDela", Arial, sans-serif;
  --container: min(90rem, calc(100vw - 3rem));
  --radius: 14px;
  --shadow: 0 14px 34px rgba(53, 19, 38, 0.12), 0 3px 10px rgba(53, 19, 38, 0.05);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--pink-action) var(--paper);
  scrollbar-width: thin;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 11px;
}

body::-webkit-scrollbar-track {
  background: var(--paper);
}

body::-webkit-scrollbar-thumb {
  background: var(--pink-action);
  border: 3px solid var(--paper);
  border-radius: 10px;
}

::selection {
  color: var(--white);
  background: var(--plum-700);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--turquoise-dark);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--plum-900);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.25rem, 5.8vw, 6rem);
}

h2 {
  font-size: clamp(2.65rem, 4.4vw, 4.85rem);
}

h3 {
  font-size: clamp(1.85rem, 2.4vw, 2.7rem);
}

p {
  max-width: 72ch;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--plum-900);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 220ms ease, transform 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--pink-action);
  box-shadow: 0 10px 24px rgba(159, 16, 75, 0.18), 0 3px 8px rgba(53, 19, 38, 0.08);
}

.button-primary:hover {
  background: var(--pink-dark);
  box-shadow: 0 14px 30px rgba(159, 16, 75, 0.24), 0 4px 9px rgba(53, 19, 38, 0.1);
}

.button-secondary {
  color: var(--plum-900);
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--plum-700);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--plum-700);
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: 5.25rem;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(53, 19, 38, 0.12);
}

.nav-shell {
  display: grid;
  min-height: 5.25rem;
  grid-template-columns: minmax(14rem, 1.15fr) auto auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}

.wordmark {
  width: fit-content;
  color: var(--plum-900);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.35vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 1.6vw, 1.65rem);
}

.site-nav a {
  position: relative;
  padding-block: 0.5rem;
  font-size: 0.83rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.18rem;
  left: 0;
  height: 2px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-booking {
  min-height: 2.85rem;
  padding-inline: 1.15rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--plum-900);
  background: var(--white);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 3px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.home-opening {
  position: relative;
  overflow: hidden;
}

.opening-line-svg {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.opening-line-svg path {
  fill: none;
  stroke: url(#living-gradient);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  animation: opening-line-arrival 1250ms var(--ease) 120ms both;
}

.opening-joints rect {
  fill: var(--paper);
  stroke: var(--pink);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.home-opening .solutions-layout,
.home-opening .reassurance-band {
  position: relative;
  z-index: 2;
}

@keyframes opening-line-arrival {
  from { opacity: 0; filter: blur(4px); stroke-dasharray: 2100; stroke-dashoffset: 2100; }
  to { opacity: 1; filter: blur(0); stroke-dasharray: 2100; stroke-dashoffset: 0; }
}

.home-hero {
  position: relative;
  min-height: 35.5rem;
  overflow: hidden;
  background: var(--white);
}

.hero-grid {
  display: grid;
  min-height: 35.5rem;
  grid-template-columns: minmax(0, 1.06fr) minmax(30rem, 0.94fr);
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(3.5rem, 5vw, 5rem) 2rem 3.25rem 0;
}

.hero-copy h1 {
  max-width: none;
  margin-bottom: 1.35rem;
  font-size: clamp(3.85rem, 4.55vw, 4.65rem);
  letter-spacing: -0.035em;
}

.hero-copy h1 span {
  display: block;
}

.hero-intro {
  max-width: 39rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.15rem;
}

.hero-address {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-address .icon {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--pink-dark);
  stroke-width: 2;
}

.hero-portrait {
  position: relative;
  z-index: 2;
  min-height: 35.5rem;
  margin: 0 calc((100vw - var(--container)) / -2) 0 0;
  overflow: hidden;
  background: var(--plum-900);
  border-bottom: 2px solid var(--pink);
  border-bottom-left-radius: 47% 15%;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}

.hero-line {
  display: none;
  position: absolute;
  z-index: 3;
  top: 0;
  right: calc(46% - 5rem);
  width: 29rem;
  height: 100%;
  pointer-events: none;
  animation: line-arrival 1100ms var(--ease) 120ms both;
}

.hero-line::before,
.hero-line::after {
  position: absolute;
  content: "";
}

.hero-line::before {
  top: -4rem;
  left: 2rem;
  width: 22rem;
  height: 37rem;
  border-right: 2px solid var(--turquoise);
  border-top: 2px solid var(--turquoise);
  border-radius: 0 100% 100% 0;
  transform: rotate(17deg);
}

.hero-line::after {
  right: 0;
  bottom: 3.1rem;
  width: 24rem;
  height: 7rem;
  border-bottom: 2px solid var(--pink);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.hero-line span {
  position: absolute;
  z-index: 2;
  right: 8.9rem;
  bottom: 5rem;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--white);
  border: 2px solid var(--pink);
  transform: rotate(45deg);
}

@keyframes line-arrival {
  from { opacity: 0; filter: blur(5px); clip-path: inset(0 100% 0 0); }
  to { opacity: 1; filter: blur(0); clip-path: inset(0); }
}

.solutions {
  position: relative;
  padding-top: clamp(4.5rem, 6vw, 6rem);
  background: linear-gradient(180deg, var(--paper), #fff 66%);
}

.solutions-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.solutions-heading {
  position: relative;
  padding-left: 2rem;
}

.solutions-heading::before {
  position: absolute;
  top: -0.5rem;
  bottom: -0.5rem;
  left: 0;
  width: 1px;
  background: var(--turquoise);
  content: "";
}

.line-joint {
  position: absolute;
  top: 50%;
  left: -0.35rem;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--paper);
  border: 1px solid var(--turquoise-dark);
  transform: translateY(-50%) rotate(45deg);
}

.solutions-heading h2 {
  margin: 0;
}

.service-entries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.service-entry {
  display: grid;
  min-height: 14rem;
  grid-template-columns: minmax(10rem, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-entry-1 {
  margin: 0;
  border: 1px solid rgba(8, 123, 119, 0.5);
  border-radius: 80px 14px 80px 14px;
}

.service-entry-2 {
  margin: 0;
  border: 1px solid rgba(200, 23, 96, 0.5);
  border-radius: 14px 80px 14px 80px;
}

.service-entry img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
}

.service-entry-1 img {
  object-position: 34% center;
}

.service-entry > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.4rem, 3vw, 2.6rem);
}

.service-entry h3 {
  margin-bottom: 0.7rem;
}

.service-entry p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--pink-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.arrow-link .icon {
  width: 1.15rem;
  height: 1.15rem;
  transition: transform 180ms var(--ease);
}

.arrow-link:hover .icon {
  transform: translateX(0.35rem);
}

.reassurance-band {
  display: grid;
  margin-top: clamp(3rem, 6vw, 6rem);
  padding: 1.4rem clamp(1.2rem, 3vw, 2.6rem);
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(53, 19, 38, 0.08), 0 3px 8px rgba(53, 19, 38, 0.04);
}

.reassurance-band > div {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.reassurance-band > div + div {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.reassurance-band p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.reassurance-band strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.diamond-outline,
.booking-diamond {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--turquoise-dark);
  border-radius: 7px;
  transform: rotate(45deg);
}

.icon-badge {
  display: grid;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  color: var(--turquoise-dark);
  border: 1px solid currentColor;
  border-radius: 7px;
  transform: rotate(45deg);
}

.icon-badge .icon {
  width: 1.22rem;
  height: 1.22rem;
  transform: rotate(-45deg);
}

.reassurance-band > div:nth-child(2) .icon-badge {
  color: var(--pink-action);
}

.approach {
  color: var(--white);
  background: var(--plum-900);
}

.approach h2,
.approach h3 {
  color: var(--white);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 9vw, 10rem);
}

.section-intro p {
  max-width: 38rem;
  color: #eadde5;
  font-size: 1.08rem;
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.approach-steps li {
  position: relative;
  display: grid;
  padding: 1.8rem 0 1.9rem 3.5rem;
  grid-template-columns: 0.65fr 1fr;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  counter-increment: step;
}

.approach-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-steps li > span {
  position: absolute;
  top: 2.35rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--turquoise);
  transform: rotate(45deg);
}

.approach-steps h3 {
  margin: 0;
}

.approach-steps p {
  margin: 0;
  color: #eadde5;
  font-size: 0.95rem;
}

.local-section {
  color: var(--white);
  background: var(--plum-700);
  border-top: 2px solid var(--pink);
}

.local-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.local-address-block {
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(24, 185, 177, 0.75);
  border-radius: 90px 14px 90px 14px;
}

.local-address-block p {
  margin-bottom: 0.25rem;
  color: #eadde5;
}

.local-address-block strong {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 500;
}

.local-copy h2 {
  color: var(--white);
}

.local-copy p {
  color: #f1e8ed;
}

.arrow-link-light {
  color: #a9fffa;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-list details {
  border-top: 1px solid #cbbbc4;
}

.faq-list details:last-child {
  border-bottom: 1px solid #cbbbc4;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.55rem 0;
  color: var(--plum-900);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--pink-action);
  content: "";
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
}

.closing-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--pink-action);
}

.closing-cta::after {
  position: absolute;
  right: -5rem;
  bottom: -12rem;
  width: 33rem;
  height: 24rem;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  content: "";
  transform: rotate(-20deg);
}

.closing-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  padding-block: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
}

.closing-cta h2 {
  max-width: 14ch;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.closing-cta p {
  margin: 0;
  color: #fff4f8;
}

.closing-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.closing-actions .button-primary {
  color: var(--plum-900);
  background: var(--white);
}

.phone-link {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
}

.site-footer {
  padding-block: 4.5rem 1.7rem;
  color: #eadde5;
  background: var(--plum-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr 0.7fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.wordmark-light,
.site-footer h2 {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 0.9rem;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer address {
  margin-bottom: 0.7rem;
  color: #d8c8d1;
  font-size: 0.9rem;
  font-style: normal;
}

.footer-brand p {
  max-width: 28rem;
  margin-top: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.84rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 3.5rem;
  padding-top: 1.3rem;
  color: #bca9b4;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
}

/* Pages intérieures */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.3rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.breadcrumb a {
  color: var(--pink-dark);
}

.inner-hero {
  overflow: hidden;
  background: var(--white);
}

.inner-hero-grid {
  display: grid;
  min-height: 39rem;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.8fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.inner-hero-copy {
  padding-block: 5.5rem;
}

.inner-hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 1.4rem;
}

.inner-hero-copy > p {
  max-width: 42rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.inner-hero-image {
  position: relative;
  height: 32rem;
  margin: 0 calc((100vw - var(--container)) / -2) 0 0;
  overflow: hidden;
  background: var(--plum-700);
  border-radius: 100px 0 0 14px;
}

.inner-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-image span {
  position: absolute;
  right: 3rem;
  bottom: -1.2rem;
  width: 3rem;
  height: 3rem;
  background: var(--white);
  border: 2px solid var(--pink);
  transform: rotate(45deg);
}

.editorial-lead {
  background: var(--paper);
}

.two-column-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.two-column-copy p {
  color: var(--muted);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.75;
}

.service-detail {
  color: var(--white);
  background: var(--plum-900);
}

.detail-list article {
  display: grid;
  padding-block: clamp(2.3rem, 5vw, 4.5rem);
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-list h2 {
  margin-bottom: 1rem;
  color: var(--white);
}

.detail-list p {
  margin: 0;
  color: #eadde5;
  font-size: 1.04rem;
}

.detail-mark {
  width: 2.6rem;
  height: 2.6rem;
  margin: 0.7rem 0 0 0.3rem;
  border: 1px solid var(--turquoise);
  border-radius: 8px;
  transform: rotate(45deg);
}

.detail-list article:nth-child(even) .detail-mark {
  border-color: var(--pink);
}

.reimbursement-section {
  background: var(--white);
}

.reimbursement-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.reimbursement-intro p {
  color: var(--muted);
  font-size: 1rem;
}

.reimbursement-intro .reimbursement-updated {
  font-size: 0.86rem;
  font-weight: 700;
}

.reimbursement-content {
  min-width: 0;
}

.reimbursement-table-wrap {
  overflow-x: auto;
  border-top: 1px solid rgba(53, 19, 38, 0.22);
}

.reimbursement-table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
}

.reimbursement-table th,
.reimbursement-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.reimbursement-table th {
  color: var(--plum-900);
  background: var(--paper);
  font-size: 0.86rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.reimbursement-table td {
  color: var(--muted);
}

.reimbursement-table td:first-child {
  color: var(--plum-900);
  font-weight: 700;
}

.reimbursement-points {
  margin: 2rem 0 0;
}

.reimbursement-points > div {
  display: grid;
  grid-template-columns: minmax(10rem, 0.6fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.reimbursement-points > div:last-child {
  border-bottom: 1px solid var(--line);
}

.reimbursement-points dt {
  color: var(--plum-900);
  font-weight: 750;
}

.reimbursement-points dd {
  margin: 0;
  color: var(--muted);
}

.reimbursement-note {
  margin: 2rem 0 0;
  padding: 1.25rem 1.4rem;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reimbursement-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--plum-900);
}

.reimbursement-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.reimbursement-sources a {
  color: var(--pink-dark);
  font-weight: 700;
}

.related-solutions {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.related-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.related-layout h2 {
  max-width: 9ch;
  margin: 0;
}

.related-links {
  border-top: 1px solid rgba(53, 19, 38, 0.22);
}

.related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  color: var(--plum-900);
  border-bottom: 1px solid rgba(53, 19, 38, 0.22);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.25vw, 2.1rem);
  font-weight: 560;
  text-decoration: none;
}

.related-links .icon {
  flex: 0 0 auto;
  color: var(--pink-dark);
  transition: transform 180ms var(--ease);
}

.related-links a:hover .icon {
  transform: translateX(0.35rem);
}

.confidence-panel {
  background: var(--white);
}

.confidence-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.confidence-inner > div:first-child p {
  color: var(--muted);
  font-size: 1.08rem;
}

.confidence-facts p {
  margin: 0;
  padding: 1.4rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.confidence-facts p:last-child {
  border-bottom: 1px solid var(--line);
}

.confidence-facts strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--plum-900);
}

.simple-hero {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  color: var(--white);
  background: var(--plum-900);
}

.simple-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 31rem;
  flex-direction: column;
  justify-content: center;
  padding-block: 5rem;
}

.simple-hero .breadcrumb,
.simple-hero .breadcrumb a {
  color: #e7d7e0;
}

.simple-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.3rem;
  color: var(--white);
}

.simple-hero p {
  max-width: 46rem;
  color: #eadde5;
  font-size: 1.15rem;
}

.simple-hero-line {
  position: absolute;
  top: -12rem;
  right: -4rem;
  width: 38rem;
  height: 38rem;
  border: 2px solid var(--turquoise);
  border-radius: 48%;
  transform: rotate(28deg);
}

.simple-hero-line::after {
  position: absolute;
  right: 4rem;
  bottom: -0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--plum-900);
  border: 2px solid var(--pink);
  content: "";
  transform: rotate(45deg);
}

.institute-story {
  background: var(--white);
}

.institute-story-grid {
  max-width: 52rem;
}

.institute-story-grid p {
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.institute-details {
  background: var(--paper);
}

.detail-list-light article {
  border-top-color: #cbbbc4;
}

.detail-list-light article:last-child {
  border-bottom-color: #cbbbc4;
}

.detail-list-light h2 {
  color: var(--plum-900);
}

.detail-list-light p {
  color: var(--muted);
}

.booking-section {
  background: var(--white);
}

.booking-layout,
.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.booking-intro > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-direct {
  margin-top: 2.3rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}

.contact-direct > a {
  color: var(--pink-dark);
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
}

.contact-direct address,
.contact-direct p {
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
}

.booking-frame {
  min-height: 31rem;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid #d6c7cf;
  border-radius: 90px 14px 90px 14px;
  box-shadow: var(--shadow);
}

.booking-frame iframe {
  width: 100%;
  min-height: 42rem;
  border: 0;
}

.booking-placeholder {
  display: flex;
  min-height: 31rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
}

.booking-diamond {
  margin: 0 0 2rem 0.4rem;
  border-color: var(--pink-action);
}

.booking-placeholder strong {
  color: var(--plum-900);
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
}

.booking-placeholder p {
  color: var(--muted);
}

.contact-form-section {
  background: var(--paper);
}

.contact-form-layout > div > p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1.3rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-form label:not(.consent-field) {
  display: grid;
  gap: 0.45rem;
  color: var(--plum-900);
  font-size: 0.86rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #bba9b4;
  border-radius: 10px;
}

.contact-form input,
.contact-form select {
  min-height: 3.2rem;
  padding: 0.75rem 0.9rem;
}

.contact-form textarea {
  min-height: 10rem;
  padding: 0.9rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--turquoise-dark);
  outline: 3px solid rgba(8, 123, 119, 0.2);
}

.contact-form [aria-invalid="true"] {
  border-color: var(--pink-dark);
}

.contact-form small,
.field-error {
  color: #8b0a41;
  font-size: 0.78rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 1.3rem 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.8rem;
}

.consent-field input {
  width: 1.2rem;
  min-height: 1.2rem;
  margin-top: 0.2rem;
  accent-color: var(--pink-action);
}

.contact-form > .button {
  justify-self: start;
}

.form-alert {
  max-width: none;
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-success {
  color: #084f4c;
  background: #d9f6f3;
}

.form-error {
  color: #720a36;
  background: #fde2ec;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.legal-hero,
.legal-hero .simple-hero-inner {
  min-height: 24rem;
}

.legal-content {
  background: var(--white);
}

.prose {
  max-width: 52rem;
}

.prose h2 {
  margin-top: 3.8rem;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--muted);
}

.prose ul {
  margin: 0 0 1.5rem;
  padding-left: 1.35rem;
  color: var(--muted);
}

.prose li + li {
  margin-top: 0.55rem;
}

.prose a {
  color: var(--pink-dark);
  font-weight: 700;
}

.legal-meta {
  margin-bottom: 2.5rem;
  color: var(--plum-700) !important;
  font-size: 0.84rem;
  font-weight: 750;
}

@media (min-width: 74.01rem) {
  .solutions {
    padding-top: 2rem;
  }

  .service-entry {
    min-height: 11.75rem;
  }

  .service-entry img {
    min-height: 11.75rem;
  }

  .service-entry > div {
    padding: 1.2rem 1.35rem;
  }

  .service-entry h3 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.65rem, 2.1vw, 2.05rem);
  }

  .service-entry p {
    margin-bottom: 0.65rem;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .reassurance-band {
    margin-top: 1.25rem;
    padding-block: 0.75rem;
  }
}

@media (max-width: 74rem) {
  :root { --container: min(100% - 2.5rem, 72rem); }

  .nav-shell {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1.25rem;
    left: 1.25rem;
    display: grid;
    padding: 1rem;
    background: var(--white);
    border-radius: 0 0 14px 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, visibility 180ms ease, transform 220ms var(--ease);
  }

  .site-nav a {
    padding: 0.8rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-open .menu-toggle > span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-open .menu-toggle > span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle > span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.8fr);
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 6.5vw, 5.2rem);
  }

  .solutions-layout {
    grid-template-columns: 1fr;
  }

  .solutions-heading h2 {
    max-width: 12ch;
  }

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

  .service-entry,
  .service-entry-1,
  .service-entry-2 {
    grid-template-columns: 1fr;
    margin: 0;
  }

  .service-entry img {
    height: 14rem;
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-nav {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 52rem) {
  :root { --container: min(100% - 2rem, 46rem); }

  h1 { font-size: clamp(3.05rem, 13vw, 4.8rem); }
  h2 { font-size: clamp(2.5rem, 10vw, 4rem); }

  .site-header,
  .nav-shell {
    min-height: 4.65rem;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .wordmark {
    font-size: 1.85rem;
  }

  .nav-booking {
    display: none;
  }

  .home-hero,
  .hero-grid {
    min-height: auto;
  }

  .opening-line-svg {
    display: none;
  }

  .hero-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: var(--container);
    margin-inline: auto;
    padding: 4.5rem 0 3rem;
  }

  .hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(3.1rem, 13vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 14rem;
  }

  .hero-portrait {
    min-height: 28rem;
    margin: 0;
    border-bottom-left-radius: 36% 12%;
  }

  .hero-portrait img {
    object-position: 69% center;
  }

  .hero-line {
    display: block;
    top: auto;
    right: -7rem;
    bottom: 0;
    height: 29rem;
  }

  .hero-line::before {
    top: 1rem;
    left: 7rem;
    width: 18rem;
    height: 23rem;
  }

  .hero-line::after {
    bottom: 1.5rem;
  }

  .hero-line span {
    right: 10rem;
    bottom: 3rem;
  }

  .service-entries,
  .reassurance-band,
  .approach-layout,
  .local-layout,
  .faq-layout,
  .closing-cta-inner,
  .footer-grid,
  .inner-hero-grid,
  .two-column-copy,
  .confidence-inner,
  .booking-layout,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .reimbursement-layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .reimbursement-points > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .related-layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .service-entry {
    max-width: 37rem;
  }

  .service-entry-2 {
    margin-left: auto;
  }

  .reassurance-band > div + div {
    padding-top: 1.3rem;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .approach-steps li {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .local-address-block {
    max-width: 32rem;
  }

  .closing-actions {
    align-items: stretch;
  }

  .closing-actions .phone-link {
    text-align: center;
  }

  .footer-grid {
    gap: 2.2rem;
  }

  .footer-nav {
    grid-column: auto;
  }

  .inner-hero-grid {
    width: 100%;
    gap: 0;
  }

  .inner-hero-copy {
    width: var(--container);
    margin-inline: auto;
    padding-block: 4rem;
  }

  .inner-hero-image {
    height: 26rem;
    margin: 0;
    border-radius: 80px 0 0 14px;
  }

  .two-column-copy {
    gap: 1.5rem;
  }

  .detail-list article {
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
  }

  .detail-mark {
    width: 2rem;
    height: 2rem;
  }

  .booking-layout,
  .contact-form-layout {
    gap: 3rem;
  }

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

@media (max-width: 34rem) {
  :root { --container: min(100% - 1.35rem, 31rem); }

  .section-pad {
    padding-block: 4.5rem;
  }

  .wordmark {
    font-size: 1.62rem;
  }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
  }

  .hero-copy {
    padding-top: 3.5rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    flex-basis: auto;
  }

  .hero-portrait {
    min-height: 23rem;
  }

  .solutions-heading {
    padding-left: 1.3rem;
  }

  .service-entry,
  .service-entry-1,
  .service-entry-2 {
    border-radius: 54px 12px 54px 12px;
  }

  .reassurance-band {
    padding: 1.2rem;
  }

  .reassurance-band > div {
    align-items: flex-start;
  }

  .icon-badge {
    width: 2rem;
    height: 2rem;
  }

  .approach-steps li {
    padding-left: 2.6rem;
  }

  .local-address-block {
    padding: 2rem;
    border-radius: 56px 12px 56px 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.35rem;
  }

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

  .detail-mark {
    margin: 0.25rem 0 0.5rem 0.35rem;
  }

  .booking-frame {
    border-radius: 56px 12px 56px 12px;
  }

  .booking-placeholder {
    padding: 2.25rem 1.5rem;
  }

  .contact-direct > a {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.25rem;
  }
}

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