@font-face {
  font-family: "Beauty Playfair";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/playfair-display-400.ttf") format("truetype");
}

@font-face {
  font-family: "Beauty Playfair";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/playfair-display-500.ttf") format("truetype");
}

@font-face {
  font-family: "Beauty Playfair";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/playfair-display-600.ttf") format("truetype");
}

@font-face {
  font-family: "Beauty Script";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/windsong-500.ttf") format("truetype");
}

:root {
  --vanilla: #fff7e6;
  --vanilla-soft: #fffaf1;
  --champagne: #f3dbb7;
  --peach: #f1b98f;
  --blush: #f7c8d3;
  --rosewood: #b46a72;
  --sage: #a8b58a;
  --sage-soft: #e9edda;
  --sky: #a9b7c6;
  --lagoon: #2d3a47;
  --lagoon-soft: #405263;
  --ink: #242424;
  --muted: #66615e;
  --nav-text: #2b2b2b;
  --nav-text-invert: #fffdf8;
  --line: rgba(45, 58, 71, 0.16);
  --surface: rgba(255, 250, 241, 0.86);
  --surface-solid: #fffaf1;
  --white: #fffdf8;
  --shadow: 0 1.5rem 4rem rgba(45, 58, 71, 0.1);
  --radius: 0.75rem;
  --radius-soft: 1.35rem;
  --radius-pill: 999px;
  --page-max: 75rem;
  --page-gutter: clamp(1rem, 4vw, 2.5rem);
  --serif: "Beauty Playfair", Georgia, "Times New Roman", serif;
  --hero-serif: "Beauty Playfair", Georgia, "Times New Roman", serif;
  --script: "Beauty Script", "Snell Roundhand", "Apple Chancery", cursive;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 7rem;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(247, 200, 211, 0.36), transparent 28rem),
    radial-gradient(circle at 84% 0%, rgba(169, 183, 198, 0.24), transparent 26rem),
    var(--vanilla);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.62;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(45, 58, 71, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 58, 71, 0.025) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 70%);
}

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

a {
  color: inherit;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0;
  height: 0.18rem;
  background: linear-gradient(90deg, var(--rosewood), var(--sage), var(--sky));
  transform-origin: left center;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  padding: 0.8rem max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  background: rgba(255, 247, 230, 0.84);
  border-bottom: 1px solid rgba(45, 58, 71, 0.08);
  backdrop-filter: blur(1rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 3rem;
}

.brand img {
  width: 8.6rem;
}

.site-nav {
  position: fixed;
  inset: 4.8rem 1rem auto;
  display: none;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.85rem;
  background: rgba(255, 250, 241, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-soft);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a,
.header-cta,
.footer-socials a {
  min-height: 2.65rem;
  padding: 0.58rem 1rem;
  border: 1px solid rgba(45, 58, 71, 0.22);
  border-radius: var(--radius-pill);
  color: var(--lagoon);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.header-cta:hover,
.header-cta:focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--lagoon);
  background: rgba(247, 200, 211, 0.36);
  border-color: rgba(180, 106, 114, 0.42);
  transform: translateY(-1px);
}

.header-cta {
  display: none;
  justify-self: end;
  color: var(--white);
  background: var(--lagoon);
  border-color: var(--lagoon);
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
  background: var(--rosewood);
}

.nav-toggle {
  display: grid;
  justify-self: end;
  gap: 0.28rem;
  place-content: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  color: var(--lagoon);
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 1px;
  background: currentColor;
}

.section-shell {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  min-height: calc(100svh - 5rem);
  align-items: center;
  margin: 0 auto;
  padding: clamp(2.25rem, 6vw, 5.5rem) 0 clamp(2rem, 5vw, 4.5rem);
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.95rem;
  color: var(--rosewood);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  color: var(--lagoon);
  font-size: clamp(2.75rem, 6.6vw, 5.65rem);
}

h2 {
  margin-bottom: 1rem;
  color: var(--lagoon);
  font-size: clamp(2rem, 4.6vw, 4.2rem);
}

h3 {
  margin-bottom: 0.7rem;
  color: var(--lagoon);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.14;
}

.hero-lead,
.section-intro > p,
.split-heading > p,
.method-copy > p,
.scan-card > p,
.contact-copy > p,
.reference-placeholder p,
.service-grid article > p:not(:first-child),
.value-lab p,
.signal-grid p,
.proof-list p {
  color: var(--muted);
}

.hero-lead {
  max-width: 37rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  min-height: 3rem;
  padding: 0.78rem 0.82rem 0.78rem 1.22rem;
  border: 1px solid var(--lagoon);
  border-radius: var(--radius-pill);
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button::before {
  position: absolute;
  inset: -1px auto -1px -42%;
  z-index: -1;
  width: 38%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg);
  transition: left 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button::after {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  content: "→";
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  transition:
    background-color 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--lagoon), #33495a 55%, #4b5962),
    var(--lagoon);
  box-shadow: 0 1rem 2rem rgba(45, 58, 71, 0.18);
}

.button-primary::after {
  color: var(--lagoon);
  background: var(--champagne);
}

.button-secondary {
  color: var(--lagoon);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.78), rgba(243, 219, 183, 0.42)),
    rgba(255, 250, 241, 0.65);
}

.button-secondary::after {
  color: var(--white);
  background: var(--rosewood);
}

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

.button:hover::before,
.button:focus-visible::before {
  left: 112%;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(0.16rem) rotate(-12deg);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary:hover,
.button-primary:focus-visible {
  background:
    linear-gradient(135deg, var(--rosewood), #9e6870 55%, var(--lagoon)),
    var(--rosewood);
  border-color: var(--rosewood);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--sage-soft);
  border-color: rgba(104, 112, 88, 0.5);
}

.button:focus-visible,
.site-nav a:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.footer-socials a:focus-visible,
.header-cta:focus-visible {
  outline: 2px solid rgba(180, 106, 114, 0.45);
  outline-offset: 3px;
}

.hero-visual,
.portrait-card,
.scan-image-wrap,
.value-lab article,
.value-photo,
.service-grid article,
.reference-placeholder,
.signature-content {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.42), transparent 14rem),
    var(--surface);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background-color 220ms ease;
}

.hero-visual:hover,
.portrait-card:hover,
.scan-image-wrap:hover,
.value-lab article:hover,
.value-photo:hover,
.service-grid article:hover,
.reference-placeholder:hover,
.signature-content:hover {
  transform: translateY(-0.18rem);
  border-color: rgba(180, 106, 114, 0.35);
}

.hero-visual {
  min-height: clamp(30rem, 62vw, 46rem);
  border-radius: var(--radius-soft);
  background: var(--sage-soft);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 32%;
  filter: saturate(0.92) contrast(0.98);
}

.hero-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  max-width: min(18rem, calc(100% - 2rem));
  padding: 1rem;
  color: var(--lagoon);
  background: rgba(255, 250, 241, 0.88);
  border: 1px solid rgba(45, 58, 71, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(0.8rem);
}

.hero-note span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--rosewood);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.08;
}

.signature-scene {
  position: relative;
  display: grid;
  min-height: clamp(35rem, 70vw, 48rem);
  align-items: end;
  margin: 0 auto;
  overflow: hidden;
  isolation: isolate;
}

.signature-scene::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 247, 230, 0.94), rgba(255, 247, 230, 0.55) 44%, rgba(45, 58, 71, 0.2)),
    linear-gradient(0deg, rgba(45, 58, 71, 0.18), transparent 40%);
}

.signature-scene > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(0.98);
}

.signature-scene > img {
  object-position: 58% 42%;
}

.signature-content {
  width: min(calc(100% - (var(--page-gutter) * 2)), 43rem);
  margin: 0 auto clamp(1.2rem, 4vw, 3rem);
  padding: clamp(1.25rem, 4vw, 2.4rem);
  border-radius: 0 2.5rem 2.5rem 0;
}

.signature-content {
  justify-self: start;
  margin-left: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.9), rgba(243, 219, 183, 0.58)),
    var(--surface-solid);
}

.signature-content h2 {
  font-size: clamp(2rem, 4.6vw, 4.6rem);
}

.signature-content p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.story-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.story-pills span {
  padding: 0.62rem 0.9rem;
  color: var(--lagoon);
  background: rgba(168, 181, 138, 0.28);
  border: 1px solid rgba(45, 58, 71, 0.13);
  border-radius: 999px 999px 999px 0.35rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: label-drift 5s ease-in-out infinite;
}

.story-pills span:nth-child(2) {
  background: rgba(247, 200, 211, 0.34);
  animation-delay: -1.2s;
}

.story-pills span:nth-child(3) {
  background: rgba(243, 219, 183, 0.52);
  animation-delay: -2.1s;
}

.story-pills span:nth-child(4) {
  background: rgba(169, 183, 198, 0.34);
  animation-delay: -3.4s;
}

.section-intro {
  display: grid;
  gap: 0.9rem;
  max-width: 48rem;
  margin-bottom: clamp(1.7rem, 4vw, 3rem);
}

.section-intro h2,
.section-intro p {
  margin-bottom: 0;
}

.value-lab {
  display: grid;
  gap: 0.8rem;
}

.value-lab article,
.value-photo,
.signal-grid article,
.service-grid article,
.reference-placeholder {
  min-height: 12rem;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  border-radius: var(--radius);
}

.value-lab article span,
.signal-grid article span,
.service-grid article > p:first-child,
.process span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--rosewood);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.value-lab article p,
.signal-grid p,
.service-grid article p,
.reference-placeholder p {
  margin-bottom: 0;
}

.value-lab .value-lead {
  min-height: 20rem;
  background:
    linear-gradient(135deg, rgba(45, 58, 71, 0.95), rgba(45, 58, 71, 0.8)),
    var(--lagoon);
}

.value-lab .value-lead span,
.value-lab .value-lead h3,
.value-lab .value-lead p,
.value-lab .value-lead .micro-link {
  color: var(--white);
}

.value-lead h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.micro-link {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 1.4rem;
  padding: 0.52rem 0.78rem;
  color: var(--rosewood);
  border: 1px solid rgba(180, 106, 114, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 400;
  text-decoration: none;
}

.value-lab article:not(.value-lead):nth-child(2) {
  background: rgba(247, 200, 211, 0.28);
}

.value-lab article:not(.value-lead):nth-child(3) {
  background: rgba(168, 181, 138, 0.28);
}

.value-lab article:not(.value-lead):nth-child(4) {
  background: rgba(243, 219, 183, 0.42);
}

.value-photo {
  display: grid;
  align-content: end;
  min-height: 21rem;
  margin: 0;
  padding: 0;
  background: var(--sage-soft);
}

.value-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.88) contrast(0.98);
}

.value-photo figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  padding: 0.85rem;
  color: var(--lagoon);
  background: rgba(255, 250, 241, 0.88);
  border: 1px solid rgba(45, 58, 71, 0.13);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.35;
  backdrop-filter: blur(0.8rem);
}

.split-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 42rem;
  font-size: 1.05rem;
}

.signal-grid {
  display: grid;
  gap: 0.8rem;
}

.signal-grid article {
  background: rgba(255, 250, 241, 0.55);
  border: 1px solid var(--line);
}

.care-map {
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.care-map-intro {
  max-width: 54rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.8rem);
}

.care-path {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.care-path::before {
  position: absolute;
  top: 2.1rem;
  bottom: 2.1rem;
  left: 1.15rem;
  width: 1px;
  content: "";
  background: linear-gradient(var(--rosewood), var(--sage), var(--sky));
}

.care-path article {
  position: relative;
  display: grid;
  min-height: 12rem;
  padding: 1.15rem 1.15rem 1.15rem 4rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.88), rgba(255, 247, 230, 0.62)),
    var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 2.2rem 0.8rem 2.2rem 0.8rem;
}

.care-path article::before {
  position: absolute;
  top: 1.32rem;
  left: 0.74rem;
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  content: "";
  background: var(--champagne);
  border: 1px solid rgba(45, 58, 71, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 0.42rem rgba(255, 247, 230, 0.86);
}

.care-path article::after {
  position: absolute;
  right: -2rem;
  bottom: -2.4rem;
  width: 9rem;
  height: 9rem;
  content: "";
  background: rgba(247, 200, 211, 0.24);
  border: 1px solid rgba(180, 106, 114, 0.12);
  border-radius: 48% 52% 44% 56%;
  transform: rotate(-14deg);
}

.care-path article:nth-child(2)::after {
  background: rgba(168, 181, 138, 0.24);
}

.care-path article:nth-child(3)::after {
  background: rgba(243, 219, 183, 0.34);
}

.care-path article:nth-child(4)::after {
  background: rgba(169, 183, 198, 0.26);
}

.care-path span {
  color: var(--rosewood);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.care-path h3,
.care-path p {
  position: relative;
  z-index: 1;
}

.care-path p {
  margin-bottom: 0;
  color: var(--muted);
}

.scan {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.scan-image-wrap {
  min-height: 22rem;
  border-radius: var(--radius-soft);
  background: var(--sage-soft);
}

.scan-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 26%;
  filter: saturate(0.9) contrast(0.98);
}

.scan-card {
  padding: clamp(1.35rem, 5vw, 4rem);
  color: var(--lagoon);
  background:
    linear-gradient(135deg, rgba(247, 200, 211, 0.38), rgba(233, 237, 218, 0.5)),
    var(--surface-solid);
  border: 1px solid rgba(180, 106, 114, 0.23);
  border-radius: var(--radius-soft);
}

.scan-steps {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 2rem;
}

.scan-steps span {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--lagoon);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.method {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.portrait-card {
  min-height: 34rem;
  border-radius: var(--radius-soft);
  background: var(--sage-soft);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.92);
}

.process {
  display: grid;
  margin-top: 2rem;
}

.process div {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.process p {
  margin-bottom: 0;
  color: var(--muted);
}

.wide-proof {
  display: grid;
  gap: 0;
  width: min(calc(100% - (var(--page-gutter) * 2)), 88rem);
  margin: 0 auto;
  padding: 0.5rem 0 clamp(3rem, 7vw, 5rem);
}

.wide-proof-copy {
  display: grid;
  align-content: end;
  min-height: 18rem;
  padding: clamp(1.25rem, 4vw, 2.4rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(45, 58, 71, 0.95), rgba(64, 82, 99, 0.88)),
    var(--lagoon);
  border-radius: var(--radius-soft) var(--radius-soft) 0 0;
}

.wide-proof-copy .eyebrow,
.wide-proof-copy h2 {
  color: var(--white);
}

.wide-proof-copy h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.wide-proof-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.wide-proof-images img {
  width: 100%;
  height: clamp(19rem, 48vw, 34rem);
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.86) contrast(0.98);
}

.wide-proof-images img:first-child {
  object-position: 50% 48%;
}

.wide-proof-images img:nth-child(2) {
  object-position: 50% 26%;
}

.services {
  padding-top: clamp(3rem, 7vw, 5rem);
}

.service-grid {
  display: grid;
  gap: 0.8rem;
}

.service-grid article {
  display: flex;
  flex-direction: column;
  min-height: 15.5rem;
  isolation: isolate;
}

.service-grid article:nth-child(odd) {
  background-color: rgba(255, 250, 241, 0.62);
}

.service-grid article:nth-child(even) {
  background-color: rgba(233, 237, 218, 0.52);
}

.service-grid .service-pro {
  background:
    linear-gradient(135deg, rgba(45, 58, 71, 0.92), rgba(64, 82, 99, 0.9)),
    var(--lagoon);
}

.service-grid article::after {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  z-index: -1;
  width: 7.5rem;
  height: 7.5rem;
  content: "";
  background: rgba(243, 219, 183, 0.34);
  border-radius: 40% 60% 45% 55%;
  transform: rotate(16deg);
}

.service-grid article:nth-child(2)::after {
  background: rgba(247, 200, 211, 0.34);
}

.service-grid article:nth-child(3)::after {
  background: rgba(168, 181, 138, 0.3);
}

.service-grid article:nth-child(4)::after {
  background: rgba(169, 183, 198, 0.3);
}

.service-grid .service-pro h3,
.service-grid .service-pro p,
.service-grid .service-pro a {
  color: var(--white);
}

.service-grid a {
  margin-top: auto;
  color: var(--rosewood);
  font-weight: 400;
  text-decoration-color: rgba(180, 106, 114, 0.34);
  text-underline-offset: 0.3rem;
}

.proof {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.proof-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.proof-list p {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2.1rem);
  line-height: 1.16;
}

.references,
.contact {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.reference-placeholder {
  min-height: auto;
}

.contact-details {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.5rem;
  color: var(--muted);
}

.contact-details a {
  color: var(--lagoon);
  font-weight: 400;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  color: var(--lagoon);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: rgba(180, 106, 114, 0.48);
  box-shadow: 0 0 0 0.2rem rgba(180, 106, 114, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  cursor: pointer;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.booking-fields {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  background: rgba(233, 237, 218, 0.48);
  border: 1px solid rgba(104, 112, 88, 0.2);
  border-radius: var(--radius);
}

.booking-fields.is-disabled {
  background: rgba(255, 250, 241, 0.52);
}

.booking-fields.is-disabled label {
  opacity: 0.58;
}

.form-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.face-scan-dialog {
  width: min(calc(100vw - 2rem), 42rem);
  max-height: min(90vh, 52rem);
  overflow: auto;
  padding: 0;
  color: var(--br-ink);
  border: 0;
  border-radius: 1.4rem;
  background: transparent;
}

.face-scan-dialog::backdrop {
  background: rgba(38, 29, 44, 0.54);
  backdrop-filter: blur(0.7rem);
}

.face-scan-dialog__panel {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(180, 106, 114, 0.22);
  border-radius: inherit;
  background: var(--lf-vanilla);
  box-shadow: 0 1.6rem 4rem rgba(38, 29, 44, 0.22);
}

.face-scan-dialog__panel h2,
.face-scan-dialog__panel p {
  margin: 0;
}

.face-scan-dialog__panel h2 {
  max-width: 13ch;
  color: var(--rosewood);
  font-family: var(--hero-serif);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

.face-scan-dialog__panel > .eyebrow,
.face-scan-dialog__panel h2,
.face-scan-dialog__intro {
  justify-self: center;
  text-align: center;
}

.face-scan-dialog__intro {
  max-width: 46ch;
}

.face-scan-dialog__panel .form-privacy-note {
  justify-self: center;
  width: min(100%, 56ch);
  margin: 0 auto;
}

.face-scan-dialog__panel label {
  display: grid;
  gap: 0.45rem;
  font-weight: 500;
}

.face-scan-options {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.face-scan-options legend {
  margin-bottom: 0.1rem;
  color: var(--br-ink);
  font-weight: 600;
}

.face-scan-options label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  min-height: 2.8rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(45, 58, 71, 0.14);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 400;
  line-height: 1.35;
}

.face-scan-options input {
  flex: 0 0 auto;
  width: 1rem;
  min-height: 1rem;
  margin-top: 0.18rem;
  accent-color: var(--rosewood);
}

.face-scan-dialog__panel input:not([type="radio"]),
.face-scan-dialog__panel textarea,
.face-scan-dialog__panel select {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  color: var(--br-ink);
  border: 1px solid rgba(45, 58, 71, 0.18);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
}

.face-scan-dialog__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--br-ink);
  border: 1px solid rgba(45, 58, 71, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 2rem;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  margin: 0 auto;
  padding: clamp(2.8rem, 6vw, 4.5rem) 0 2.7rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  justify-items: center;
}

.site-footer img {
  width: 9rem;
  margin: 0 auto 0.8rem;
}

.site-footer p {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.footer-socials a {
  display: grid;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  min-height: 2.75rem;
  place-items: center;
  padding: 0;
  color: var(--rosewood);
  background: transparent;
  border: 0;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--lagoon);
  transform: translateY(-0.12rem) scale(1.06);
}

.footer-socials svg {
  width: 1.65rem;
  height: 1.65rem;
}

.footer-socials a:first-child svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-socials a:first-child .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.footer-socials a:last-child svg {
  fill: currentColor;
}

.footer-nav {
  display: grid;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
}

.footer-nav div {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
}

.footer-nav span {
  color: var(--rosewood);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--lagoon);
}

.footer-credit {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

@keyframes label-drift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-0.25rem) rotate(-1.5deg);
  }
}

@media (min-width: 48rem) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    justify-self: center;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.82fr);
  }

  .split-heading,
  .scan,
  .method,
  .proof,
  .references,
  .contact {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  }

  .value-lab,
  .signal-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-lead {
    grid-row: span 2;
  }

  .value-photo {
    grid-column: span 2;
  }

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

  .care-path::before {
    display: none;
  }

  .care-path article {
    padding: 1.2rem;
  }

  .care-path article::before {
    position: static;
    margin-bottom: 1rem;
  }

  .wide-proof {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
    align-items: stretch;
  }

  .wide-proof-copy {
    border-radius: var(--radius-soft) 0 0 var(--radius-soft);
  }

  .wide-proof-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(12rem, 16rem));
  }

  .footer-credit {
    grid-column: 1;
  }

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

  .form-helper {
    grid-column: 1 / -1;
  }
}

@media (min-width: 64rem) {
  .value-lab {
    grid-template-columns: 1.35fr repeat(2, minmax(0, 1fr));
  }

  .value-photo {
    grid-column: auto;
    grid-row: span 2;
  }

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

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

  .care-path::after {
    position: absolute;
    top: 2.18rem;
    right: 8%;
    left: 8%;
    z-index: -1;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--rosewood), var(--sage), var(--sky), var(--champagne));
  }

  .service-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-grid article {
    min-height: 18rem;
  }

  .service-grid article:nth-child(1),
  .service-grid article:nth-child(2),
  .service-grid article:nth-child(5) {
    grid-column: span 2;
  }

  .service-grid article:nth-child(3),
  .service-grid article:nth-child(4) {
    grid-column: span 3;
  }
}

@media (min-width: 78rem) {
  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(26rem, 0.9fr);
  }

  .hero-visual {
    transform: translateX(1.4rem);
  }
}

@media (max-width: 36rem) {
  h1 {
    max-width: 10ch;
  }

  .hero-visual {
    min-height: 32rem;
  }

  .hero-note {
    position: static;
    margin: -5.6rem 0.85rem 0.85rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .signature-content {
    width: min(calc(100% - 1.4rem), 43rem);
    margin-right: auto;
    margin-left: auto;
    border-radius: var(--radius-soft);
  }

  .signature-scene::after {
    background:
      linear-gradient(0deg, rgba(255, 247, 230, 0.96), rgba(255, 247, 230, 0.58) 58%, rgba(45, 58, 71, 0.08)),
      linear-gradient(90deg, rgba(255, 247, 230, 0.3), transparent);
  }
}

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

  .scroll-progress {
    display: none;
  }

  .story-pills span {
    animation: none !important;
  }
}

/* Story-led creative pass */
:root {
  --apricot: #e87e47;
  --peach-soft: #f3dbb7;
  --petal-soft: #f8d5dc;
  --sage-wash: #dfe8c6;
  --sky-wash: #dbe5ee;
  --story-shadow: 0 1.2rem 3.5rem rgba(45, 58, 71, 0.16);
  --display: Georgia, "Times New Roman", serif;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 247, 230, 0.78), rgba(247, 200, 211, 0.22) 36%, rgba(168, 181, 138, 0.18) 68%, rgba(255, 247, 230, 0.9)),
    var(--vanilla);
  font-family: var(--sans);
  letter-spacing: 0;
}

body::before {
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(45, 58, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 58, 71, 0.03) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
}

.site-header {
  background: rgba(255, 247, 230, 0.76);
}

.eyebrow,
.section-kicker,
.value-lab article span,
.signal-grid article span,
.service-grid article > p:first-child,
.process span,
.scan-steps span,
.care-path span,
.footer-nav span {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

.story-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 4.9rem);
  margin: 0;
  padding: clamp(5rem, 10vw, 8rem) max(var(--page-gutter), calc((100vw - var(--page-max)) / 2)) clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  align-items: end;
  grid-template-columns: minmax(0, 1fr);
  background: var(--lagoon);
}

.story-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 247, 230, 0.96) 0%, rgba(255, 247, 230, 0.84) 34%, rgba(255, 247, 230, 0.2) 62%, rgba(45, 58, 71, 0.22) 100%),
    linear-gradient(0deg, rgba(45, 58, 71, 0.24), transparent 42%);
}

.story-hero::after {
  position: absolute;
  right: max(1rem, 6vw);
  bottom: 11%;
  z-index: -1;
  width: clamp(9rem, 16vw, 16rem);
  height: clamp(9rem, 16vw, 16rem);
  content: "";
  background: rgba(232, 126, 71, 0.3);
  border: 1px solid rgba(255, 247, 230, 0.42);
  border-radius: 42% 58% 51% 49%;
  filter: blur(0.2px);
  animation: shape-breathe 9s ease-in-out infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 38%;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.015);
}

.story-hero .hero-copy {
  width: min(45rem, 100%);
  max-width: none;
  padding-bottom: clamp(3rem, 7vw, 7rem);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}

.hero-chips span,
.story-orbit a,
.story-pills span {
  box-shadow: inset 0 0 0 1px rgba(45, 58, 71, 0.1);
}

.hero-chips span {
  padding: 0.58rem 0.86rem;
  color: var(--lagoon);
  background: rgba(255, 250, 241, 0.82);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1;
}

.story-hero h1 {
  max-width: 10.5ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.15rem, 7.2vw, 7.4rem);
  line-height: 0.94;
}

.story-hero .hero-lead {
  max-width: 38rem;
  color: rgba(45, 58, 71, 0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 400;
}

.hero-person-card {
  --mx: 50%;
  --my: 50%;
  position: absolute;
  right: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  bottom: clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  gap: 0.8rem;
  width: min(24rem, calc(100% - 2rem));
  padding: 0.68rem;
  color: var(--lagoon);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.48), transparent 11rem),
    rgba(255, 250, 241, 0.86);
  border: 1px solid rgba(255, 247, 230, 0.66);
  border-radius: 1.4rem;
  box-shadow: var(--story-shadow);
  backdrop-filter: blur(1rem);
}

.hero-person-card img {
  width: 4.6rem;
  height: 4.6rem;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 1rem;
}

.hero-person-card span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--rosewood);
  font-weight: 400;
}

.hero-person-card strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.28;
}

.scroll-cue {
  position: absolute;
  left: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  bottom: 1.4rem;
  display: none;
  width: 3rem;
  height: 5.4rem;
  color: var(--lagoon);
  border: 1px solid rgba(45, 58, 71, 0.24);
  border-radius: var(--radius-pill);
  text-decoration: none;
}

.scroll-cue::after {
  position: absolute;
  top: 0.7rem;
  left: 50%;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--rosewood);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.scroll-cue span {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-90deg);
  transform-origin: center;
}

.kinetic-strip {
  overflow: hidden;
  padding: 0.95rem 0;
  color: var(--lagoon);
  background:
    linear-gradient(90deg, var(--peach-soft), rgba(232, 126, 71, 0.76), var(--blush), var(--sage));
  border-block: 1px solid rgba(45, 58, 71, 0.14);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.2rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 2.35rem);
  line-height: 1;
}

.story-flow {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  margin: clamp(2rem, 5vw, 4rem) auto;
  padding: clamp(1.2rem, 4vw, 2.6rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(45, 58, 71, 0.96), rgba(64, 82, 99, 0.88)),
    var(--lagoon);
  border-radius: clamp(1.2rem, 3vw, 2.4rem);
  box-shadow: var(--story-shadow);
}

.story-flow h2,
.story-flow p,
.story-flow .section-kicker {
  color: var(--white);
}

.story-flow-copy {
  max-width: 48rem;
}

.story-orbit {
  display: grid;
  gap: 0.7rem;
}

.story-orbit a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: rgba(255, 247, 230, 0.1);
  border: 1px solid rgba(255, 247, 230, 0.18);
  border-radius: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.story-orbit a:hover,
.story-orbit a:focus-visible {
  background: rgba(232, 126, 71, 0.24);
  transform: translateY(-0.15rem);
}

.story-orbit span {
  color: var(--champagne);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
}

.color-chapter {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  margin-block: clamp(1rem, 4vw, 2rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(45, 58, 71, 0.12);
  border-radius: clamp(1.2rem, 3vw, 2.4rem);
}

.color-chapter-sage {
  background:
    linear-gradient(135deg, rgba(168, 181, 138, 0.42), rgba(255, 247, 230, 0.86)),
    var(--sage-wash);
}

.color-chapter-blush {
  background:
    linear-gradient(135deg, rgba(247, 200, 211, 0.62), rgba(243, 219, 183, 0.48)),
    var(--petal-soft);
}

.color-chapter-peach {
  background:
    linear-gradient(135deg, rgba(232, 126, 71, 0.22), rgba(255, 247, 230, 0.72)),
    var(--peach-soft);
}

.signature-scene {
  min-height: clamp(34rem, 68vw, 50rem);
}

.signature-scene::after {
  background:
    linear-gradient(90deg, rgba(45, 58, 71, 0.86), rgba(45, 58, 71, 0.52) 38%, rgba(255, 247, 230, 0.08)),
    linear-gradient(0deg, rgba(45, 58, 71, 0.38), transparent 44%);
}

.signature-scene > img {
  object-position: 54% 48%;
  filter: saturate(1.08) contrast(1.02);
}

.signature-content {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(45, 58, 71, 0.86), rgba(64, 82, 99, 0.72)),
    rgba(45, 58, 71, 0.8);
  border-color: rgba(255, 247, 230, 0.22);
  box-shadow: var(--story-shadow);
}

.signature-content h2,
.signature-content p,
.signature-content .eyebrow {
  color: var(--white);
}

.story-pills span {
  color: var(--lagoon);
  background: rgba(255, 247, 230, 0.86);
  font-family: var(--sans);
  font-weight: 400;
}

.value-lab {
  gap: 1rem;
}

.value-lab article,
.value-photo,
.signal-grid article,
.service-grid article,
.reference-placeholder,
.contact-form {
  border-radius: 1.25rem;
}

.scan-story {
  display: grid;
  gap: 0;
  width: min(calc(100% - (var(--page-gutter) * 2)), 88rem);
  margin: clamp(2rem, 5vw, 4rem) auto;
  padding: 0;
  overflow: hidden;
  background: var(--lagoon);
  border: 1px solid rgba(45, 58, 71, 0.14);
  border-radius: clamp(1.2rem, 3vw, 2.4rem);
  box-shadow: var(--story-shadow);
}

.scan-story .scan-image-wrap {
  min-height: clamp(27rem, 68vw, 48rem);
  border: 0;
  border-radius: 0;
}

.scan-story .scan-card {
  display: grid;
  align-content: center;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 247, 230, 0.96), rgba(247, 200, 211, 0.72)),
    var(--vanilla);
}

.method-story {
  padding-top: clamp(3rem, 7vw, 5rem);
}

.method-story .portrait-card {
  min-height: clamp(24rem, 48vw, 39rem);
}

.method-story .portrait-card img {
  object-position: 50% 42%;
}

.wide-proof {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--page-gutter), calc((100vw - 88rem) / 2));
}

.wide-proof-copy {
  background:
    linear-gradient(135deg, rgba(180, 106, 114, 0.95), rgba(232, 126, 71, 0.78)),
    var(--rosewood);
}

.service-grid article {
  min-height: 17rem;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.45), transparent 12rem),
    rgba(255, 250, 241, 0.68);
}

.service-grid article:nth-child(2) {
  background-color: rgba(247, 200, 211, 0.42);
}

.service-grid article:nth-child(3) {
  background-color: rgba(168, 181, 138, 0.36);
}

.service-grid article:nth-child(4) {
  background-color: rgba(169, 183, 198, 0.38);
}

.service-grid .service-pro {
  background:
    linear-gradient(135deg, rgba(45, 58, 71, 0.96), rgba(180, 106, 114, 0.78)),
    var(--lagoon);
}

.reveal-section {
  animation: rise-in 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.55;
  }

  50% {
    transform: translate(-50%, 2.7rem);
    opacity: 1;
  }
}

@keyframes shape-breathe {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    border-radius: 42% 58% 51% 49%;
  }

  50% {
    transform: translateY(-0.8rem) rotate(9deg) scale(1.08);
    border-radius: 58% 42% 46% 54%;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 48rem) {
  .story-flow {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
    align-items: end;
  }

  .story-orbit {
    grid-template-columns: 1fr;
  }

  .scan-story {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  }

  .scroll-cue {
    display: block;
  }
}

@media (min-width: 64rem) {
  .story-hero .hero-copy {
    padding-bottom: clamp(5rem, 8vw, 8rem);
  }

  .story-orbit a:nth-child(even) {
    transform: translateX(1.6rem);
  }

  .story-orbit a:nth-child(even):hover,
  .story-orbit a:nth-child(even):focus-visible {
    transform: translate(1.6rem, -0.15rem);
  }
}

@media (max-width: 47.98rem) {
  .story-hero {
    min-height: calc(100svh - 4.8rem);
    align-items: start;
    padding-top: 2.7rem;
    padding-bottom: 8.7rem;
  }

  .story-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 247, 230, 0.96) 0%, rgba(255, 247, 230, 0.82) 50%, rgba(45, 58, 71, 0.2) 100%),
      linear-gradient(90deg, rgba(255, 247, 230, 0.2), transparent);
  }

  .hero-bg {
    object-position: 58% 30%;
  }

  .story-hero .hero-copy {
    padding-bottom: 0;
  }

  .hero-person-card {
    grid-template-columns: 4rem minmax(0, 1fr);
    right: 1rem;
    bottom: 0.65rem;
    left: 1rem;
    width: auto;
    padding: 0.58rem;
  }

  .hero-person-card img {
    width: 4rem;
    height: 4rem;
  }

  .hero-person-card strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .color-chapter {
    width: min(calc(100% - 1.5rem), var(--page-max));
    padding: 1.25rem;
  }

  .marquee-track {
    animation-duration: 22s;
  }

  .signature-content {
    width: min(calc(100% - 1.5rem), 43rem);
    margin-right: auto;
    margin-left: auto;
    border-radius: var(--radius-soft);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track,
  .story-hero::after,
  .scroll-cue::after,
  .reveal-section {
    animation: none !important;
  }
}

/* Glass hero refinement */
html {
  scroll-padding-top: 6.2rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: 0.68rem;
  padding-bottom: 0.68rem;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.58), rgba(255, 250, 241, 0.18));
  border-bottom: 1px solid rgba(255, 250, 241, 0.34);
  box-shadow: none;
  backdrop-filter: blur(1.05rem) saturate(1.18);
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.74);
  border-bottom-color: rgba(45, 58, 71, 0.09);
  box-shadow: 0 0.9rem 2rem rgba(45, 58, 71, 0.06);
}

.brand img {
  width: clamp(7.3rem, 9vw, 8.4rem);
}

.site-nav a,
.header-cta {
  min-height: 2.35rem;
  padding: 0.5rem 0.9rem;
  background: rgba(255, 250, 241, 0.24);
  border-color: rgba(45, 58, 71, 0.1);
  backdrop-filter: blur(0.75rem);
}

.header-cta {
  color: var(--white);
  background: rgba(45, 58, 71, 0.82);
  border-color: rgba(45, 58, 71, 0.18);
}

.story-hero {
  min-height: 100svh;
  padding:
    clamp(6.2rem, 9vh, 7.5rem)
    max(var(--page-gutter), calc((100vw - var(--page-max)) / 2))
    clamp(1.2rem, 4vh, 2.4rem);
  place-items: center;
  align-content: center;
  gap: clamp(0.9rem, 2vh, 1.4rem);
  text-align: center;
  background: var(--lagoon);
}

.story-hero::before {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 250, 241, 0.22), transparent 20rem),
    linear-gradient(180deg, rgba(45, 58, 71, 0.1), rgba(45, 58, 71, 0.34)),
    linear-gradient(90deg, rgba(255, 247, 230, 0.32), rgba(247, 200, 211, 0.18) 42%, rgba(45, 58, 71, 0.24));
}

.story-hero::after {
  right: 8vw;
  bottom: 10vh;
  width: clamp(8rem, 14vw, 13rem);
  height: clamp(8rem, 14vw, 13rem);
  background: rgba(243, 219, 183, 0.24);
  border-color: rgba(255, 250, 241, 0.34);
  backdrop-filter: blur(0.5rem);
}

.hero-bg {
  object-position: 50% 42%;
  filter: saturate(1.02) contrast(0.98) brightness(0.92);
  transform: none;
}

.story-hero .hero-copy {
  position: relative;
  z-index: 1;
  width: min(58rem, 100%);
  padding: clamp(1.15rem, 3vw, 2.15rem);
  margin: 0 auto;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.32), rgba(255, 250, 241, 0.12)),
    rgba(45, 58, 71, 0.18);
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: clamp(1.35rem, 3vw, 2.25rem);
  box-shadow: 0 1.8rem 5rem rgba(45, 58, 71, 0.22);
  backdrop-filter: blur(1.25rem) saturate(1.12);
}

.hero-chips,
.scroll-cue,
.kinetic-strip {
  display: none !important;
}

.story-hero h1 {
  max-width: 13ch;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: clamp(3.1rem, 7vw, 7.1rem);
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: 0 0.9rem 2.8rem rgba(45, 58, 71, 0.36);
}

.story-hero .hero-lead {
  max-width: 42rem;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 650;
  line-height: 1.55;
  text-wrap: pretty;
}

.story-hero .hero-actions {
  justify-content: center;
  margin-top: clamp(1rem, 2.4vh, 1.45rem);
}

.story-hero .button {
  box-shadow: 0 0.8rem 1.8rem rgba(45, 58, 71, 0.18);
}

.story-hero .button-secondary {
  color: var(--white);
  background: rgba(255, 250, 241, 0.13);
  border-color: rgba(255, 250, 241, 0.66);
  backdrop-filter: blur(0.8rem);
}

.hero-person-card {
  right: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  bottom: clamp(1rem, 3vw, 1.8rem);
  text-align: left;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.52), transparent 10rem),
    rgba(255, 250, 241, 0.76);
  border-color: rgba(255, 250, 241, 0.7);
}

.story-flow {
  margin-top: clamp(1.2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 88% 8%, rgba(247, 200, 211, 0.24), transparent 19rem),
    linear-gradient(135deg, rgba(45, 58, 71, 0.97), rgba(64, 82, 99, 0.9)),
    var(--lagoon);
}

.story-flow h2 {
  max-width: 15ch;
  text-wrap: balance;
}

@media (min-width: 48rem) {
  .story-hero {
    min-height: 100svh;
  }
}

@media (min-width: 64rem) {
  .story-hero .hero-copy {
    padding-bottom: clamp(1.4rem, 3vw, 2.25rem);
  }
}

@media (max-width: 47.98rem) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .site-header {
    grid-template-columns: auto auto;
    padding: 0.58rem 1rem;
  }

  .site-nav {
    inset: 4.35rem 1rem auto;
    background: rgba(255, 250, 241, 0.9);
    backdrop-filter: blur(1rem);
  }

  .story-hero {
    min-height: 100svh;
    padding: 5.45rem 1rem 0.9rem;
    justify-items: center;
    align-content: center;
  }

  .story-hero::before {
    background:
      radial-gradient(circle at 50% 36%, rgba(255, 250, 241, 0.18), transparent 13rem),
      linear-gradient(180deg, rgba(45, 58, 71, 0.08), rgba(45, 58, 71, 0.42)),
      linear-gradient(90deg, rgba(255, 247, 230, 0.22), rgba(247, 200, 211, 0.12));
  }

  .hero-bg {
    object-position: 51% 34%;
  }

  .story-hero .hero-copy {
    padding: 1.05rem;
    border-radius: 1.35rem;
  }

  .story-hero h1,
  h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 11.2vw, 3.55rem);
    line-height: 0.96;
  }

  .story-hero .hero-lead {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .story-hero .hero-actions,
  .story-hero .button {
    width: 100%;
  }

  .story-hero .button {
    min-height: 2.9rem;
  }

  .hero-person-card {
    position: static;
    width: min(100%, 24rem);
    margin: 0 auto;
  }

  .hero-person-card img {
    width: 3.85rem;
    height: 3.85rem;
  }

  .hero-person-card strong {
    font-size: 0.82rem;
  }
}

@media (max-width: 23.5rem) {
  .story-hero {
    padding-top: 5.1rem;
  }

  .story-hero h1,
  h1 {
    font-size: 2.3rem;
  }

  .story-hero .hero-lead {
    font-size: 0.92rem;
  }

  .hero-person-card {
    grid-template-columns: 3.45rem minmax(0, 1fr);
  }

  .hero-person-card img {
    width: 3.45rem;
    height: 3.45rem;
  }
}

/* Hero typography without the glass card */
.story-hero::before {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 250, 241, 0.08), transparent 20rem),
    linear-gradient(180deg, rgba(45, 58, 71, 0.1), rgba(45, 58, 71, 0.32)),
    linear-gradient(90deg, rgba(45, 58, 71, 0.2), rgba(247, 200, 211, 0.04) 46%, rgba(45, 58, 71, 0.16));
}

.hero-bg {
  filter: saturate(1.04) contrast(1) brightness(0.98);
}

.story-hero .hero-copy {
  width: min(66rem, 100%);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.story-hero h1 {
  max-width: 13.5ch;
  margin-bottom: clamp(0.9rem, 2vh, 1.25rem);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.34) 48%, rgba(255, 253, 248, 0.78));
  background-clip: text;
  color: rgba(255, 253, 248, 0.82);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.025em rgba(255, 253, 248, 0.28);
  filter: drop-shadow(0 1.1rem 2.6rem rgba(45, 58, 71, 0.55)) drop-shadow(0 0.08rem 0.1rem rgba(45, 58, 71, 0.34));
  text-shadow: none;
}

.story-hero .hero-lead {
  max-width: 43rem;
  color: rgba(255, 253, 248, 0.9);
  font-weight: 400;
  text-shadow:
    0 0.12rem 0.7rem rgba(45, 58, 71, 0.9),
    0 0.85rem 2.3rem rgba(45, 58, 71, 0.64);
}

.story-hero .button {
  border-color: rgba(255, 250, 241, 0.5);
  box-shadow:
    0 0.9rem 2.2rem rgba(45, 58, 71, 0.24),
    inset 0 1px 0 rgba(255, 250, 241, 0.28);
  backdrop-filter: blur(0.75rem) saturate(1.1);
}

.story-hero .button-primary {
  background: rgba(45, 58, 71, 0.78);
}

.story-hero .button-secondary {
  background: rgba(255, 250, 241, 0.15);
}

@media (max-width: 47.98rem) {
  .story-hero::before {
    background:
      radial-gradient(circle at 50% 36%, rgba(255, 250, 241, 0.08), transparent 12rem),
      linear-gradient(180deg, rgba(45, 58, 71, 0.05), rgba(45, 58, 71, 0.44)),
      linear-gradient(90deg, rgba(45, 58, 71, 0.18), rgba(247, 200, 211, 0.02));
  }

  .story-hero .hero-copy {
    padding: 0;
  }

  .story-hero h1 {
    max-width: 11.5ch;
    background: linear-gradient(180deg, rgba(255, 253, 248, 1), rgba(255, 253, 248, 0.54) 48%, rgba(255, 253, 248, 0.9));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 0.026em rgba(255, 253, 248, 0.36);
    filter: drop-shadow(0 0.65rem 1.4rem rgba(45, 58, 71, 0.72)) drop-shadow(0 0.08rem 0.1rem rgba(45, 58, 71, 0.45));
  }
}

/* Final hero/nav clarity lock */
.story-hero::after {
  display: none;
}

.story-hero h1 {
  max-width: 12.8ch;
}

.story-hero .hero-lead {
  max-width: 40rem;
  font-weight: 540;
}

.button,
.site-nav a,
.header-cta {
  font-weight: 520;
}

.story-hero .button {
  font-weight: 560;
}

.hero-person-card {
  right: clamp(1.1rem, 4vw, 3.5rem);
}

.hero-person-card span {
  font-weight: 600;
}

.hero-person-card strong {
  font-weight: 560;
}

@media (min-width: 48rem) {
  .site-header .site-nav {
    gap: clamp(1rem, 2vw, 1.7rem);
  }

  .site-header .site-nav a {
    position: relative;
    min-height: 2rem;
    padding: 0.2rem 0;
    background: transparent;
    border-color: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    font-size: 0.93rem;
  }

  .site-header .site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -0.25rem;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.55);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header .site-nav a:hover,
  .site-header .site-nav a:focus-visible,
  .site-header .site-nav a.is-active {
    color: var(--lagoon);
    background: transparent;
    border-color: transparent;
    transform: none;
  }

  .site-header .site-nav a:hover::after,
  .site-header .site-nav a:focus-visible::after,
  .site-header .site-nav a.is-active::after {
    opacity: 0.5;
    transform: scaleX(1);
  }
}

@media (max-width: 47.98rem) {
  .story-hero h1 {
    max-width: 10.8ch;
  }

  .story-hero .hero-lead {
    max-width: 22.5rem;
    font-weight: 600;
  }
}

/* Hero photo experiment and minimal navigation */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  overflow: hidden;
}

.hero-media .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(1.02) contrast(0.98) brightness(0.98);
  transform: none;
}

body[data-hero-variant="13"] .hero-media .hero-bg {
  object-position: 53% 54%;
}

body[data-hero-variant="02"] .hero-media .hero-bg {
  object-position: 44% 42%;
}

.story-hero::before {
  background:
    linear-gradient(180deg, rgba(45, 58, 71, 0.04), rgba(45, 58, 71, 0.22)),
    linear-gradient(90deg, rgba(45, 58, 71, 0.22), rgba(247, 200, 211, 0.02) 48%, rgba(45, 58, 71, 0.12));
}

.site-header {
  min-height: 4.6rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  background: rgba(255, 250, 241, 0.22);
  border-bottom-color: rgba(255, 250, 241, 0.22);
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.68);
  box-shadow: 0 0.75rem 1.6rem rgba(45, 58, 71, 0.045);
}

.brand {
  min-height: 2.6rem;
}

.brand img {
  width: clamp(6.9rem, 8vw, 7.8rem);
}

.header-cta {
  color: var(--lagoon);
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--rosewood);
  background: transparent;
  border-color: transparent;
  transform: none;
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

.nav-toggle span {
  width: 1.22rem;
  background: var(--lagoon);
}

@media (min-width: 48rem) {
  .site-header .site-nav a {
    font-weight: 520;
  }

  .header-cta {
    min-height: 2.25rem;
    padding: 0.2rem 0;
    font-weight: 520;
  }
}

@media (max-width: 47.98rem) {
  .site-header {
    min-height: 4.2rem;
    background: rgba(255, 250, 241, 0.18);
  }

  .site-nav {
    inset: 4.15rem 0.85rem auto;
    gap: 0;
    padding: 0.35rem 0.95rem;
    background: rgba(255, 250, 241, 0.7);
    border-color: rgba(45, 58, 71, 0.08);
    border-radius: 0.8rem;
    box-shadow: 0 0.85rem 1.6rem rgba(45, 58, 71, 0.065);
  }

  .site-nav a {
    min-height: 2.28rem;
    padding: 0.42rem 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(45, 58, 71, 0.08);
    border-radius: 0;
    font-weight: 520;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    color: var(--rosewood);
    background: transparent;
    border-color: transparent;
    transform: none;
  }

  .hero-media .hero-bg {
    object-position: 46% 42%;
  }

  body[data-hero-variant="13"] .hero-media .hero-bg {
    object-position: 84% 44%;
  }

  body[data-hero-variant="02"] .hero-media .hero-bg {
    object-position: 48% 40%;
  }

  .story-hero::before {
    background:
      linear-gradient(180deg, rgba(45, 58, 71, 0.04), rgba(45, 58, 71, 0.46)),
      linear-gradient(90deg, rgba(45, 58, 71, 0.18), rgba(247, 200, 211, 0.02));
  }
}

/* Variant 02 editorial hero typography */
body[data-hero-variant="02"] .story-hero {
  align-content: center;
  justify-items: center;
}

body[data-hero-variant="02"] .story-hero::before {
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 250, 241, 0.16), transparent 19rem),
    linear-gradient(180deg, rgba(45, 58, 71, 0.04), rgba(45, 58, 71, 0.34)),
    linear-gradient(90deg, rgba(45, 58, 71, 0.24), rgba(45, 58, 71, 0.08) 38%, rgba(247, 200, 211, 0.06));
}

.story-hero .hero-title {
  display: grid;
  gap: clamp(0.05rem, 0.8vw, 0.45rem);
  width: max-content;
  max-width: 100%;
  margin-bottom: clamp(0.85rem, 2vh, 1.15rem);
  font-family: var(--hero-serif);
  font-size: clamp(3.45rem, 7.6vw, 8.1rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.78;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-script {
  justify-self: center;
  margin-top: clamp(-0.25rem, -0.4vw, -0.08rem);
  color: rgba(255, 247, 230, 0.94);
  font-family: var(--script);
  font-size: 0.7em;
  font-weight: 500;
  line-height: 0.86;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
  filter:
    drop-shadow(0 0.25rem 0.55rem rgba(45, 58, 71, 0.62))
    drop-shadow(0 1.1rem 2.4rem rgba(45, 58, 71, 0.48));
}

body[data-hero-variant="02"] .story-hero .hero-copy {
  width: min(48rem, 56vw);
  margin-right: clamp(1rem, 6vw, 7rem);
  margin-left: auto;
  text-align: center;
}

body[data-hero-variant="02"] .story-hero .hero-lead {
  max-width: 34rem;
  color: rgba(255, 253, 248, 0.92);
  font-weight: 500;
}

body[data-hero-variant="02"] .story-hero .hero-actions {
  max-width: 35rem;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 47.98rem) {
  body[data-hero-variant="02"] .story-hero::before {
    background:
      radial-gradient(circle at 50% 34%, rgba(255, 250, 241, 0.12), transparent 12rem),
      linear-gradient(180deg, rgba(45, 58, 71, 0.08), rgba(45, 58, 71, 0.52)),
      linear-gradient(90deg, rgba(45, 58, 71, 0.16), rgba(247, 200, 211, 0.03));
  }

  .story-hero .hero-title {
    font-size: clamp(2.8rem, 12.2vw, 4.25rem);
    line-height: 0.82;
  }

  .hero-title-script {
    font-size: 0.66em;
  }

  body[data-hero-variant="02"] .story-hero .hero-copy {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  body[data-hero-variant="02"] .story-hero .hero-lead {
    max-width: 22rem;
  }
}

/* Project visual rules lock: Playfair display, neutral nav, responsive hero split */
:root {
  --display: "Beauty Playfair", Georgia, "Times New Roman", serif;
  --serif: "Beauty Playfair", Georgia, "Times New Roman", serif;
  --hero-serif: "Beauty Playfair", Georgia, "Times New Roman", serif;
  --nav-text: #262626;
  --nav-muted: #666;
  --nav-light: #fffdf8;
}

h1,
h2,
h3,
.story-orbit span {
  font-family: var(--display);
}

h1,
h2 {
  font-weight: 500;
}

h3 {
  font-weight: 500;
}

.site-header,
.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.68);
  border-bottom-color: rgba(38, 38, 38, 0.08);
  color: var(--nav-text);
}

.site-header .site-nav a,
.header-cta,
.nav-toggle {
  color: var(--nav-text);
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible,
.site-header .site-nav a.is-active,
.header-cta:hover,
.header-cta:focus-visible {
  color: #000;
}

.nav-toggle span {
  background: var(--nav-text);
}

.story-hero {
  place-items: center;
  align-content: center;
  text-align: center;
}

.story-hero .hero-copy,
body[data-hero-variant="02"] .story-hero .hero-copy {
  width: min(58rem, 100%);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.story-hero .hero-title {
  width: max-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-family: var(--hero-serif);
  font-size: clamp(3.3rem, 7.1vw, 7.65rem);
  font-weight: 500;
  line-height: 0.84;
}

.hero-title-script {
  font-family: var(--script);
  font-weight: 500;
}

.story-hero .hero-lead {
  display: grid;
  gap: 0.1rem;
  max-width: 42rem;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 253, 248, 0.93);
  font-weight: 500;
  text-align: center;
}

.story-hero .hero-lead span {
  display: block;
}

.story-hero .hero-actions {
  justify-content: center;
}

body[data-hero-variant="13"] .hero-media .hero-bg {
  object-position: 53% 54%;
}

body[data-hero-variant="13"] .story-hero::before {
  background:
    linear-gradient(180deg, rgba(45, 45, 45, 0.04), rgba(20, 20, 20, 0.32)),
    linear-gradient(90deg, rgba(20, 20, 20, 0.2), rgba(247, 200, 211, 0.04) 52%, rgba(20, 20, 20, 0.14));
}

body[data-hero-variant="02"] .story-hero::before {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 250, 241, 0.12), transparent 14rem),
    linear-gradient(180deg, rgba(45, 45, 45, 0.08), rgba(20, 20, 20, 0.5)),
    linear-gradient(90deg, rgba(20, 20, 20, 0.16), rgba(247, 200, 211, 0.03));
}

.services,
.scan-story,
.signature-scene {
  scroll-margin-top: 5.5rem;
}

.services .section-intro h2,
.proof h2,
.references h2,
.contact h2 {
  max-width: 14ch;
}

@media (max-width: 47.98rem) {
  .site-header,
  .site-header.is-scrolled {
    background: rgba(255, 250, 241, 0.78);
  }

  .site-nav {
    background: rgba(255, 250, 241, 0.88);
  }

  .story-hero .hero-title {
    font-size: clamp(2.5rem, 10.8vw, 3.9rem);
    line-height: 0.84;
  }

  .story-hero .hero-lead,
  body[data-hero-variant="02"] .story-hero .hero-lead {
    max-width: 22.5rem;
  }

  body[data-hero-variant="02"] .hero-media .hero-bg {
    object-position: 48% 40%;
  }

  body[data-hero-variant="13"] .hero-media .hero-bg {
    object-position: 84% 44%;
  }
}

/* BeautyRespect final UX polish: glass mobile menu, lighter type, story value band */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  color: var(--lagoon);
  background:
    radial-gradient(circle at 46% 38%, rgba(247, 200, 211, 0.42), transparent 18rem),
    radial-gradient(circle at 70% 64%, rgba(168, 181, 138, 0.24), transparent 16rem),
    var(--vanilla-soft);
  pointer-events: none;
  animation: beauty-loader-out 650ms ease 450ms forwards;
}

.site-loader__mark {
  display: grid;
  gap: 0.15rem;
  text-align: center;
  transform: translateY(0.25rem);
  animation: beauty-loader-mark 880ms ease forwards;
}

.site-loader__mark span {
  font-family: var(--display);
  font-size: clamp(2.2rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.site-loader__mark strong {
  color: var(--rosewood);
  font-family: var(--script);
  font-size: clamp(1.55rem, 4.8vw, 3.8rem);
  font-weight: 500;
  line-height: 0.9;
}

@keyframes beauty-loader-out {
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes beauty-loader-mark {
  to {
    transform: translateY(0);
  }
}

body.is-nav-open {
  overflow: hidden;
}

body.is-nav-open::after {
  position: fixed;
  inset: 0;
  z-index: 45;
  content: "";
  background: rgba(45, 58, 71, 0.14);
  backdrop-filter: blur(0.65rem) saturate(1.05);
  -webkit-backdrop-filter: blur(0.65rem) saturate(1.05);
  pointer-events: none;
}

.button,
.site-header .site-nav a,
.header-cta,
.micro-link,
.footer-socials a,
.contact-form button {
  font-weight: 400;
}

h1,
h2,
h3,
.story-hero .hero-title {
  font-weight: 400;
}

.hero-title-script {
  font-weight: 500;
}

.story-hero .button,
.service-grid a {
  font-weight: 500;
}

.eyebrow,
.section-kicker,
.service-grid article > p:first-child,
.value-lab article span {
  font-weight: 500;
  letter-spacing: 0.055em;
}

.hero-person-card {
  color: var(--lagoon);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.hero-person-card:hover,
.hero-person-card:focus-visible {
  color: var(--lagoon);
  border-color: rgba(180, 106, 114, 0.34);
  transform: translateY(-0.12rem);
  outline: 0;
}

.hero-person-card span {
  font-weight: 500;
}

.hero-person-card strong {
  font-weight: 400;
}

.value.color-chapter {
  width: 100%;
  max-width: none;
  padding-right: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  padding-left: max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(168, 181, 138, 0.88), rgba(255, 247, 230, 0.8)),
    var(--sage-soft);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.value .section-intro,
.value-lab {
  width: min(100%, var(--page-max));
  margin-right: auto;
  margin-left: auto;
}

.value .section-intro {
  grid-template-columns: minmax(0, 0.78fr) minmax(16rem, 0.62fr);
  align-items: end;
}

.value .section-intro h2 {
  max-width: 12.5ch;
}

.value-lab {
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
}

.value-lab article,
.value-photo {
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.58), rgba(255, 250, 241, 0.2)),
    rgba(255, 250, 241, 0.2);
  border-color: rgba(255, 250, 241, 0.48);
  box-shadow:
    0 1.25rem 3.2rem rgba(45, 58, 71, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(0.8rem) saturate(1.08);
  -webkit-backdrop-filter: blur(0.8rem) saturate(1.08);
}

.value-lab article h3 {
  max-width: 14ch;
  text-wrap: balance;
}

.value-photo img {
  min-height: clamp(19rem, 34vw, 30rem);
}

@media (max-width: 47.98rem) {
  body.is-nav-open::after {
    background: rgba(45, 58, 71, 0.18);
    backdrop-filter: blur(0.82rem) saturate(1.08);
    -webkit-backdrop-filter: blur(0.82rem) saturate(1.08);
  }

  .site-header,
  .site-header.is-scrolled {
    background: rgba(255, 250, 241, 0.5);
    border-bottom-color: rgba(255, 250, 241, 0.2);
    backdrop-filter: blur(1.1rem) saturate(1.12);
    -webkit-backdrop-filter: blur(1.1rem) saturate(1.12);
  }

  .nav-toggle {
    color: var(--ink);
    background: rgba(255, 250, 241, 0.42);
    border: 1px solid rgba(255, 250, 241, 0.42);
    border-radius: 0.95rem;
    backdrop-filter: blur(0.9rem) saturate(1.12);
    -webkit-backdrop-filter: blur(0.9rem) saturate(1.12);
  }

  .site-nav {
    z-index: 56;
    inset: 4.25rem 0.85rem auto;
    gap: 0;
    padding: 0.35rem 0.7rem;
    overflow: hidden;
    background:
      linear-gradient(135deg, rgba(255, 250, 241, 0.72), rgba(255, 250, 241, 0.42)),
      rgba(255, 250, 241, 0.52);
    border: 1px solid rgba(255, 250, 241, 0.62);
    border-radius: 1.1rem;
    box-shadow:
      0 1.25rem 3rem rgba(45, 58, 71, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(1.35rem) saturate(1.18);
    -webkit-backdrop-filter: blur(1.35rem) saturate(1.18);
  }

  .site-nav a {
    min-height: 2.85rem;
    padding: 0.66rem 0.35rem;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(45, 58, 71, 0.1);
    border-radius: 0;
    font-size: 0.94rem;
    font-weight: 400;
    line-height: 1.2;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    color: var(--ink);
    background: rgba(255, 250, 241, 0.26);
    border-bottom-color: rgba(45, 58, 71, 0.1);
    transform: none;
  }

  .story-hero .hero-lead {
    font-weight: 400;
  }

  .hero-person-card {
    grid-template-columns: 3.85rem minmax(0, 1fr);
    background:
      radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.5), transparent 8rem),
      rgba(255, 250, 241, 0.7);
  }

  .hero-person-card span {
    font-size: 0.92rem;
  }

  .hero-person-card strong {
    font-size: 0.8rem;
    font-weight: 400;
  }

  .value.color-chapter {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .value .section-intro {
    grid-template-columns: 1fr;
  }

  .value .section-intro h2 {
    max-width: 11.5ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader {
    display: none;
  }
}

/* BeautyRespect audience-aligned finish: softer, photographic, non-technical */
.eyebrow,
.section-kicker,
.story-pills span,
.story-orbit a,
.story-orbit span,
.value-lab article span,
.signal-grid article span,
.care-path span,
.scan-steps span,
.service-grid article > p:first-child,
.process span,
.contact-form label,
.contact-details a,
.footer-nav span {
  font-family: var(--sans) !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

.eyebrow,
.section-kicker {
  color: rgba(180, 106, 114, 0.9);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
}

.button,
.micro-link,
.service-grid a,
.contact-form button,
.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-details a,
.hero-person-card span,
.hero-person-card strong {
  font-weight: 400 !important;
}

.story-hero .button,
.button-primary,
.button-secondary {
  font-weight: 500 !important;
}

.site-loader__mark strong {
  color: var(--rosewood);
}

.story-flow {
  position: relative;
  width: min(calc(100% - (var(--page-gutter) * 2)), 88rem);
  margin: clamp(2.2rem, 5vw, 4rem) auto;
  padding: clamp(1.4rem, 4vw, 3rem);
  overflow: hidden;
  color: var(--lagoon);
  background:
    radial-gradient(circle at 12% 10%, rgba(247, 200, 211, 0.36), transparent 20rem),
    radial-gradient(circle at 92% 86%, rgba(168, 181, 138, 0.28), transparent 18rem),
    rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    0 1.4rem 3.8rem rgba(45, 58, 71, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(1rem) saturate(1.08);
  -webkit-backdrop-filter: blur(1rem) saturate(1.08);
}

.story-flow h2,
.story-flow p,
.story-flow .section-kicker {
  color: var(--lagoon);
}

.story-flow h2 {
  max-width: 13.5ch;
}

.story-orbit {
  align-self: stretch;
  gap: 0.85rem;
}

.story-orbit a {
  display: grid;
  grid-template-columns: minmax(4.5rem, auto) 1fr;
  gap: 0.8rem;
  min-height: auto;
  padding: 1rem 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(45, 58, 71, 0.12);
  border-radius: 0;
  text-decoration: none;
}

.story-orbit a:hover,
.story-orbit a:focus-visible {
  color: var(--lagoon);
  background: transparent;
  transform: none !important;
}

.story-orbit span {
  color: var(--rosewood);
  font-size: 1rem;
}

.signature-scene {
  min-height: clamp(36rem, 64vw, 48rem);
  background: var(--vanilla-soft);
}

.signature-scene::after {
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.92), rgba(255, 250, 241, 0.44) 42%, rgba(247, 200, 211, 0.2)),
    linear-gradient(0deg, rgba(45, 58, 71, 0.18), transparent 46%);
}

.signature-scene > img {
  object-position: 54% 42%;
  filter: saturate(0.98) contrast(0.98) brightness(1.03);
}

.signature-content {
  color: var(--lagoon);
  background:
    radial-gradient(circle at var(--mx, 52%) var(--my, 42%), rgba(255, 255, 255, 0.46), transparent 13rem),
    linear-gradient(135deg, rgba(255, 250, 241, 0.72), rgba(247, 200, 211, 0.22)),
    rgba(255, 250, 241, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: clamp(1.4rem, 3vw, 2.4rem);
  box-shadow:
    0 1.4rem 3.8rem rgba(45, 58, 71, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(1.1rem) saturate(1.08);
  -webkit-backdrop-filter: blur(1.1rem) saturate(1.08);
}

.signature-content h2,
.signature-content p,
.signature-content .eyebrow {
  color: var(--lagoon);
}

.story-pills {
  gap: 0.45rem;
}

.story-pills span {
  padding: 0.48rem 0.75rem;
  color: rgba(45, 58, 71, 0.82);
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  font-size: 0.9rem;
  animation: none !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.value.color-chapter {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background:
    linear-gradient(90deg, rgba(168, 181, 138, 0.72), rgba(255, 247, 230, 0.82)),
    var(--sage-soft);
}

.value-lab {
  align-items: stretch;
}

.value-lab article,
.value-photo,
.signal-grid article,
.service-grid article,
.reference-wall > *,
.contact-form {
  border-radius: clamp(1rem, 2vw, 1.6rem);
}

.value-lab article,
.signal-grid article,
.service-grid article {
  min-height: auto;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.46), transparent 13rem),
    rgba(255, 250, 241, 0.52) !important;
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 0.9rem 2.4rem rgba(45, 58, 71, 0.06);
}

.value-lab .value-lead {
  color: var(--lagoon);
}

.value-lab .value-lead span,
.value-lab .value-lead h3,
.value-lab .value-lead p,
.value-lab .value-lead .micro-link {
  color: var(--lagoon);
}

.value-lab article span,
.signal-grid article span,
.care-path span,
.service-grid article > p:first-child,
.process span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--rosewood);
  font-size: 0.95rem;
}

.value-lead h3,
.value-lab article h3,
.service-grid article h3 {
  max-width: 13ch;
}

.value-photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(26rem, 46vw, 36rem);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 1.2rem 3.4rem rgba(45, 58, 71, 0.12);
}

.value-photo img {
  filter: saturate(0.94) contrast(0.98) brightness(1.02);
}

.value-photo figcaption {
  color: var(--lagoon);
  background: rgba(255, 250, 241, 0.68);
  border-color: rgba(255, 255, 255, 0.58);
  font-weight: 400;
  backdrop-filter: blur(1rem) saturate(1.08);
  -webkit-backdrop-filter: blur(1rem) saturate(1.08);
}

.problem.color-chapter {
  background:
    radial-gradient(circle at 16% 12%, rgba(247, 200, 211, 0.62), transparent 24rem),
    linear-gradient(135deg, rgba(255, 250, 241, 0.78), rgba(243, 219, 183, 0.42)),
    var(--vanilla-soft);
}

.signal-grid article {
  padding: clamp(1.15rem, 2vw, 1.5rem);
}

.care-map {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.care-map-intro {
  max-width: 44rem;
}

.care-path {
  gap: 1rem;
}

.care-path::before,
.care-path::after {
  display: none !important;
}

.care-path article {
  min-height: auto;
  padding: clamp(1.15rem, 2.4vw, 1.6rem);
  background:
    radial-gradient(circle at 92% 92%, rgba(247, 200, 211, 0.22), transparent 7rem),
    rgba(255, 250, 241, 0.68);
  border: 1px solid rgba(45, 58, 71, 0.1);
  border-radius: 1.25rem;
}

.care-path article::before,
.care-path article::after {
  display: none;
}

.scan-story {
  background: rgba(255, 250, 241, 0.5);
  border-color: rgba(45, 58, 71, 0.1);
}

.scan-story .scan-image-wrap {
  min-height: clamp(30rem, 64vw, 50rem);
}

.scan-image {
  object-position: 50% 42%;
  filter: saturate(0.96) contrast(0.98) brightness(1.02);
}

.scan-story .scan-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(247, 200, 211, 0.42), transparent 18rem),
    linear-gradient(135deg, rgba(255, 250, 241, 0.94), rgba(255, 247, 230, 0.72)),
    var(--vanilla);
}

.scan-steps {
  gap: 0.85rem;
}

.scan-steps span {
  display: grid;
  gap: 0.18rem;
  padding: 0 0 0.85rem;
  color: var(--muted);
  border-top: 0;
  border-bottom: 1px solid rgba(45, 58, 71, 0.12);
  font-size: 0.98rem;
  line-height: 1.48;
}

.scan-steps strong {
  color: var(--lagoon);
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.15;
}

.method-story .portrait-card img {
  object-position: 50% 38%;
}

.process div {
  padding: 0.95rem 0;
}

.wide-proof {
  padding-top: clamp(1rem, 4vw, 3rem);
}

.wide-proof-copy {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 247, 230, 0.22), transparent 14rem),
    linear-gradient(135deg, rgba(180, 106, 114, 0.86), rgba(232, 126, 71, 0.7)),
    var(--rosewood);
}

.wide-proof-images img {
  filter: saturate(0.98) contrast(0.98) brightness(1.02);
}

.services.color-chapter {
  background:
    radial-gradient(circle at 86% 12%, rgba(247, 200, 211, 0.38), transparent 20rem),
    linear-gradient(135deg, rgba(243, 219, 183, 0.74), rgba(255, 247, 230, 0.82)),
    var(--champagne);
}

.service-media {
  display: grid;
  grid-template-columns: 0.92fr minmax(18rem, 0.86fr) 0.92fr;
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
  align-items: stretch;
  margin: clamp(2rem, 4vw, 3.2rem) 0;
}

.service-media figure,
.service-media div {
  min-height: clamp(18rem, 30vw, 28rem);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.6);
  border-radius: clamp(1.2rem, 2.5vw, 2rem);
  box-shadow: 0 1.1rem 2.6rem rgba(45, 58, 71, 0.08);
}

.service-media figure {
  background: rgba(255, 250, 241, 0.44);
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.96) contrast(0.98);
}

.service-media figure:first-child img {
  object-position: 52% 52%;
}

.service-media figure:last-child img {
  object-position: 50% 48%;
}

.service-media div {
  display: grid;
  align-content: center;
  gap: 1.1rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  color: var(--lagoon);
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 250, 241, 0.82), transparent 10rem),
    linear-gradient(150deg, rgba(255, 250, 241, 0.62), rgba(247, 200, 211, 0.22)),
    rgba(255, 250, 241, 0.34);
  backdrop-filter: blur(1rem) saturate(1.05);
  -webkit-backdrop-filter: blur(1rem) saturate(1.05);
}

.service-media p {
  margin: 0;
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(1.95rem, 3vw, 3.15rem);
  line-height: 1.02;
}

.service-media span {
  display: block;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.55;
}

.service-grid {
  gap: 1rem;
}

.service-grid article {
  min-height: 16rem;
  padding: clamp(1.15rem, 2.6vw, 1.7rem);
}

.service-grid .service-pro {
  background:
    radial-gradient(circle at var(--mx, 55%) var(--my, 35%), rgba(255, 255, 255, 0.24), transparent 12rem),
    linear-gradient(135deg, rgba(45, 58, 71, 0.9), rgba(180, 106, 114, 0.62)),
    var(--lagoon) !important;
}

.service-grid .service-pro h3,
.service-grid .service-pro p,
.service-grid .service-pro a {
  color: var(--white);
}

.service-grid a {
  color: var(--rosewood);
  text-decoration-thickness: 1px;
}

.references {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.reference-wall {
  display: grid;
  gap: 1rem;
}

.quote-card,
.partner-card {
  display: grid;
  gap: 1rem;
  min-height: 14rem;
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--lagoon);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.82), rgba(255, 247, 230, 0.58)),
    var(--surface-solid);
  border: 1px solid rgba(45, 58, 71, 0.12);
  text-decoration: none;
  box-shadow: 0 1rem 2.8rem rgba(45, 58, 71, 0.07);
}

.quote-card p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.18;
}

.quote-card span,
.partner-card span {
  color: var(--rosewood);
  font-size: 0.95rem;
}

.partner-card {
  align-content: center;
  background:
    radial-gradient(circle at 88% 12%, rgba(168, 181, 138, 0.28), transparent 12rem),
    rgba(255, 250, 241, 0.7);
}

.partner-card img {
  width: min(22rem, 100%);
}

.partner-card p,
.quote-card-muted p {
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
}

.contact {
  grid-template-columns: minmax(0, 45rem);
  justify-content: center;
  text-align: center;
}

.contact-copy > p {
  margin-right: auto;
  margin-left: auto;
}

.contact-details {
  justify-items: center;
}

.contact-details a {
  color: var(--lagoon);
}

.contact-form {
  text-align: left;
  background:
    radial-gradient(circle at 88% 8%, rgba(247, 200, 211, 0.2), transparent 14rem),
    rgba(255, 250, 241, 0.8);
}

.contact-form label {
  color: rgba(45, 58, 71, 0.78);
  font-size: 0.98rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--lagoon);
  background: rgba(255, 253, 248, 0.82);
  border-color: rgba(45, 58, 71, 0.12);
}

@media (min-width: 48rem) {
  .reference-wall {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .quote-card:first-child {
    grid-row: span 2;
  }

  .contact {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    max-width: 76rem;
    text-align: left;
  }

  .contact-copy > p {
    margin-left: 0;
  }

  .contact-details {
    justify-items: start;
  }
}

@media (max-width: 47.98rem) {
  .site-nav {
    inset: 4.55rem 1.1rem auto;
    padding: 0.28rem 0.55rem;
    border-radius: 1rem;
  }

  .site-nav a {
    min-height: 2.55rem;
    padding: 0.52rem 0.4rem;
    font-size: 0.88rem;
  }

  .story-flow,
  .scan-story,
  .wide-proof {
    width: min(calc(100% - 1.4rem), 88rem);
  }

  .story-flow {
    padding: 1.1rem;
  }

  .story-orbit a {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .signature-content {
    width: min(calc(100% - 1.4rem), 43rem);
    margin-right: auto;
    margin-left: auto;
  }

  .signature-scene::after {
    background:
      linear-gradient(0deg, rgba(255, 250, 241, 0.9), rgba(255, 250, 241, 0.38) 58%, rgba(45, 58, 71, 0.04)),
      linear-gradient(90deg, rgba(255, 250, 241, 0.24), transparent);
  }

  .value-photo {
    min-height: 24rem;
  }

  .scan-story .scan-image-wrap {
    min-height: 28rem;
  }

  .service-media {
    grid-template-columns: 1fr;
    margin-block: 1.6rem 1.2rem;
  }

  .service-media figure,
  .service-media div {
    min-height: 16rem;
    border-radius: 1.25rem;
  }

  .service-media div {
    min-height: auto;
  }

  .service-media p {
    max-width: 11ch;
  }

  .service-grid article {
    min-height: auto;
  }
}

/* Final navigation + hero headline correction, 2026-07-01 */
.site-header,
.site-header.is-scrolled {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 70;
  min-height: 4.65rem;
  background: rgba(255, 253, 248, 0.08);
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  box-shadow: none;
  backdrop-filter: blur(1.1rem) saturate(1.12);
  -webkit-backdrop-filter: blur(1.1rem) saturate(1.12);
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.16);
  border-bottom-color: rgba(45, 58, 71, 0.08);
}

.site-header .site-nav a,
.header-cta {
  color: rgba(22, 22, 22, 0.9);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  font-weight: 400;
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible,
.site-header .site-nav a.is-active,
.header-cta:hover,
.header-cta:focus-visible {
  color: #111;
  background: rgba(255, 253, 248, 0.2);
  border-color: rgba(255, 253, 248, 0.2);
  transform: none;
}

.site-header .site-nav a::after {
  background: rgba(22, 22, 22, 0.72);
}

.nav-toggle {
  color: rgba(22, 22, 22, 0.92);
  background: rgba(255, 253, 248, 0.18);
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 999px;
  box-shadow: none;
  backdrop-filter: blur(1rem) saturate(1.16);
  -webkit-backdrop-filter: blur(1rem) saturate(1.16);
}

.nav-toggle span {
  background: currentColor;
}

.story-hero {
  min-height: 100svh;
  padding-top: clamp(5.3rem, 8vh, 6.8rem);
}

.story-hero .hero-title {
  width: min(100%, 68rem);
  max-width: 100%;
  color: rgba(255, 253, 248, 0.92);
  text-shadow:
    0 0.08rem 0 rgba(255, 255, 255, 0.26),
    0 1.1rem 3.8rem rgba(0, 0, 0, 0.36);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-script {
  margin-top: -0.18em;
  color: rgba(255, 253, 248, 0.96);
  font-size: 0.8em;
  line-height: 0.9;
  text-shadow:
    0 0.06rem 0 rgba(255, 255, 255, 0.28),
    0 0.9rem 2.4rem rgba(0, 0, 0, 0.34);
}

@media (min-width: 48rem) {
  .site-header {
    grid-template-columns: minmax(9rem, 1fr) auto minmax(9rem, 1fr);
  }

  .site-header .site-nav {
    padding: 0.2rem 0.35rem;
    background: rgba(255, 253, 248, 0.05);
    border: 1px solid rgba(255, 253, 248, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(0.9rem) saturate(1.1);
    -webkit-backdrop-filter: blur(0.9rem) saturate(1.1);
  }

  .site-header .site-nav a {
    min-height: 2.35rem;
    padding: 0.45rem 0.72rem;
  }
}

@media (max-width: 47.98rem) {
  .site-header,
  .site-header.is-scrolled {
    min-height: 4.35rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: rgba(255, 253, 248, 0.1);
    border-bottom-color: rgba(255, 253, 248, 0.14);
    backdrop-filter: blur(1rem) saturate(1.08);
    -webkit-backdrop-filter: blur(1rem) saturate(1.08);
  }

  body.is-nav-open::after {
    z-index: 50;
    background: rgba(20, 20, 20, 0.24);
    backdrop-filter: blur(0.95rem) saturate(0.95);
    -webkit-backdrop-filter: blur(0.95rem) saturate(0.95);
  }

  .nav-toggle {
    width: 2.7rem;
    height: 2.7rem;
    background: rgba(255, 253, 248, 0.2);
    border-color: rgba(255, 253, 248, 0.34);
    box-shadow:
      0 0.7rem 1.6rem rgba(45, 58, 71, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  .site-nav {
    z-index: 75;
    inset: 4.85rem 1rem auto;
    display: none;
    gap: 0.38rem;
    padding: 0.55rem;
    background: rgba(255, 253, 248, 0.18);
    border: 1px solid rgba(255, 253, 248, 0.3);
    border-radius: 1.35rem;
    box-shadow:
      0 1.4rem 3.4rem rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(1.45rem) saturate(1.12);
    -webkit-backdrop-filter: blur(1.45rem) saturate(1.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 2.75rem;
    padding: 0.68rem 0.9rem;
    color: rgba(22, 22, 22, 0.92);
    background: rgba(255, 253, 248, 0.32);
    border: 1px solid rgba(255, 253, 248, 0.32);
    border-radius: 999px;
    font-size: 0.94rem;
    line-height: 1.1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .site-nav a:last-child {
    border-bottom: 1px solid rgba(255, 253, 248, 0.32);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    color: #111;
    background: rgba(255, 253, 248, 0.48);
    border-color: rgba(255, 253, 248, 0.44);
  }

  .story-hero {
    min-height: 100svh;
    padding-top: 5.25rem;
  }

  .story-hero .hero-title {
    width: min(100%, 23rem);
    font-size: clamp(2.45rem, 10.4vw, 3.55rem);
    line-height: 0.86;
  }

  .hero-title-line {
    white-space: normal;
    text-wrap: balance;
  }

  .hero-title-script {
    margin-top: -0.08em;
    font-size: 0.9em;
  }
}

/* Consolidated intro/value section + soft magnetic navigation, 2026-07-01 */
.anchor-target {
  position: absolute;
  top: 0;
}

.intro-value {
  position: relative;
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  min-height: 100svh;
  padding:
    clamp(6.4rem, 10vh, 8.2rem)
    max(var(--page-gutter), calc((100vw - var(--page-max)) / 2))
    clamp(3rem, 6vh, 5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(247, 200, 211, 0.44), transparent 22rem),
    radial-gradient(circle at 82% 62%, rgba(168, 181, 138, 0.28), transparent 24rem),
    linear-gradient(135deg, rgba(255, 250, 241, 0.94), rgba(247, 200, 211, 0.28) 52%, rgba(255, 247, 230, 0.9));
}

.intro-value::before {
  position: absolute;
  inset: 7rem max(var(--page-gutter), calc((100vw - var(--page-max)) / 2)) 3rem;
  z-index: 0;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: clamp(1.4rem, 3vw, 2.4rem);
  background: rgba(255, 253, 248, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 2rem 5rem rgba(45, 58, 71, 0.08);
  backdrop-filter: blur(0.9rem) saturate(1.08);
  -webkit-backdrop-filter: blur(0.9rem) saturate(1.08);
}

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

.intro-value__head {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  max-width: 66rem;
  margin: 0 auto;
  text-align: center;
}

.intro-value__head h2 {
  max-width: 20ch;
  margin: 0;
  color: var(--lagoon);
  font-family: var(--hero-serif);
  font-size: clamp(2.65rem, 4.7vw, 5.25rem);
  font-weight: 400;
  line-height: 0.94;
  text-wrap: balance;
}

.intro-value__head p:not(.section-kicker) {
  max-width: 56rem;
  margin: 0;
  color: rgba(45, 58, 71, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.58;
}

.intro-value__grid {
  display: grid;
  grid-template-columns: minmax(13rem, 0.8fr) minmax(17rem, 1fr) minmax(18rem, 0.95fr);
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  align-items: stretch;
  width: min(100%, var(--page-max));
  margin: 0 auto;
}

.intro-value__portrait,
.intro-value__proof,
.intro-value__copy {
  min-height: clamp(18rem, 27vw, 25rem);
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: clamp(1.1rem, 2vw, 1.8rem);
  box-shadow: 0 1.3rem 3.4rem rgba(45, 58, 71, 0.11);
}

.intro-value__portrait,
.intro-value__proof {
  margin: 0;
  background: rgba(255, 253, 248, 0.28);
}

.intro-value__portrait img,
.intro-value__proof img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.intro-value__portrait img {
  object-position: 50% 42%;
}

.intro-value__proof img {
  object-position: 50% 50%;
}

.intro-value__copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.15rem, 2vw, 1.7rem);
  background:
    radial-gradient(circle at var(--mx, 82%) var(--my, 16%), rgba(247, 200, 211, 0.36), transparent 11rem),
    rgba(255, 253, 248, 0.58);
  backdrop-filter: blur(0.8rem) saturate(1.08);
  -webkit-backdrop-filter: blur(0.8rem) saturate(1.08);
}

.intro-value__copy h3 {
  max-width: 14ch;
  margin: 0;
  color: var(--lagoon);
  font-family: var(--hero-serif);
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.value-steps {
  display: grid;
  gap: 0.75rem;
}

.value-steps article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  padding-top: 0.78rem;
  border-top: 1px solid rgba(45, 58, 71, 0.13);
}

.value-steps span {
  color: var(--rosewood);
  font-family: var(--hero-serif);
  font-size: 1.1rem;
  line-height: 1.2;
}

.value-steps p {
  margin: 0;
  color: rgba(45, 58, 71, 0.76);
  font-size: 0.98rem;
  line-height: 1.5;
}

.value-steps strong {
  color: var(--lagoon);
  font-weight: 500;
}

.intro-value .micro-link {
  justify-self: start;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  color: var(--lagoon);
  text-decoration: none;
  background: rgba(255, 253, 248, 0.46);
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 999px;
}

.section-shell h2,
.scan-card h2,
.references h2,
.contact h2 {
  max-width: 18ch;
  font-size: clamp(2.45rem, 5vw, 5.05rem);
  line-height: 0.98;
  text-wrap: balance;
}

@media (min-width: 48rem) {
  .site-header .site-nav {
    position: relative;
  }

  .site-header .site-nav::before {
    position: absolute;
    top: var(--dock-y, 0.2rem);
    left: var(--dock-x, 0.35rem);
    width: var(--dock-w, 0);
    height: var(--dock-h, 2.35rem);
    content: "";
    opacity: var(--dock-opacity, 0);
    background: rgba(255, 253, 248, 0.34);
    border: 1px solid rgba(255, 253, 248, 0.42);
    border-radius: 999px;
    box-shadow:
      0 0.75rem 1.5rem rgba(45, 58, 71, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.38);
    transform: translate3d(0, 0, 0);
    transition:
      left 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
      width 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 160ms ease;
    pointer-events: none;
  }

  .site-header .site-nav a,
  .header-cta {
    position: relative;
    z-index: 1;
    border: 0;
    outline: 0;
  }

  .site-header .site-nav a:hover,
  .site-header .site-nav a:focus-visible,
  .site-header .site-nav a.is-active,
  .header-cta:hover,
  .header-cta:focus-visible {
    font-weight: 500;
    background: transparent;
    box-shadow: none;
  }

  .site-header .site-nav a::after {
    display: none;
  }
}

@media (max-width: 64rem) {
  .intro-value {
    min-height: auto;
  }

  .intro-value__grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-value__copy {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

@media (max-width: 47.98rem) {
  .intro-value {
    padding:
      5.5rem
      1rem
      2.8rem;
  }

  .intro-value::before {
    inset: 4.8rem 0.7rem 1.4rem;
    border-radius: 1.35rem;
  }

  .intro-value__head {
    justify-items: start;
    text-align: left;
  }

  .intro-value__head h2 {
    max-width: 13.5ch;
    font-size: clamp(2.15rem, 9.6vw, 3.25rem);
    line-height: 0.98;
  }

  .intro-value__head p:not(.section-kicker) {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .intro-value__grid {
    grid-template-columns: 1fr;
  }

  .intro-value__portrait,
  .intro-value__proof,
  .intro-value__copy {
    min-height: auto;
    border-radius: 1.05rem;
  }

  .intro-value__portrait img,
  .intro-value__proof img {
    min-height: 17rem;
  }

  .intro-value__proof {
    display: none;
  }

  .intro-value__copy h3 {
    max-width: 100%;
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .value-steps article {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .section-shell h2,
  .scan-card h2,
  .references h2,
  .contact h2 {
    max-width: 14.5ch;
    font-size: clamp(2.05rem, 8.4vw, 3.25rem);
    line-height: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .site-nav::before {
    transition: none !important;
  }
}

/* Global section headline guardrail: no oversized multi-line editorial blocks */
main section:not(.story-hero) h2 {
  max-width: min(100%, 22ch) !important;
  font-size: clamp(2.15rem, 3.8vw, 3.85rem) !important;
  line-height: 1.04 !important;
  text-wrap: balance;
}

@media (min-width: 48rem) {
  main section:not(.story-hero) h2 {
    min-width: min(100%, 11ch);
  }
}

@media (max-width: 47.98rem) {
  main section:not(.story-hero) h2 {
    max-width: min(100%, 17ch) !important;
    font-size: clamp(2rem, 7.4vw, 2.85rem) !important;
    line-height: 1.05 !important;
  }
}

/* Header interaction lock: keep nav pills inside the bar */
@media (min-width: 48rem) {
  .site-header {
    grid-template-columns: minmax(8.5rem, 1fr) auto minmax(8.5rem, 1fr);
  }

  .site-header .site-nav {
    display: inline-flex;
    inset: auto;
    align-items: center;
    justify-content: center;
    gap: 0.18rem;
    height: 3rem;
    min-height: 3rem;
    padding: 0.28rem;
    overflow: hidden;
    background: rgba(255, 253, 248, 0.08);
    border: 1px solid rgba(255, 253, 248, 0.16);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(1.1rem) saturate(1.1);
    -webkit-backdrop-filter: blur(1.1rem) saturate(1.1);
  }

  .site-header .site-nav::before {
    top: 50%;
    height: 2.38rem;
    transform: translate3d(0, -50%, 0);
  }

  .site-header .site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.38rem;
    min-height: 0;
    padding: 0 1.08rem;
    color: rgba(22, 22, 22, 0.92);
    border: 0 !important;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
  }

  .site-header .site-nav a::after {
    content: none !important;
    display: none !important;
  }

  .site-header .site-nav a:hover,
  .site-header .site-nav a:focus-visible,
  .site-header .site-nav a.is-active {
    color: #111;
    background: transparent !important;
    border-color: transparent !important;
    font-weight: 500;
    transform: none;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    height: 2.7rem;
    min-height: 0;
    padding: 0 1.18rem;
    color: rgba(22, 22, 22, 0.9);
    border: 1px solid transparent;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
  }

  .header-cta:hover,
  .header-cta:focus-visible {
    color: #111;
    background: rgba(255, 253, 248, 0.24);
    border-color: rgba(255, 253, 248, 0.28);
    box-shadow:
      0 0.75rem 1.5rem rgba(45, 58, 71, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.34);
    font-weight: 500;
  }
}

/* Lucie Francova intro proof scene, 2026-07-01 */
.intro-value {
  gap: clamp(1.1rem, 2vw, 1.8rem);
  min-height: auto;
  padding:
    clamp(4.75rem, 6.4vh, 5.45rem)
    max(1rem, calc((100vw - 96rem) / 2))
    clamp(1.6rem, 3.2vh, 2.35rem);
}

.intro-value::before {
  inset: 4.55rem max(0.9rem, calc((100vw - 98rem) / 2)) 1.15rem;
}

.intro-value__head {
  max-width: 74rem;
  gap: 0.58rem;
}

.intro-value__head h2 {
  max-width: 30ch !important;
  font-size: clamp(2.55rem, 3.65vw, 4rem) !important;
  line-height: 0.98 !important;
}

.intro-value__head p:not(.section-kicker) {
  max-width: 58rem;
  font-size: clamp(0.98rem, 1vw, 1.06rem);
  line-height: 1.5;
}

.intro-value__grid {
  width: min(calc(100vw - 2rem), 96rem);
  grid-template-columns: minmax(18rem, 0.95fr) minmax(17rem, 0.72fr) minmax(22rem, 1.05fr);
  gap: clamp(0.9rem, 1.4vw, 1.25rem);
}

.intro-value__portrait,
.intro-value__proof,
.intro-value__copy {
  height: clamp(26.5rem, 30vw, 30rem);
  min-height: 0;
  border-color: rgba(255, 253, 248, 0.58);
  box-shadow: 0 1.5rem 4rem rgba(45, 58, 71, 0.12);
}

.intro-value__portrait img,
.intro-value__proof img {
  display: block;
  min-height: 0;
}

.intro-value__portrait img {
  object-position: 50% 38%;
}

.intro-value__proof img {
  filter: contrast(0.96) brightness(1.04);
  object-position: 50% 45%;
}

.intro-value__copy {
  justify-items: center;
  align-content: center;
  gap: clamp(0.6rem, 1vw, 0.85rem);
  padding: clamp(1rem, 1.7vw, 1.45rem);
  text-align: center;
}

.intro-value__identity {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.58rem;
  align-items: center;
  max-width: 100%;
  padding: 0.36rem 0.65rem 0.36rem 0.36rem;
  text-align: left;
  background: rgba(255, 253, 248, 0.48);
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.intro-value__identity img {
  width: 2.65rem;
  height: 2.65rem;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 50%;
}

.intro-value__identity span {
  display: block;
  color: var(--rosewood);
  font-weight: 500;
  line-height: 1.1;
}

.intro-value__identity p {
  max-width: 25ch;
  margin: 0.12rem 0 0;
  color: rgba(45, 58, 71, 0.72);
  font-size: 0.75rem;
  line-height: 1.18;
}

.intro-value__copy h3 {
  max-width: 12ch;
  text-align: center;
  font-size: clamp(1.85rem, 2.25vw, 2.55rem);
  line-height: 0.98;
}

.value-steps {
  width: 100%;
  gap: 0;
}

.value-steps article {
  position: relative;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.62rem;
  padding: 0.6rem 0.15rem;
  overflow: hidden;
  text-align: left;
  border-top: 1px solid rgba(45, 58, 71, 0.12);
  transition:
    padding-left 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.value-steps article::before {
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 38%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: skewX(-18deg);
  transition: left 460ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.value-steps article:hover,
.value-steps article:focus-within {
  padding-left: 0.55rem;
  background: rgba(255, 253, 248, 0.22);
  transform: translateX(0.2rem);
}

.value-steps article:hover::before,
.value-steps article:focus-within::before {
  left: 110%;
}

.value-steps article:hover strong,
.value-steps article:focus-within strong {
  font-weight: 600;
}

.intro-value__cta {
  justify-self: center;
  margin-top: 0.18rem;
}

.value-steps span {
  font-size: 0.98rem;
}

.value-steps p {
  font-size: clamp(0.86rem, 0.9vw, 0.94rem);
  line-height: 1.34;
}

.story-hero .hero-title,
.story-hero .hero-lead,
.story-hero .hero-actions,
.hero-person-card {
  animation: hero-soft-rise 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.story-hero .hero-lead {
  animation-delay: 110ms;
}

.story-hero .hero-actions {
  animation-delay: 190ms;
}

.hero-person-card {
  animation-delay: 260ms;
}

@keyframes hero-soft-rise {
  from {
    opacity: 0;
    transform: translateY(0.9rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 64rem) {
  .intro-value__grid {
    width: min(100%, 54rem);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .intro-value__copy {
    grid-column: 1 / -1;
    height: auto;
    min-height: auto;
  }
}

@media (max-width: 47.98rem) {
  .intro-value {
    padding: 5.1rem 1rem 2.3rem;
  }

  .intro-value::before {
    inset: 4.65rem 0.65rem 1.2rem;
  }

  .intro-value__head {
    justify-items: center;
    text-align: center;
  }

  .intro-value__head h2 {
    max-width: 16ch !important;
    font-size: clamp(2.05rem, 8.3vw, 2.85rem) !important;
    line-height: 1.03 !important;
  }

  .intro-value__head p:not(.section-kicker) {
    font-size: 0.96rem;
  }

  .intro-value__grid {
    grid-template-columns: 1fr;
  }

  .intro-value__portrait,
  .intro-value__proof,
  .intro-value__copy {
    height: auto;
    min-height: auto;
  }

  .intro-value__portrait img {
    height: 20rem;
    min-height: 0;
    object-position: 50% 35%;
  }

  .intro-value__proof {
    order: 3;
    display: block;
  }

  .intro-value__proof img {
    height: 14rem;
    min-height: 0;
  }

  .intro-value__copy {
    order: 2;
    padding: 1.1rem;
  }

  .intro-value__identity {
    border-radius: 1rem;
  }

  .intro-value__identity p {
    max-width: 100%;
  }

  .value-steps article:hover,
  .value-steps article:focus-within {
    padding-left: 0.2rem;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-hero .hero-title,
  .story-hero .hero-lead,
  .story-hero .hero-actions,
  .hero-person-card {
    animation: none !important;
  }

  .value-steps article,
  .value-steps article::before,
  .care-method li,
  .care-method li::before,
  .care-method p {
    transition: none !important;
  }
}

/* Lucie Francova intro layout correction, 2026-07-02 */
.intro-value {
  padding-bottom: clamp(2.3rem, 4.5vh, 3.4rem);
}

.intro-value__grid {
  width: min(calc(100vw - 2rem), 98rem);
  grid-template-columns: minmax(18rem, 1.12fr) minmax(16rem, 0.78fr) minmax(16rem, 0.78fr);
  align-items: stretch;
}

.intro-value__photo,
.intro-value__portrait,
.intro-value__proof,
.intro-value__product {
  position: relative;
  height: clamp(24rem, 29vw, 31rem);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.34);
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: clamp(1.2rem, 2vw, 2rem);
  box-shadow: 0 1.5rem 4rem rgba(45, 58, 71, 0.12);
}

.intro-value__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.16), transparent 42%),
    radial-gradient(circle at 22% 16%, rgba(247, 200, 211, 0.2), transparent 34%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.intro-value__photo:hover::after,
.intro-value__photo:focus-within::after {
  opacity: 1;
}

.image-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: inherit;
}

.image-trigger img,
.intro-value__product img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition:
    filter 260ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-trigger:hover img,
.image-trigger:focus-visible img {
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.028);
}

.image-trigger:focus-visible {
  outline: 2px solid rgba(180, 106, 114, 0.72);
  outline-offset: -0.45rem;
}

.intro-value__portrait img {
  object-position: 50% 39%;
}

.intro-value__proof img {
  filter: none;
  object-position: 50% 32%;
}

.intro-value__product img {
  object-position: 50% 52%;
}

.intro-value__copy {
  width: min(calc(100vw - 2rem), 58rem);
  height: auto;
  min-height: 0;
  margin: 0 auto;
  padding: clamp(1.25rem, 2.4vw, 2rem) 0 0;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.intro-value__identity {
  display: none;
}

.intro-value__copy h3 {
  max-width: 14ch;
  margin: 0 auto clamp(0.8rem, 1.6vw, 1.2rem);
  text-align: center;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
}

.value-steps {
  width: min(100%, 52rem);
  margin: 0 auto;
}

.value-steps article {
  grid-template-columns: 3.1rem minmax(0, 1fr);
  gap: clamp(0.6rem, 1vw, 0.9rem);
  padding: clamp(0.72rem, 1.1vw, 0.9rem) clamp(0.25rem, 1vw, 0.85rem);
  text-align: left;
}

.value-steps article:hover,
.value-steps article:focus-within {
  padding-left: clamp(0.5rem, 1.1vw, 1rem);
}

.intro-value__cta {
  margin-top: clamp(1rem, 2vw, 1.35rem);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.58);
  border: 0;
  backdrop-filter: blur(16px);
}

.image-lightbox__frame {
  position: relative;
  z-index: 1;
  width: min(100%, 64rem);
  max-height: min(86vh, 52rem);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: clamp(1rem, 2vw, 1.8rem);
  box-shadow: 0 2rem 5rem rgba(20, 18, 16, 0.32);
}

.image-lightbox__frame img {
  display: block;
  width: 100%;
  max-height: min(86vh, 52rem);
  object-fit: contain;
}

.image-lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

body.is-lightbox-open {
  overflow: hidden;
}

@media (max-width: 64rem) {
  .intro-value__grid {
    width: min(100%, 56rem);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .intro-value__product {
    grid-column: 1 / -1;
    height: clamp(17rem, 42vw, 24rem);
  }
}

@media (max-width: 47.98rem) {
  .intro-value__grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .intro-value__photo,
  .intro-value__portrait,
  .intro-value__proof,
  .intro-value__product {
    height: auto;
  }

  .intro-value__portrait img,
  .intro-value__proof img,
  .intro-value__product img {
    height: 20rem;
  }

  .intro-value__proof {
    order: 2;
  }

  .intro-value__product {
    order: 3;
    grid-column: auto;
  }

  .intro-value__copy {
    order: 4;
    width: 100%;
    padding-top: 1.4rem;
  }

  .intro-value__copy h3 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .value-steps article {
    grid-template-columns: 2.45rem minmax(0, 1fr);
    padding-right: 0;
    padding-left: 0;
  }

  .intro-value__cta {
    width: min(100%, 20rem);
  }
}

/* Lucie Francova intro proof rewrite, 2026-07-03 */
.intro-value {
  gap: clamp(1.35rem, 2.2vw, 2.25rem);
  padding:
    clamp(4.2rem, 6vh, 5.35rem)
    max(1rem, calc((100vw - 106rem) / 2))
    clamp(3rem, 6vh, 5rem);
  background:
    radial-gradient(circle at 15% 21%, rgba(247, 200, 211, 0.42), transparent 25rem),
    radial-gradient(circle at 88% 34%, rgba(168, 181, 138, 0.24), transparent 26rem),
    radial-gradient(circle at 50% 92%, rgba(243, 219, 183, 0.36), transparent 25rem),
    linear-gradient(135deg, rgba(255, 247, 230, 0.95), rgba(247, 200, 211, 0.22) 48%, rgba(255, 253, 248, 0.96));
}

.intro-value::before {
  display: none;
}

.intro-value__head {
  max-width: 65rem;
  gap: 0.7rem;
}

.intro-value__head h2 {
  max-width: 22ch !important;
  font-size: clamp(2.75rem, 4.15vw, 4.85rem) !important;
  line-height: 0.96 !important;
}

.intro-value__head p:not(.section-kicker) {
  max-width: 62rem;
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.48;
  text-wrap: balance;
}

.intro-value__grid {
  width: min(calc(100vw - 2rem), 104rem);
  grid-template-columns: minmax(17rem, 1.04fr) minmax(17rem, 0.92fr) minmax(17rem, 0.92fr);
  gap: clamp(0.8rem, 1.35vw, 1.25rem);
}

.intro-value__photo,
.intro-value__portrait,
.intro-value__proof,
.intro-value__product {
  height: clamp(22rem, 27.5vw, 28rem);
  border-color: rgba(255, 253, 248, 0.68);
  border-radius: clamp(1.25rem, 2vw, 2.1rem);
  background: rgba(255, 253, 248, 0.22);
  box-shadow: 0 1.2rem 3.2rem rgba(45, 58, 71, 0.1);
}

.intro-value__portrait img {
  object-position: 50% 38%;
}

.intro-value__proof img {
  object-position: 50% 31%;
}

.intro-value__product img {
  object-position: 50% 50%;
}

.intro-value__copy {
  display: grid;
  justify-items: center;
  width: min(calc(100vw - 2rem), 64rem);
  margin: clamp(0.35rem, 1.1vw, 0.8rem) auto 0;
  padding: 0;
  text-align: center;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.intro-value__copy h3 {
  max-width: none;
  margin: 0 auto clamp(0.85rem, 1.6vw, 1.15rem);
  font-size: clamp(2.25rem, 3.1vw, 3.55rem);
  line-height: 0.98;
  text-align: center;
}

.value-steps {
  display: grid;
  width: min(100%, 58rem);
  margin: 0 auto;
  border-top: 1px solid rgba(45, 58, 71, 0.13);
}

.value-steps article {
  grid-template-columns: 3.2rem minmax(0, 1fr);
  align-items: baseline;
  gap: clamp(0.65rem, 1vw, 0.95rem);
  min-height: 0;
  padding: clamp(0.78rem, 1.15vw, 1rem) clamp(0.25rem, 1vw, 0.85rem);
  border-top: 0;
  border-bottom: 1px solid rgba(45, 58, 71, 0.13);
  text-align: left;
}

.value-steps article:hover,
.value-steps article:focus-within {
  padding-left: clamp(0.55rem, 1vw, 0.95rem);
  background: rgba(255, 253, 248, 0.26);
}

.value-steps span {
  color: var(--rosewood);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
}

.value-steps p {
  margin: 0;
  color: rgba(45, 58, 71, 0.78);
  font-size: clamp(1rem, 1.08vw, 1.1rem);
  line-height: 1.42;
}

.value-steps strong {
  color: var(--lagoon);
  font-weight: 500;
}

.intro-value__cta {
  margin-top: clamp(1.15rem, 2vw, 1.55rem);
}

@media (max-width: 74rem) {
  .intro-value__grid {
    width: min(100%, 60rem);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .intro-value__product {
    grid-column: 1 / -1;
    height: clamp(18rem, 34vw, 26rem);
  }
}

@media (max-width: 47.98rem) {
  .intro-value {
    padding: 4.6rem 1rem 3rem;
  }

  .intro-value__head h2 {
    max-width: 14ch !important;
    font-size: clamp(2.15rem, 10vw, 3rem) !important;
    line-height: 1.02 !important;
  }

  .intro-value__head p:not(.section-kicker) {
    font-size: 0.96rem;
    line-height: 1.46;
  }

  .intro-value__grid {
    grid-template-columns: 1fr;
  }

  .intro-value__photo,
  .intro-value__portrait,
  .intro-value__proof,
  .intro-value__product {
    height: auto;
  }

  .intro-value__portrait img,
  .intro-value__proof img,
  .intro-value__product img {
    height: clamp(18rem, 76vw, 23rem);
  }

  .intro-value__proof {
    order: 2;
  }

  .intro-value__product {
    order: 3;
    grid-column: auto;
  }

  .intro-value__copy {
    order: 4;
    width: 100%;
    margin-top: 0.45rem;
  }

  .intro-value__copy h3 {
    max-width: 10ch;
    font-size: clamp(2.05rem, 10vw, 2.9rem);
  }

  .value-steps article {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    padding-right: 0;
    padding-left: 0;
  }

  .value-steps p {
    font-size: 0.98rem;
  }

  .intro-value__cta {
    width: min(100%, 19rem);
  }
}

/* Lucie Francova proof polish, 2026-07-03 */
.image-trigger {
  cursor: pointer;
}

.value-steps {
  width: min(100%, 60rem);
}

.value-steps article {
  grid-template-columns: 1fr !important;
  justify-items: center;
  padding: clamp(0.82rem, 1.15vw, 1rem) clamp(0.5rem, 1.2vw, 1rem);
  text-align: center;
}

.value-steps article:hover,
.value-steps article:focus-within {
  padding-left: clamp(0.5rem, 1.2vw, 1rem);
  transform: translateY(-0.08rem);
}

.value-steps span {
  display: none !important;
}

.value-steps p {
  max-width: 54rem;
  text-align: center;
}

.intro-value__cta,
.intro-value__cta:hover,
.intro-value__cta:focus-visible {
  box-shadow: none !important;
}

.image-lightbox {
  padding: clamp(0.7rem, 2.2vw, 1.5rem);
}

.image-lightbox__backdrop {
  background: rgba(20, 18, 16, 0.66);
  backdrop-filter: blur(18px) saturate(0.92);
  -webkit-backdrop-filter: blur(18px) saturate(0.92);
}

.image-lightbox__frame {
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
  width: auto;
  width: fit-content;
  max-width: min(92vw, 72rem);
  max-height: 88vh;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.image-lightbox__frame img {
  width: auto;
  height: auto;
  max-width: min(92vw, 72rem);
  max-height: 88vh;
  object-fit: contain;
  border-radius: clamp(0.55rem, 1.15vw, 1rem);
  box-shadow: 0 1.35rem 4rem rgba(20, 18, 16, 0.36);
}

.image-lightbox__close {
  top: clamp(0.55rem, 1.5vw, 0.9rem);
  right: clamp(0.55rem, 1.5vw, 0.9rem);
  box-shadow: none;
}

@media (max-width: 47.98rem) {
  .value-steps {
    width: 100%;
  }

  .value-steps article {
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }

  .image-lightbox {
    padding: 0.75rem;
  }

  .image-lightbox__frame,
  .image-lightbox__frame img {
    max-width: calc(100vw - 1.5rem);
    max-height: 86vh;
  }
}

/* Service/process/reference simplification, 2026-07-13 */
.value-steps {
  gap: clamp(0.28rem, 0.7vw, 0.55rem);
  border: 0 !important;
}

.value-steps article {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transition:
    transform 180ms ease,
    color 180ms ease,
    font-weight 180ms ease;
}

.value-steps article:hover,
.value-steps article:focus-within {
  transform: translateY(-0.08rem);
}

.value-steps article:hover strong,
.value-steps article:focus-within strong {
  font-weight: 650;
}

.value-steps article:hover p,
.value-steps article:focus-within p {
  color: rgba(45, 58, 71, 0.92);
}

.carousel-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(247, 200, 211, 0.22), transparent 18rem),
    radial-gradient(circle at 86% 82%, rgba(168, 181, 138, 0.17), transparent 18rem),
    rgba(255, 253, 248, 0.58);
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: clamp(1.35rem, 2.4vw, 2.35rem);
  box-shadow: 0 1.1rem 3.2rem rgba(45, 58, 71, 0.08);
  backdrop-filter: blur(1rem) saturate(1.06);
  -webkit-backdrop-filter: blur(1rem) saturate(1.06);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  padding: clamp(0.85rem, 1.5vw, 1.1rem) clamp(0.95rem, 2vw, 1.45rem);
}

.carousel-arrow {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--lagoon);
  background: rgba(255, 253, 248, 0.64);
  border: 1px solid rgba(45, 58, 71, 0.09);
  border-radius: 999px;
  cursor: pointer;
  font: 500 1.1rem/1 var(--sans);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.86);
  transform: translateY(-0.08rem);
}

.carousel-arrow:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.carousel-dot {
  width: 0.46rem;
  height: 0.46rem;
  background: rgba(45, 58, 71, 0.2);
  border-radius: 999px;
  transition:
    width 180ms ease,
    background-color 180ms ease;
}

.carousel-dot.is-active {
  width: 1.45rem;
  background: rgba(180, 106, 114, 0.72);
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.services.color-chapter {
  padding-top: clamp(4.2rem, 7vw, 6.4rem);
  padding-bottom: clamp(4.2rem, 7vw, 6.4rem);
  background:
    radial-gradient(circle at 18% 15%, rgba(247, 200, 211, 0.34), transparent 22rem),
    radial-gradient(circle at 82% 18%, rgba(168, 181, 138, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(255, 247, 230, 0.88), rgba(243, 219, 183, 0.58));
}

.services .section-intro {
  max-width: 55rem;
  margin-inline: auto;
  text-align: center;
}

.service-carousel {
  width: min(100%, 74rem);
  margin: clamp(1.6rem, 3.4vw, 2.7rem) auto 0;
}

.service-carousel .carousel-controls {
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(0.55rem, 1.5vw, 1rem);
  left: clamp(0.55rem, 1.5vw, 1rem);
  z-index: 3;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
  transform: none;
}

.service-carousel .carousel-arrow,
.service-carousel .carousel-dots {
  pointer-events: auto;
}

.service-carousel .carousel-arrow {
  color: var(--br-text-dark);
  background: color-mix(in oklab, var(--lf-vanilla) 86%, transparent);
  border-color: color-mix(in oklab, var(--lf-midnight) 18%, transparent);
  box-shadow: 0 0.8rem 1.8rem color-mix(in oklab, var(--lf-midnight) 14%, transparent);
}

.service-carousel .carousel-dots {
  position: absolute;
  bottom: clamp(0.95rem, 1.6vw, 1.35rem);
  left: 50%;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--lf-vanilla) 70%, transparent);
  transform: translateX(-50%);
}

.service-track {
  min-height: clamp(26rem, 34vw, 31rem);
}

.service-slide {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-content: center;
  gap: clamp(1rem, 3.2vw, 3rem);
  padding:
    clamp(1.25rem, 3vw, 2.5rem)
    clamp(1.15rem, 4vw, 3.35rem)
    clamp(1.8rem, 4vw, 3.35rem);
}

.carousel-arrow {
  width: 2.75rem;
  height: 2.75rem;
}

.service-slide__eyebrow,
.partner-board > p {
  margin: 0;
  color: var(--rosewood);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  font-weight: 500;
}

.service-slide h3 {
  grid-column: 1;
  margin: 0;
  color: var(--lagoon);
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.95;
  text-wrap: balance;
}

.service-slide > p:not(.service-slide__eyebrow):not(.service-price) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 38rem;
  margin: 0;
  color: rgba(45, 58, 71, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.service-slide a:not(.button) {
  color: var(--rosewood);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24rem;
}

.service-price {
  grid-column: 1;
  align-self: end;
  margin: clamp(0.7rem, 1.4vw, 1rem) 0 0;
  color: rgba(45, 58, 71, 0.68);
  font-size: 1rem;
}

.service-price strong {
  color: var(--lagoon);
  font-weight: 500;
}

.service-slide__cta {
  grid-column: 2;
  justify-self: start;
  align-self: end;
  margin-top: clamp(1rem, 1.8vw, 1.3rem);
  box-shadow: none;
}

.care-map {
  background:
    radial-gradient(circle at 15% 20%, rgba(247, 200, 211, 0.24), transparent 18rem),
    linear-gradient(135deg, rgba(255, 247, 230, 0.72), rgba(255, 253, 248, 0.88));
}

.care-map-intro {
  max-width: 50rem !important;
  margin-inline: auto;
  text-align: center;
}

.care-method {
  width: min(100%, 62rem);
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  padding: clamp(1.15rem, 2.6vw, 2rem);
  background:
    radial-gradient(circle at 10% 12%, rgba(168, 181, 138, 0.16), transparent 16rem),
    rgba(255, 253, 248, 0.56);
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: clamp(1.35rem, 2.4vw, 2.15rem);
}

.care-method ol {
  display: grid;
  gap: clamp(0.7rem, 1.4vw, 1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-method li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1fr);
  gap: clamp(0.8rem, 2vw, 1.5rem);
  align-items: baseline;
  padding: clamp(0.45rem, 1vw, 0.75rem) 0;
  color: rgba(45, 58, 71, 0.76);
  transition:
    transform 180ms ease,
    color 180ms ease;
}

.care-method li::before {
  content: "→";
  position: absolute;
  top: 0.42rem;
  left: -0.45rem;
  color: rgba(180, 106, 114, 0);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.care-method li:hover,
.care-method li:focus-within {
  color: rgba(45, 58, 71, 0.95);
  transform: translateX(0.18rem);
}

.care-method li:hover::before,
.care-method li:focus-within::before {
  color: rgba(180, 106, 114, 0.72);
  transform: translateX(-0.15rem);
}

.care-method span {
  color: var(--rosewood);
  font-weight: 500;
}

.care-method p {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.5;
}

.references {
  gap: clamp(1.4rem, 3vw, 2.4rem);
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.references > div:first-child {
  max-width: 42rem;
}

.reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(17rem, 0.62fr);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
}

.review-carousel,
.partner-board {
  min-height: 100%;
}

.review-slide {
  display: grid;
  align-content: center;
  gap: clamp(1rem, 2vw, 1.4rem);
  min-height: clamp(22rem, 28vw, 27rem);
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.review-slide p {
  max-width: 26ch;
  margin: 0;
  color: var(--lagoon);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 3.15rem);
  line-height: 1.08;
}

.review-slide--placeholder p {
  max-width: 28rem;
  font-family: var(--sans);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.35;
}

.review-slide span {
  color: var(--rosewood);
  font-weight: 500;
}

.partner-board {
  display: grid;
  align-content: center;
  gap: clamp(1rem, 2vw, 1.3rem);
  padding: clamp(1.25rem, 2.6vw, 1.9rem);
  background:
    radial-gradient(circle at 78% 18%, rgba(168, 181, 138, 0.24), transparent 14rem),
    rgba(255, 253, 248, 0.56);
  border: 1px solid rgba(255, 253, 248, 0.6);
  border-radius: clamp(1.35rem, 2.4vw, 2.15rem);
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.65rem, 1.4vw, 0.9rem);
  align-items: stretch;
}

.partner-grid a,
.partner-grid span {
  display: grid;
  place-items: center;
  min-height: 5.3rem;
  min-width: min(100%, 10rem);
  padding: 0.9rem 1rem;
  color: rgba(45, 58, 71, 0.68);
  text-align: center;
  text-decoration: none;
  background: rgba(255, 253, 248, 0.56);
  border: 1px solid rgba(45, 58, 71, 0.08);
  border-radius: 1.2rem;
}

.partner-grid img {
  width: min(12rem, 100%);
  max-height: 3rem;
  object-fit: contain;
}

@media (max-width: 68rem) {
  .service-slide {
    grid-template-columns: 1fr;
  }

  .service-slide > p:not(.service-slide__eyebrow):not(.service-price),
  .service-slide__cta {
    grid-column: 1;
    grid-row: auto;
  }

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

@media (min-width: 64rem) {
  .references {
    grid-template-columns: minmax(17rem, 0.68fr) minmax(0, 1.32fr);
    align-items: center;
  }

  .reference-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.72fr);
  }
}

@media (max-width: 47.98rem) {
  .carousel-controls {
    justify-content: center;
    padding-block: 0.8rem;
  }

  .service-carousel {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .service-carousel .carousel-controls {
    position: static;
    order: 2;
    justify-content: space-between;
    padding: 0 1.05rem 1.05rem;
    transform: none;
  }

  .service-carousel .carousel-dots {
    position: static;
    transform: none;
  }

  .service-track {
    order: 1;
  }

  .service-track {
    min-height: auto;
  }

  .service-slide {
    min-height: 28rem;
    padding: 1.1rem 1.05rem 1.45rem;
  }

  .service-slide h3 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .service-slide__cta {
    justify-self: stretch;
    width: 100%;
  }

  .care-method li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .review-slide {
    min-height: 22rem;
    padding: 1.2rem;
  }

  .review-slide p {
    max-width: 16ch;
    font-size: clamp(1.75rem, 8.2vw, 2.45rem);
    line-height: 1.1;
  }

  .partner-grid a,
  .partner-grid span {
    flex: 1 1 8.5rem;
    min-width: 8.5rem;
  }
}

/* Final section cleanup, 2026-07-13 */
.value-steps {
  width: min(100%, 56rem);
  gap: 0;
  margin-top: clamp(0.25rem, 0.9vw, 0.7rem);
}

.value-steps article {
  position: relative;
  padding: clamp(0.8rem, 1.3vw, 1.05rem) 0;
  overflow: hidden;
}

.value-steps article::after {
  content: "";
  position: absolute;
  inset: auto 18% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 58, 71, 0.13), transparent);
  opacity: 0.72;
  transition: opacity 180ms ease, transform 180ms ease;
}

.value-steps article:last-child::after {
  display: none;
}

.value-steps article:hover::after,
.value-steps article:focus-within::after {
  opacity: 0;
  transform: scaleX(0.82);
}

.services.color-chapter {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: var(--page-gutter);
  padding-left: var(--page-gutter);
  border: 0 !important;
  border-radius: 0 !important;
}

.services .section-intro {
  width: min(100%, var(--page-max));
  max-width: 54rem;
  margin: 0 auto;
  padding: 0 !important;
}

.services .section-intro h2 {
  max-width: 15ch;
  margin-inline: auto;
  text-align: center;
}

.service-carousel {
  width: min(100%, 76rem);
  margin-inline: auto;
}

.service-slide {
  min-height: clamp(25rem, 30vw, 29rem);
  align-items: center;
  padding-top: clamp(1rem, 2.4vw, 2rem);
}

.service-slide h3 {
  max-width: 9.5ch;
  font-size: clamp(2.45rem, 4.4vw, 4.5rem);
}

.service-slide > p:not(.service-slide__eyebrow):not(.service-price) {
  max-width: 34rem;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.56;
}

.service-slide__cta {
  margin-top: clamp(0.8rem, 1.4vw, 1.05rem);
}

.care-map {
  padding-top: clamp(4.2rem, 7vw, 6.2rem);
  padding-bottom: clamp(4.2rem, 7vw, 6.2rem);
  text-align: center;
}

.care-map-intro h2 {
  max-width: 10ch;
  margin-inline: auto;
  text-align: center;
}

.care-method {
  width: min(100%, 58rem);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.care-method ol {
  gap: 0;
}

.care-method li {
  grid-template-columns: 2.5rem minmax(0, 1fr);
  width: min(100%, 48rem);
  margin-inline: auto;
  padding: clamp(0.9rem, 1.45vw, 1.15rem) 0;
  text-align: left;
  border-bottom: 1px solid rgba(45, 58, 71, 0.11);
}

.care-method li:last-child {
  border-bottom: 0;
}

.care-method li::before {
  content: "→";
  position: static;
  grid-column: 1;
  grid-row: 1;
  color: rgba(180, 106, 114, 0.68);
  transform: none;
}

.care-method li:hover::before,
.care-method li:focus-within::before {
  color: rgba(180, 106, 114, 0.92);
  transform: translateX(0.12rem);
}

.care-method p {
  grid-column: 2;
  max-width: 42rem;
  font-size: clamp(1rem, 1.12vw, 1.08rem);
}

.references {
  display: block;
  text-align: center;
}

.references-intro {
  max-width: 50rem;
  margin: 0 auto clamp(1.5rem, 3vw, 2.4rem);
}

.references-intro h2 {
  margin: 0 auto;
  text-align: center;
}

.reference-layout {
  display: block;
  width: min(100%, 72rem);
  margin-inline: auto;
}

.review-carousel {
  width: min(100%, 62rem);
  margin-inline: auto;
}

.review-slide {
  min-height: clamp(15rem, 22vw, 19rem);
  justify-items: center;
  text-align: center;
}

.review-slide p,
.review-slide--placeholder p {
  max-width: 54rem;
  margin-inline: auto;
  color: rgba(45, 58, 71, 0.86);
  font-family: var(--sans);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  font-weight: 400;
  line-height: 1.62;
}

.review-slide span {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
}

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.7rem, 1.4vw, 1rem);
  width: min(100%, 56rem);
  margin: clamp(1.4rem, 2.6vw, 2.1rem) auto 0;
  color: rgba(45, 58, 71, 0.68);
}

.partner-strip > span:first-child {
  flex-basis: 100%;
  color: var(--rosewood);
  font-weight: 500;
}

.partner-strip a,
.partner-strip span:not(:first-child) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  min-width: min(100%, 9rem);
  padding: 0.5rem 0.85rem;
  color: rgba(45, 58, 71, 0.66);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 58, 71, 0.14);
}

.partner-strip img {
  width: min(11rem, 100%);
  max-height: 2.5rem;
  object-fit: contain;
}

.contact {
  display: grid;
  grid-template-columns: 1fr !important;
  justify-items: center;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  text-align: center;
}

.contact-copy {
  max-width: 42rem;
  margin-inline: auto;
}

.contact-copy h2 {
  margin: 0;
  text-align: center;
}

.contact-form {
  width: min(100%, 54rem);
  margin-inline: auto;
  text-align: left;
}

.contact-details {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  max-width: 42rem;
  margin: clamp(0.4rem, 1.4vw, 0.9rem) auto 0;
  color: rgba(45, 58, 71, 0.7);
  text-align: center;
}

@media (max-width: 63.98rem) {
  .services .section-intro h2,
  .care-map-intro h2,
  .references-intro h2,
  .contact-copy h2 {
    max-width: 12ch;
  }

  .service-slide {
    min-height: auto;
    text-align: center;
  }

  .service-slide h3,
  .service-slide > p:not(.service-slide__eyebrow):not(.service-price) {
    max-width: 100%;
    margin-inline: auto;
  }

  .service-slide__cta {
    justify-self: center;
  }
}

@media (max-width: 47.98rem) {
  .services.color-chapter {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .services .section-intro h2 {
    max-width: 12ch;
  }

  .service-slide {
    min-height: 27rem;
  }

  .service-slide h3 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .service-slide > p:not(.service-slide__eyebrow):not(.service-price) {
    font-size: 0.96rem;
  }

  .care-method li {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .review-slide {
    min-height: 18rem;
  }

  .review-slide p,
  .review-slide--placeholder p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
  }

  .partner-strip {
    width: 100%;
  }

  .partner-strip a,
  .partner-strip span:not(:first-child) {
    flex: 1 1 8rem;
    min-width: 0;
  }
}

/* Lucie Francova brand and section polish, 2026-07-14 */
body {
  background:
    radial-gradient(circle at 18% 21%, rgba(247, 200, 211, 0.28), transparent 27rem),
    radial-gradient(circle at 82% 39%, rgba(168, 181, 138, 0.2), transparent 25rem),
    radial-gradient(circle at 48% 78%, rgba(255, 247, 230, 0.86), transparent 31rem),
    linear-gradient(135deg, #fff7e6 0%, #fce9e8 46%, #f7f1da 100%);
}

main,
.intro-value,
.services.color-chapter,
.care-map,
.references,
.contact {
  background: transparent !important;
}

.site-loader {
  display: grid;
  place-items: center;
  text-align: center;
}

.site-loader__mark {
  display: grid;
  width: min(84vw, 27rem);
  place-items: center;
  padding: 0 !important;
  text-align: center;
}

.site-loader__mark strong {
  margin: 0 !important;
  color: rgba(45, 58, 71, 0.92);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 6vw, 4.8rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0;
  line-height: 0.96;
  text-align: center;
}

.brand img,
.footer-brand img {
  width: clamp(9.8rem, 12vw, 13.2rem) !important;
  max-height: 4.7rem;
  object-fit: contain;
}

.footer-brand img {
  width: clamp(11rem, 18vw, 15rem) !important;
}

.intro-value {
  padding-bottom: clamp(4.4rem, 8vw, 7.8rem);
}

.intro-value__head {
  padding-top: clamp(2.5rem, 5vw, 4.8rem);
}

.value-steps {
  position: relative;
  isolation: isolate;
}

.value-steps::before,
.value-steps::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -0.8rem;
  bottom: -0.8rem;
  width: clamp(2rem, 7vw, 8rem);
  pointer-events: none;
}

.value-steps::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 247, 230, 0.94), rgba(255, 247, 230, 0));
}

.value-steps::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 247, 230, 0.94), rgba(255, 247, 230, 0));
}

.value-steps article {
  overflow: visible !important;
  border-radius: 999rem;
  transition:
    transform 200ms ease,
    color 200ms ease,
    font-weight 200ms ease;
}

.value-steps article::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 clamp(0.3rem, 3vw, 3rem);
  border-radius: 999rem;
  background:
    radial-gradient(circle at 20% 50%, rgba(247, 200, 211, 0.3), transparent 60%),
    radial-gradient(circle at 82% 50%, rgba(255, 247, 230, 0.72), transparent 62%);
  opacity: 0;
  filter: blur(18px);
  transform: scaleX(0.82);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.value-steps article:hover,
.value-steps article:focus-within {
  transform: translateY(-0.08rem);
}

.value-steps article:hover::before,
.value-steps article:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.value-steps article:hover strong,
.value-steps article:focus-within strong {
  font-weight: 700;
}

.services.color-chapter {
  margin-top: 0;
  padding-top: clamp(5.2rem, 9vw, 8rem);
  background: transparent !important;
}

.service-slide {
  position: relative;
  overflow: hidden;
}

.service-icon {
  display: inline-grid;
  width: clamp(3.5rem, 5vw, 4.8rem);
  height: clamp(3.5rem, 5vw, 4.8rem);
  place-items: center;
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
  color: rgba(180, 106, 114, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999rem;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 247, 230, 0.9), rgba(255, 247, 230, 0.28)),
    rgba(255, 255, 255, 0.28);
  box-shadow: 0 1rem 2.4rem rgba(45, 58, 71, 0.08);
  transition:
    color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

.service-icon svg {
  width: 68%;
  height: 68%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-slide:hover .service-icon,
.service-slide:focus-within .service-icon {
  color: rgba(45, 58, 71, 0.86);
  transform: translateY(-0.12rem);
  box-shadow: 0 1.3rem 2.9rem rgba(45, 58, 71, 0.12);
}

.care-map {
  width: min(calc(100% - (var(--page-gutter) * 2)), 86rem);
  margin: clamp(4.2rem, 8vw, 7.2rem) auto;
  padding: clamp(3.8rem, 7vw, 6.4rem) clamp(1.4rem, 6vw, 5rem);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: clamp(2rem, 5vw, 3.4rem);
  background:
    radial-gradient(circle at 18% 22%, rgba(240, 160, 101, 0.28), transparent 24rem),
    radial-gradient(circle at 86% 78%, rgba(247, 200, 211, 0.22), transparent 23rem),
    linear-gradient(135deg, rgba(255, 247, 230, 0.7), rgba(255, 255, 255, 0.38)) !important;
  box-shadow: 0 2.6rem 6rem rgba(45, 58, 71, 0.08);
  backdrop-filter: blur(24px);
}

.care-method {
  width: min(100%, 62rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.care-method li {
  width: min(100%, 54rem);
  align-items: center;
  padding: 0.8rem 1.05rem;
  border-bottom: 0;
  border-radius: 999rem;
  background: rgba(255, 255, 255, 0);
  transition:
    background 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.care-method li + li {
  margin-top: 0.35rem;
}

.care-method li::before {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999rem;
  color: rgba(180, 106, 114, 0.76);
  background: rgba(255, 247, 230, 0.42);
  transition:
    background 200ms ease,
    color 200ms ease,
    transform 200ms ease;
}

.care-method li:hover,
.care-method li:focus-within {
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 1rem 2.6rem rgba(45, 58, 71, 0.08);
  transform: translateX(0.3rem);
}

.care-method li:hover::before,
.care-method li:focus-within::before {
  color: rgba(45, 58, 71, 0.88);
  background: rgba(247, 200, 211, 0.52);
  transform: translateX(0.16rem);
}

.care-method p {
  color: rgba(45, 58, 71, 0.78);
  transition:
    color 200ms ease,
    font-weight 200ms ease;
}

.care-method li:hover p,
.care-method li:focus-within p {
  color: rgba(45, 58, 71, 0.92);
  font-weight: 500;
}

@media (max-width: 63.98rem) {
  .brand img {
    width: clamp(8.8rem, 32vw, 11.6rem) !important;
  }

  .services.color-chapter {
    padding-top: clamp(4.6rem, 12vw, 6rem);
  }

  .service-slide {
    align-content: center;
    gap: 0.7rem;
  }

  .service-icon {
    justify-self: center;
  }

  .service-slide__actions {
    grid-column: 1;
    justify-content: center;
    justify-self: center;
  }
}

@media (max-width: 47.98rem) {
  .value-steps::before,
  .value-steps::after {
    width: 1.6rem;
  }

  .care-map {
    width: calc(100% - 1.5rem);
    padding: 3.2rem 1rem;
  }

  .service-carousel {
    padding-bottom: 0;
  }

  .service-slide {
    min-height: auto;
    padding-top: 2.15rem;
    padding-bottom: 2.15rem;
  }

  .service-slide > p:not(.service-slide__eyebrow):not(.service-price) {
    line-height: 1.52;
  }

  .service-price {
    margin-top: 0.2rem;
  }

  .service-carousel .carousel-controls {
    display: grid;
    grid-template-columns: 2.9rem minmax(0, auto) 2.9rem;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem 1.15rem;
  }

  .service-carousel .carousel-arrow {
    width: 2.9rem;
    height: 2.9rem;
    font-size: 1.15rem;
  }

  .service-carousel .carousel-dots {
    justify-self: center;
  }

  .service-slide__actions {
    width: 100%;
  }

  .service-slide__actions .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .care-method li {
    grid-template-columns: 2rem minmax(0, 1fr);
    border-radius: 1.4rem;
    padding: 0.85rem 0.75rem;
  }

  .care-method li:hover,
  .care-method li:focus-within {
    transform: translateY(-0.08rem);
  }

}

/* Systematic color and section refinement, 2026-07-14 */
:root {
  --br-text-dark: oklch(0.24 0.025 315);
  --br-text-muted: oklch(0.43 0.02 315);
  --br-text-light: oklch(0.97 0.01 85);
  --br-text-accent: oklch(0.38 0.055 315);
  --br-service-peach: oklch(0.86 0.065 55);
  --br-service-plum: oklch(0.36 0.065 315);
  --br-service-sage: oklch(0.84 0.055 115);
  --br-service-rose: oklch(0.42 0.085 15);
  --ink: var(--br-text-dark);
  --lagoon: var(--br-text-dark);
  --lagoon-soft: var(--br-text-muted);
  --white: var(--br-text-light);
}

body {
  color: var(--br-text-dark);
}

main :is(h1, h2, h3) {
  color: var(--br-text-dark);
}

main p {
  color: var(--br-text-muted);
}

.story-hero :is(h1, .hero-lead) {
  color: var(--br-text-light);
}

.brand img {
  width: clamp(3.25rem, 4vw, 3.9rem) !important;
  height: clamp(3.25rem, 4vw, 3.9rem);
}

.footer-brand img {
  width: clamp(3.75rem, 7vw, 4.5rem) !important;
  height: clamp(3.75rem, 7vw, 4.5rem);
}

.value-steps::before,
.value-steps::after,
.value-steps article::after {
  display: none;
}

.value-steps article {
  isolation: isolate;
  overflow: visible !important;
  border-radius: 999rem;
}

.value-steps article::before {
  inset: 0.35rem clamp(1rem, 5vw, 5rem);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(247, 200, 211, 0.42) 22%,
    rgba(255, 253, 248, 0.5) 52%,
    rgba(168, 181, 138, 0.2) 80%,
    transparent
  );
  opacity: 0.88;
  filter: blur(1.5rem);
  transform: none;
}

.value-steps article:hover::before,
.value-steps article:focus-within::before {
  opacity: 1;
  transform: scaleX(1.02);
}

.value-steps p,
.value-steps strong {
  color: var(--br-text-dark);
}

.service-slide {
  --service-foreground: var(--br-text-dark);
  color: var(--service-foreground);
  transition: background-color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-slide:nth-child(1) {
  background: var(--br-service-peach);
}

.service-slide:nth-child(2) {
  --service-foreground: var(--br-text-light);
  background: var(--br-service-plum);
}

.service-slide:nth-child(3) {
  background: var(--br-service-sage);
}

.service-slide:nth-child(4) {
  background: var(--br-service-sage);
}

.service-slide:nth-child(5) {
  --service-foreground: var(--br-text-light);
  background: var(--br-service-rose);
}

.service-slide h3,
.service-slide > p:not(.service-slide__eyebrow):not(.service-price),
.service-slide .service-price,
.service-slide .service-price strong,
.service-slide a:not(.button),
.service-icon {
  color: var(--service-foreground);
}

.service-slide:hover .service-icon,
.service-slide:focus-within .service-icon {
  color: var(--service-foreground);
}

.service-icon {
  width: clamp(5.25rem, 7vw, 7rem);
  height: clamp(5.25rem, 7vw, 7rem);
  margin-bottom: clamp(0.75rem, 1.6vw, 1.2rem);
  background: color-mix(in oklab, var(--service-foreground) 10%, transparent);
  border-color: color-mix(in oklab, var(--service-foreground) 34%, transparent);
  box-shadow: none;
}

.service-icon svg {
  width: 72%;
  height: 72%;
  stroke-width: 1.8;
}

.service-slide:nth-child(even) .button-primary {
  color: var(--br-text-dark);
  background: var(--br-text-light);
  border-color: color-mix(in oklab, var(--br-text-light) 76%, transparent);
}

.service-slide:nth-child(even) .button-primary:hover,
.service-slide:nth-child(even) .button-primary:focus-visible {
  color: var(--br-text-dark);
  background: oklch(0.91 0.025 75);
}

.service-slide__actions {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-self: end;
  justify-self: start;
  margin-top: clamp(0.8rem, 1.4vw, 1.05rem);
}

.service-slide__actions .service-slide__cta {
  margin-top: 0;
}

.service-slide:nth-child(even) .button-secondary {
  color: var(--br-text-light);
  border-color: color-mix(in oklab, var(--br-text-light) 42%, transparent);
}

.service-slide:nth-child(even) .button-secondary:hover,
.service-slide:nth-child(even) .button-secondary:focus-visible {
  color: var(--br-text-dark);
  background: var(--br-text-light);
}

.service-slide:nth-child(4) .button-secondary {
  color: var(--br-text-dark);
  background: var(--br-text-light);
  border-color: color-mix(in oklab, var(--br-service-rose) 56%, transparent);
}

.service-slide:nth-child(4) .button-secondary::after {
  color: var(--br-text-light);
  background: var(--br-service-rose);
}

.service-slide:nth-child(4) .button-secondary:hover,
.service-slide:nth-child(4) .button-secondary:focus-visible {
  color: var(--br-text-light);
  background: var(--br-service-rose);
  border-color: var(--br-service-rose);
}

.service-slide:nth-child(4) .button-secondary:hover::after,
.service-slide:nth-child(4) .button-secondary:focus-visible::after {
  color: var(--br-service-rose);
  background: var(--br-text-light);
}

.care-method {
  width: 100%;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.care-method ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin-inline: auto;
  counter-reset: care-step;
}

.care-method ol::before {
  position: absolute;
  top: 1.35rem;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: color-mix(in oklab, var(--br-text-accent) 45%, transparent);
  content: "";
}

.care-method li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
  padding: 0 clamp(0.65rem, 1.5vw, 1.25rem);
  text-align: center;
  background: transparent;
  border-radius: 0;
  counter-increment: care-step;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.care-method li::before {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
  color: var(--br-text-accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  background: var(--surface-solid);
  border: 1px solid color-mix(in oklab, var(--br-text-accent) 48%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 0.45rem color-mix(in oklab, var(--surface-solid) 84%, transparent);
  content: counter(care-step);
  transition:
    color 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 240ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.care-method li:not(:last-child)::after {
  content: none;
}

.care-method li:hover,
.care-method li:focus-within {
  background: transparent;
  box-shadow: none;
  transform: translateY(-0.2rem);
}

.care-method li:hover::before,
.care-method li:focus-within::before {
  color: var(--br-text-light);
  background: var(--br-service-plum);
  border-color: var(--br-service-plum);
  box-shadow: 0 0.85rem 1.8rem color-mix(in oklab, var(--br-service-plum) 24%, transparent);
  transform: translateY(-0.12rem) scale(1.08);
}

.care-method p {
  grid-column: 1;
  max-width: 24ch;
  color: var(--br-text-muted);
  text-align: center;
  transition:
    color 200ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.care-method li:hover p,
.care-method li:focus-within p {
  color: var(--br-text-dark);
  transform: translateY(-0.08rem);
}

.partner-strip {
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: clamp(1.8rem, 3.5vw, 3rem);
}

.partner-strip a,
.partner-strip span {
  min-height: 4rem;
  padding: 0.5rem 1rem;
  border: 0;
}

.partner-strip img {
  width: min(12.5rem, 100%);
  max-height: 3rem;
}

@media (max-width: 47.98rem) {
  .brand img {
    width: 3.25rem !important;
    height: 3.25rem;
  }

  .service-icon {
    width: 5rem;
    height: 5rem;
  }

  .care-method li {
    grid-template-columns: 2.7rem minmax(0, 1fr);
    justify-items: start;
    gap: 1rem;
    padding: 0 0 1.75rem;
    text-align: left;
  }

  .care-method ol {
    grid-template-columns: 1fr;
  }

  .care-method ol::before {
    top: 1.35rem;
    right: auto;
    bottom: 1.35rem;
    left: 1.35rem;
    width: 1px;
    height: auto;
  }

  .care-method li:last-child {
    padding-bottom: 0;
  }

  .care-method li::before {
    grid-column: 1;
    margin-bottom: 0;
  }

  .care-method p {
    grid-column: 2;
    max-width: none;
    padding-top: 0.45rem;
    text-align: left;
  }

}

/* Copy refresh, 2026-07-26 */
.story-hero .hero-title--statement {
  width: min(100%, 88rem);
  font-size: clamp(3.4rem, 5.35vw, 6.45rem);
  line-height: 0.95;
  text-wrap: balance;
}

.hero-title--statement .hero-title-line {
  white-space: normal;
}

.hero-intro {
  display: grid;
  gap: clamp(0.65rem, 1.4vw, 1rem);
  width: min(100%, 68rem);
}

.story-hero .hero-lead--opening {
  max-width: 52ch;
  font-size: clamp(1.12rem, 1.75vw, 1.5rem);
  font-weight: 400;
  line-height: 1.38;
  text-wrap: balance;
}

.story-hero .hero-lead--statement {
  max-width: 72ch;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.52;
  text-wrap: pretty;
}

.hero-lead--statement strong {
  color: inherit;
  font-weight: 600;
}

.intro-value__head {
  width: min(100%, 86rem);
  max-width: none;
  text-align: center;
}

.intro-value__story {
  position: relative;
  display: grid;
  justify-items: center;
  gap: clamp(1.4rem, 2.8vw, 2.4rem);
  width: min(100%, 92rem);
  max-width: none;
  margin-inline: auto;
  padding: clamp(1.2rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: clamp(1.5rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 12% 14%, rgba(247, 200, 211, 0.26), transparent 20rem),
    radial-gradient(circle at 88% 82%, rgba(168, 181, 138, 0.18), transparent 22rem),
    rgba(255, 253, 248, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 1.5rem 4rem rgba(45, 58, 71, 0.08);
  text-align: left;
  backdrop-filter: blur(1rem) saturate(1.06);
  -webkit-backdrop-filter: blur(1rem) saturate(1.06);
}

.intro-value__story p {
  width: min(100%, 68ch);
  margin: 0;
  text-wrap: pretty;
}

.intro-value__narrative {
  display: grid;
  gap: 0.85rem;
  width: min(100%, 68rem);
}

.intro-value__narrative p {
  width: 100%;
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--br-text-muted);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.58;
  text-align: center;
}

.intro-value__principles {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  width: min(100%, 58rem);
}

.intro-value__story .intro-value__prompt {
  width: auto;
  color: var(--br-text);
  font-weight: 600;
  text-align: center;
}

.intro-value__principles ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-value__principles li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  min-height: 4.4rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 1.25rem;
  background: rgba(255, 253, 248, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 0.65rem 1.6rem rgba(45, 58, 71, 0.055);
  color: var(--br-text-muted);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.48;
  text-align: center;
  transition:
    background-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-value__principles li > strong {
  color: var(--br-text-dark);
  font-weight: 500;
  text-align: center;
}

@media (hover: hover) {
  .intro-value__principles li:hover {
    background: rgba(247, 200, 211, 0.32);
    color: var(--br-text);
    transform: translateY(-0.16rem);
  }
}

.intro-value__copy {
  justify-items: center;
  width: min(100%, 72rem);
  min-height: 0;
  margin-inline: auto;
  padding: clamp(1.35rem, 3vw, 2.5rem);
  border-radius: clamp(1.5rem, 3vw, 2.4rem);
}

.intro-value__copy h3 {
  max-width: none;
  text-align: center;
}

.value-steps {
  grid-template-columns: 1fr;
  width: min(100%, 64rem);
}

.value-steps article {
  grid-template-columns: 1fr !important;
  justify-items: center;
  min-height: auto;
  align-items: center;
  padding: clamp(0.8rem, 1.8vw, 1.1rem);
  border: 0 !important;
  border-radius: 1.25rem;
  background: transparent !important;
  box-shadow: none !important;
  transition:
    background-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.value-steps p {
  max-width: 70rem;
  margin-inline: auto;
  text-align: center;
}

.value-steps article::before,
.value-steps article::after {
  display: none;
}

@media (hover: hover) {
  .value-steps article:hover {
    background: rgba(255, 253, 248, 0.3) !important;
    transform: translateY(-0.12rem);
  }
}

.services .section-summary {
  max-width: 54ch;
  margin: 0.85rem auto 0;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
}

.service-slide__body {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 38rem;
  color: var(--service-foreground);
  font-size: clamp(1rem, 1vw, 1.05rem);
  line-height: 1.5;
}

.service-slide__body p {
  margin: 0 0 0.8rem;
  color: inherit;
  text-wrap: pretty;
}

.service-slide__body strong {
  color: inherit;
  font-weight: 700;
}

.service-slide__body ul {
  display: grid;
  gap: 0.2rem;
  margin: -0.3rem 0 0.85rem;
  padding-left: 1.2rem;
}

.service-slide__body li {
  padding-left: 0.15rem;
}

.service-slide__body .service-slide__tagline {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 63.98rem) {
  .service-slide__body {
    grid-column: 1;
    grid-row: auto;
    max-width: 44rem;
    margin-inline: auto;
  }
}

@media (min-width: 64rem) {
  .story-hero .hero-title--statement {
    width: auto;
    max-width: calc(100vw - 4rem);
  }

  .hero-title--statement .hero-title-line {
    white-space: nowrap;
  }

  .intro-value__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: clamp(1.3rem, 2.5vw, 2rem);
    width: min(100%, 86rem);
    max-width: none;
  }

  .intro-value__head h2 {
    position: static;
    justify-self: center;
    margin: 0;
    text-align: center;
    transition:
      color 240ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .intro-value__head:hover h2 {
    color: var(--br-text-accent);
    transform: translateY(-0.15rem);
  }

  .intro-value__story {
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .intro-value__narrative {
    grid-template-columns: 1fr;
  }

  .intro-value__copy {
    width: min(100%, 72rem);
    max-width: none;
  }

  .value-steps {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    width: min(100%, 64rem);
  }

  .value-steps article {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: center;
    padding: 0.55rem clamp(1rem, 2vw, 1.35rem);
    border-radius: 1.4rem;
  }

  .value-steps article::before {
    inset: 0.3rem 1rem;
    border-radius: 1.4rem;
  }

  .value-steps p {
    max-width: none;
    margin-inline: auto;
  }
}

@media (max-width: 47.98rem) {
  .story-hero .hero-title--statement {
    width: min(100%, 23rem);
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    line-height: 0.96;
  }

  .hero-title--statement .hero-title-line {
    white-space: normal;
  }

  .hero-intro {
    gap: 0.75rem;
    width: min(100%, 22rem);
  }

  .story-hero .hero-lead--opening {
    max-width: 22rem;
    font-size: 1.05rem;
    line-height: 1.42;
  }

  .story-hero .hero-lead--statement {
    max-width: 22rem;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .intro-value__head h2 {
    max-width: none !important;
    margin-bottom: 0.6rem;
  }

  .intro-value__story {
    gap: 1.1rem;
    padding: 1rem;
  }

  .intro-value__narrative p {
    padding: 0;
  }

  .intro-value__principles li,
  .value-steps article {
    grid-template-columns: 1fr !important;
    padding: 0.85rem 0.9rem;
  }

  .service-slide {
    min-height: auto;
  }

  .service-slide__body {
    font-size: 1rem;
    text-align: left;
  }

  .service-slide__body .service-slide__tagline {
    text-align: center;
  }
}

/* Standalone legal pages */
.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(247, 200, 211, 0.3), transparent 25rem),
    radial-gradient(circle at 88% 68%, rgba(168, 181, 138, 0.2), transparent 28rem),
    #fff8ee;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 5.4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem max(1rem, calc((100vw - 78rem) / 2));
  border-bottom: 1px solid rgba(45, 58, 71, 0.08);
  background: rgba(255, 248, 238, 0.82);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
}

.legal-brand {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
}

.legal-brand img {
  width: 100%;
  height: 100%;
}

.legal-back {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(45, 58, 71, 0.14);
  border-radius: 999px;
  color: var(--br-text-dark);
  text-decoration: none;
  background: rgba(255, 253, 248, 0.58);
}

.legal-main {
  padding: clamp(2rem, 5vw, 5rem) 1rem;
}

.legal-document {
  display: grid;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  width: min(100%, 76rem);
  margin-inline: auto;
}

.legal-hero {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 253, 248, 0.48);
  box-shadow: 0 1.5rem 4rem rgba(45, 58, 71, 0.07);
  text-align: center;
  backdrop-filter: blur(0.9rem);
  -webkit-backdrop-filter: blur(0.9rem);
}

.legal-hero h1 {
  max-width: 16ch;
  margin: 0;
  color: var(--br-text-dark);
  font-family: var(--hero-serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.legal-hero > p:not(.section-kicker):not(.legal-updated) {
  max-width: 62ch;
  margin: 0;
  color: var(--br-text-muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
}

.legal-updated {
  margin: 0;
  color: var(--br-text-accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.legal-toc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.legal-toc a {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(45, 58, 71, 0.1);
  border-radius: 1rem;
  color: var(--br-text-dark);
  text-decoration: none;
  background: rgba(255, 253, 248, 0.42);
}

.legal-document > section {
  display: grid;
  gap: 1rem;
  scroll-margin-top: 7rem;
}

.legal-document h2 {
  max-width: 24ch;
  margin: 0;
  color: var(--br-text-dark);
  font-family: var(--hero-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.legal-document h3 {
  margin: 0;
  color: var(--br-text-dark);
  font-size: 1.05rem;
}

.legal-document p,
.legal-document li,
.legal-document td,
.legal-document th {
  color: var(--br-text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.legal-document p,
.legal-document ul {
  max-width: 75ch;
  margin: 0;
}

.legal-document a {
  color: var(--br-text-accent);
  text-underline-offset: 0.18em;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.legal-card {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 1.25rem;
  background: rgba(255, 253, 248, 0.48);
  box-shadow: 0 0.8rem 2rem rgba(45, 58, 71, 0.05);
}

.legal-card p {
  width: 100%;
}

.legal-card--identity {
  width: min(100%, 38rem);
}

.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(45, 58, 71, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 253, 248, 0.5);
}

.legal-table-wrap table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
}

.legal-table-wrap th,
.legal-table-wrap td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(45, 58, 71, 0.08);
  text-align: left;
  vertical-align: top;
}

.legal-table-wrap th {
  color: var(--br-text-dark);
  font-weight: 600;
  background: rgba(247, 200, 211, 0.18);
}

.legal-table-wrap tr:last-child td {
  border-bottom: 0;
}

.legal-note,
.cookie-status {
  display: grid;
  gap: 0.55rem;
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  border: 1px solid rgba(255, 253, 248, 0.64);
  border-radius: 1.35rem;
  background: rgba(247, 200, 211, 0.22);
}

.legal-note p {
  margin: 0;
}

.cookie-status {
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: center;
  background: rgba(168, 181, 138, 0.2);
}

.cookie-status > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  color: var(--br-text-light);
  background: var(--br-text-accent);
  font-size: 1.25rem;
}

.cookie-status p {
  margin: 0.25rem 0 0;
}

.legal-document code {
  padding: 0.12rem 0.35rem;
  border-radius: 0.35rem;
  background: rgba(45, 58, 71, 0.08);
  font-size: 0.92em;
}

.legal-document--simple {
  gap: clamp(1.5rem, 3vw, 2.35rem);
  width: min(100%, 58rem);
}

.legal-document--simple .legal-hero {
  padding: clamp(1.35rem, 3.5vw, 2.4rem) 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.legal-document--simple > section {
  gap: 0.65rem;
  padding-top: clamp(1.15rem, 2vw, 1.5rem);
  border-top: 1px solid color-mix(in oklab, var(--lf-midnight) 12%, transparent);
}

.legal-document--simple h2 {
  max-width: none;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.12;
}

.legal-document--simple p,
.legal-document--simple li {
  max-width: 70ch;
}

.legal-document--simple ul {
  display: grid;
  gap: 0.4rem;
  padding-left: 1.2rem;
}

.legal-document--simple .legal-note {
  border-radius: 0.75rem;
  background: color-mix(in oklab, var(--lf-blush) 18%, var(--lf-vanilla));
  box-shadow: none;
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  justify-content: center;
  padding: 2rem 1rem 3rem;
  border-top: 1px solid rgba(45, 58, 71, 0.08);
  color: var(--br-text-muted);
  text-align: center;
}

.legal-footer a {
  color: var(--br-text-dark);
}

.form-privacy-note {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--br-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.form-privacy-note a {
  color: var(--br-text-accent);
}

@media (max-width: 47.98rem) {
  .legal-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .legal-table-wrap table {
    min-width: 0;
  }

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

  .legal-table tbody,
  .legal-table tr,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table tr {
    display: grid;
    gap: 0.65rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(45, 58, 71, 0.1);
    border-radius: 1rem;
    background: rgba(255, 253, 248, 0.5);
  }

  .legal-table td,
  .legal-table tr:last-child td {
    display: grid;
    grid-template-columns: minmax(6.4rem, 0.38fr) minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0;
    border: 0;
  }

  .legal-table td::before {
    color: var(--br-text-dark);
    font-size: 0.82rem;
    font-weight: 700;
  }

  .legal-table--privacy td:nth-child(1)::before {
    content: "Účel";
  }

  .legal-table--privacy td:nth-child(2)::before {
    content: "Právní základ";
  }

  .legal-table--privacy td:nth-child(3)::before {
    content: "Doba uchování";
  }

  .legal-table--cookies td:nth-child(1)::before {
    content: "Kategorie";
  }

  .legal-table--cookies td:nth-child(2)::before {
    content: "Aktuální použití";
  }

  .legal-table--cookies td:nth-child(3)::before {
    content: "Souhlas";
  }
}

@media (min-width: 48rem) {
  .legal-toc {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

/* LF brand alignment, 2026-08-11 */
:root {
  --lf-velvet-rose: #b46a72;
  --lf-midnight: #2d3a47;
  --lf-blush: #f7c8d3;
  --lf-cloud-blue: #a9b7c6;
  --lf-vanilla: #fffaf1;
  --lf-deep-black: #000000;
  --vanilla: var(--lf-vanilla);
  --vanilla-soft: var(--lf-vanilla);
  --champagne: var(--lf-vanilla);
  --peach: var(--lf-blush);
  --blush: var(--lf-blush);
  --rosewood: var(--lf-velvet-rose);
  --sage: var(--lf-cloud-blue);
  --sage-soft: color-mix(in oklab, var(--lf-cloud-blue) 24%, var(--lf-vanilla));
  --sky: var(--lf-cloud-blue);
  --lagoon: var(--lf-midnight);
  --lagoon-soft: color-mix(in oklab, var(--lf-midnight) 84%, var(--lf-vanilla));
  --ink: var(--lf-midnight);
  --muted: color-mix(in oklab, var(--lf-midnight) 72%, var(--lf-vanilla));
  --nav-text: var(--lf-midnight);
  --nav-text-invert: var(--lf-vanilla);
  --br-text-dark: var(--lf-midnight);
  --br-text-muted: color-mix(in oklab, var(--lf-midnight) 72%, var(--lf-vanilla));
  --br-text-light: var(--lf-vanilla);
  --br-text-accent: var(--lf-velvet-rose);
  --br-service-peach: var(--lf-blush);
  --br-service-plum: var(--lf-midnight);
  --br-service-sage: var(--lf-cloud-blue);
  --br-service-rose: var(--lf-velvet-rose);
  --display: var(--hero-serif);
  --body: var(--sans);
}

body {
  background:
    radial-gradient(circle at 18% 8%, color-mix(in oklab, var(--lf-blush) 42%, transparent), transparent 28rem),
    radial-gradient(circle at 84% 0%, color-mix(in oklab, var(--lf-cloud-blue) 26%, transparent), transparent 26rem),
    var(--lf-vanilla);
}

.scroll-progress {
  background: linear-gradient(90deg, var(--lf-velvet-rose), var(--lf-blush), var(--lf-cloud-blue));
}

.site-header {
  background: transparent;
  border-color: color-mix(in oklab, var(--lf-vanilla) 20%, transparent);
  backdrop-filter: blur(0.75rem) saturate(1.08);
  -webkit-backdrop-filter: blur(0.75rem) saturate(1.08);
}

.site-header.is-scrolled {
  background: color-mix(in oklab, var(--lf-vanilla) 52%, transparent);
  border-color: color-mix(in oklab, var(--lf-midnight) 10%, transparent);
}

.brand img,
.footer-brand img,
.legal-brand img {
  border-radius: 50%;
}

.story-hero .hero-lead--opening {
  color: var(--lf-vanilla);
  font-size: clamp(1rem, 1.28vw, 1.26rem);
  line-height: 1.3;
}

@media (min-width: 48rem) {
  .story-hero .hero-lead--opening {
    width: max-content;
    max-width: calc(100vw - 4rem);
    white-space: nowrap;
    text-wrap: normal;
  }
}

@media (max-width: 47.98rem) {
  .story-hero .hero-lead--opening {
    width: min(100%, 22rem);
    max-width: 22rem;
    white-space: normal;
    text-wrap: balance;
  }
}

/* D.N.A krásy interactive method */
.dna-beauty {
  padding: 3.5rem var(--page-gutter) 4rem;
  color: var(--lf-vanilla);
  background:
    radial-gradient(circle at 22% 18%, color-mix(in oklab, var(--lf-velvet-rose) 28%, transparent), transparent 19rem),
    radial-gradient(circle at 84% 64%, color-mix(in oklab, var(--lf-blush) 13%, transparent), transparent 23rem),
    var(--lf-midnight);
}

.dna-beauty__intro,
.dna-beauty__stage {
  width: min(100%, 78rem);
  margin-inline: auto;
}

.dna-beauty__intro {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  margin-bottom: 1.45rem;
  text-align: center;
}

.dna-beauty__intro h2 {
  margin: 0;
  color: var(--lf-vanilla);
  font-family: var(--hero-serif);
  font-size: clamp(2.3rem, 10vw, 3.35rem);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.dna-beauty__intro p:not(.section-kicker) {
  max-width: 72ch;
  margin: 0;
  color: color-mix(in oklab, var(--lf-vanilla) 80%, var(--lf-cloud-blue));
  font-size: 1rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.dna-beauty__intro strong {
  color: var(--lf-vanilla);
  font-weight: 500;
}

.dna-beauty__meaning {
  display: grid;
  gap: 0.95rem;
  width: min(100%, 60rem);
  margin-inline: auto;
  text-align: center;
}

.dna-beauty__meaning h3 {
  margin: 0;
  color: var(--lf-vanilla);
  font-family: var(--sans);
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.dna-beauty__principles {
  display: grid;
  justify-items: center;
  gap: 0.72rem;
}

.dna-beauty__principles p {
  margin: 0 auto;
  color: color-mix(in oklab, var(--lf-vanilla) 78%, var(--lf-cloud-blue));
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.55;
  text-align: center;
  text-wrap: pretty;
}

.dna-beauty__cta {
  margin-top: 0;
}

.dna-beauty__footer {
  display: grid;
  width: min(100%, 78rem);
  justify-items: center;
  margin: 1.3rem auto 0;
}

.dna-beauty__stage {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--lf-vanilla) 16%, transparent);
  border-radius: 0.65rem;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--lf-deep-black) 18%, transparent), transparent),
    color-mix(in oklab, var(--lf-midnight) 92%, var(--lf-deep-black));
}

.dna-beauty__art {
  position: relative;
  display: grid;
  min-height: 24rem;
  place-items: center;
}

.dna-beauty__helix {
  width: min(100%, 15rem);
  height: auto;
  filter: drop-shadow(0 0 1.2rem color-mix(in oklab, var(--lf-velvet-rose) 42%, transparent));
}

.dna-beauty__strand,
.dna-beauty__rungs line {
  fill: none;
  stroke: var(--lf-velvet-rose);
  stroke-linecap: round;
}

.dna-beauty__strand {
  stroke-width: 16;
}

.dna-beauty__strand--second {
  stroke: color-mix(in oklab, var(--lf-velvet-rose) 72%, var(--lf-blush));
  opacity: 0.92;
}

.dna-beauty__rungs line {
  stroke-width: 8;
  opacity: 0.72;
}

.dna-beauty__interaction {
  display: grid;
  align-content: center;
  gap: 0.9rem;
}

.dna-beauty__prompt {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  color: color-mix(in oklab, var(--lf-vanilla) 78%, var(--lf-cloud-blue));
  font-size: 0.875rem;
  line-height: 1.42;
  text-align: center;
  white-space: nowrap;
}

.dna-beauty__nodes {
  display: grid;
  gap: 0.65rem;
  width: min(100%, 24rem);
  margin-inline: auto;
}

.dna-beauty__node {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.65rem 1rem;
  border: 1px solid color-mix(in oklab, var(--lf-blush) 24%, transparent);
  border-radius: 999px;
  color: var(--lf-vanilla);
  background: color-mix(in oklab, var(--lf-midnight) 54%, transparent);
  font: inherit;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  backdrop-filter: blur(0.7rem);
  -webkit-backdrop-filter: blur(0.7rem);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.dna-beauty__node:hover,
.dna-beauty__node:focus-visible,
.dna-beauty__node.is-active {
  border-color: color-mix(in oklab, var(--lf-blush) 56%, transparent);
  background: color-mix(in oklab, var(--lf-velvet-rose) 34%, var(--lf-midnight));
  transform: translateY(-0.08rem);
}

.dna-beauty__node:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--lf-blush) 58%, transparent);
  outline-offset: 3px;
}

.dna-beauty__detail {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  width: min(100%, 24rem);
  min-height: 11rem;
  margin-inline: auto;
  padding: 1rem;
  border: 1px solid color-mix(in oklab, var(--lf-blush) 20%, transparent);
  border-radius: 0.65rem;
  color: var(--lf-vanilla);
  background: color-mix(in oklab, var(--lf-midnight) 66%, transparent);
  backdrop-filter: blur(0.8rem);
  -webkit-backdrop-filter: blur(0.8rem);
}

.dna-beauty__detail p {
  margin: 0;
}

.dna-beauty__detail h3 {
  margin: 0;
  color: var(--lf-vanilla);
  font-family: var(--hero-serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.05;
}

.dna-beauty__detail p {
  color: color-mix(in oklab, var(--lf-vanilla) 82%, var(--lf-cloud-blue));
  font-size: 1rem;
  line-height: 1.55;
}

@media (min-width: 48rem) {
  .dna-beauty {
    padding-block: 5.5rem;
  }

  .dna-beauty__intro h2 {
    font-size: clamp(3.5rem, 5.2vw, 4.7rem);
  }

  .dna-beauty__intro p:not(.section-kicker) {
    font-size: 1.08rem;
  }

  .dna-beauty__prompt {
    font-size: 0.9rem;
  }

  .dna-beauty__stage {
    grid-template-columns: minmax(18rem, 0.9fr) minmax(22rem, 1fr);
    align-items: center;
    padding: 1.4rem;
  }

  .dna-beauty__art {
    min-height: 36rem;
  }

  .dna-beauty__helix {
    width: min(100%, 20rem);
    max-height: 36rem;
  }

  .dna-beauty__interaction {
    justify-items: center;
  }

  .dna-beauty__detail {
    width: min(100%, 24rem);
  }

  .dna-beauty__detail h3 {
    font-size: 2rem;
  }
}

@media (min-width: 64rem) {
  .dna-beauty {
    padding-block: 6rem;
  }

  .dna-beauty__stage {
    gap: 1.5rem;
  }
}

/* Final section spacing and CTA art direction, 2026-08-11 */
.intro-value {
  padding-bottom: clamp(2rem, 4vw, 3.1rem);
}

.intro-value + .services.color-chapter {
  padding-top: clamp(2.2rem, 4.2vw, 3.4rem);
}

/* Jsem Lucie text rule, 2026-08-21 */
.intro-value__story {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.intro-value__narrative {
  width: min(100%, 78rem);
  justify-items: center;
}

.intro-value__narrative p {
  width: min(100%, 78rem);
  text-align: center;
}

/* Contact CTA band rule, 2026-08-19 */
.contact-cta {
  position: relative;
  display: grid;
  min-height: auto;
  place-items: center;
  padding: clamp(2.4rem, 5.5vw, 4.5rem) max(var(--page-gutter), calc((100vw - var(--page-max)) / 2));
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 22%, color-mix(in oklab, var(--lf-blush) 58%, transparent), transparent 22rem),
    radial-gradient(circle at 82% 16%, color-mix(in oklab, var(--lf-cloud-blue) 40%, transparent), transparent 24rem),
    radial-gradient(circle at 76% 78%, color-mix(in oklab, var(--lf-velvet-rose) 34%, transparent), transparent 24rem),
    linear-gradient(135deg, var(--lf-midnight), color-mix(in oklab, var(--lf-velvet-rose) 42%, var(--lf-midnight)) 52%, var(--lf-vanilla));
}

.contact-cta::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(
    180deg,
    color-mix(in oklab, var(--lf-midnight) 18%, transparent),
    color-mix(in oklab, var(--lf-midnight) 34%, transparent)
  );
}

.contact-cta__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}

.contact-cta__media img {
  display: none;
  width: 100%;
  height: 100%;
  margin-left: 0;
  opacity: 1;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.04) contrast(1.02);
}

.contact-cta__panel {
  display: grid;
  width: 100%;
  max-width: var(--page-max);
  align-items: end;
  justify-self: stretch;
  gap: clamp(1rem, 2.4vw, 2rem);
  margin: 0 auto;
  padding: clamp(1.7rem, 3.2vw, 3rem) clamp(1.3rem, 4vw, 3.3rem);
  color: var(--br-text-light);
  text-align: center;
  border: 1px solid rgba(255, 250, 242, 0.42);
  border-radius: clamp(1.2rem, 2.4vw, 2rem);
  background: rgba(38, 29, 44, 0.48);
  box-shadow: 0 1.8rem 4rem rgba(38, 29, 44, 0.18);
  backdrop-filter: blur(1.1rem) saturate(1.18);
  -webkit-backdrop-filter: blur(1.1rem) saturate(1.18);
}

.contact-cta__panel :is(h2, p, .eyebrow) {
  margin-inline: auto;
  color: var(--br-text-light);
  text-align: center;
}

.contact-cta__panel h2 {
  max-width: 21ch;
  font-family: var(--hero-serif);
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.contact-cta__panel p:not(.eyebrow) {
  max-width: 45rem;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.45;
}

.contact-cta__panel .button {
  min-width: max-content;
  margin-inline: auto;
}

@media (min-width: 56rem) {
  .contact-cta__panel {
    justify-items: center;
    text-align: center;
  }

  .contact-cta__panel .eyebrow,
  .contact-cta__panel h2,
  .contact-cta__panel p:not(.eyebrow) {
    margin-inline: auto;
    text-align: center;
  }

  .contact-cta__panel .button {
    align-self: center;
    margin-inline: auto;
  }
}

@media (max-width: 47.98rem) {
  .contact-cta {
    padding: 2.2rem 1rem;
    background:
      radial-gradient(circle at 20% 18%, color-mix(in oklab, var(--lf-blush) 48%, transparent), transparent 16rem),
      radial-gradient(circle at 82% 78%, color-mix(in oklab, var(--lf-velvet-rose) 34%, transparent), transparent 18rem),
      linear-gradient(135deg, var(--lf-midnight), color-mix(in oklab, var(--lf-velvet-rose) 42%, var(--lf-midnight)) 62%, var(--lf-midnight));
  }

  .contact-cta::after {
    background: linear-gradient(0deg, rgba(35, 27, 41, 0.24), transparent 72%);
  }

  .contact-cta__media img {
    display: none;
    width: 100%;
    margin-left: 0;
    object-position: center 28%;
  }

  .contact-cta__panel {
    gap: 0.8rem;
    padding: 1.45rem 1.05rem;
    text-align: center;
  }

  .contact-cta__panel h2 {
    max-width: 13.8ch;
    font-size: clamp(2.15rem, 10.2vw, 2.9rem);
  }

  .contact-cta__panel p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.45;
  }
}

/* Mobile service carousel override, 2026-08-26 */
@media (max-width: 47.98rem) {
  .service-carousel {
    position: relative;
    display: block;
    width: 100%;
  }

  .service-carousel .carousel-controls {
    position: absolute;
    inset: 0 0.45rem;
    z-index: 4;
    display: block;
    padding: 0;
    pointer-events: none;
  }

  .service-carousel .carousel-arrow {
    position: absolute;
    top: clamp(13.5rem, 54vw, 17rem);
    width: 2.85rem;
    height: 2.85rem;
    color: var(--lf-midnight);
    background: color-mix(in oklab, var(--lf-vanilla) 92%, transparent);
    border-color: color-mix(in oklab, var(--lf-midnight) 18%, transparent);
    box-shadow: 0 0.75rem 1.6rem color-mix(in oklab, var(--lf-midnight) 20%, transparent);
    pointer-events: auto;
  }

  .service-carousel [data-carousel-prev] {
    left: 0;
    transform: translateY(-50%);
  }

  .service-carousel [data-carousel-next] {
    right: 0;
    transform: translateY(-50%);
  }

  .service-carousel .carousel-dots {
    position: absolute;
    bottom: 0.85rem;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: auto;
  }

  .service-slide {
    padding-right: clamp(3.75rem, 15vw, 4.6rem);
    padding-left: clamp(3.75rem, 15vw, 4.6rem);
  }
}

/* Services spacing and responsive centering cleanup, 2026-08-26 */
[id] {
  scroll-margin-top: clamp(5.75rem, 9vw, 7.5rem);
}

.section-bridge {
  display: flex;
  justify-content: center;
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  margin: clamp(1.35rem, 3vw, 2.4rem) auto;
}

.section-bridge .button {
  text-align: center;
}

.section-bridge--compact {
  margin-block: clamp(1rem, 2.2vw, 1.8rem);
}

.services.color-chapter {
  padding-bottom: clamp(1.4rem, 3.2vw, 2.6rem);
}

.section-bridge + .care-map,
.section-bridge + .references {
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
}

.care-map {
  margin-bottom: clamp(1.2rem, 3vw, 2.4rem);
}

@media (max-width: 68rem) {
  .service-slide {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .service-slide h3,
  .service-slide > p:not(.service-slide__eyebrow):not(.service-price),
  .service-slide__body,
  .service-price,
  .service-slide__cta {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    text-align: center;
  }

  .service-slide__body {
    width: min(100%, 36rem);
  }

  .service-slide__body p {
    text-align: center;
    text-wrap: balance;
  }

  .service-slide__actions {
    grid-column: 1;
    grid-row: auto;
    width: min(100%, 34rem);
    justify-content: center;
    justify-self: center;
  }
}

@media (max-width: 47.98rem) {
  [id] {
    scroll-margin-top: 5.75rem;
  }

  .services.color-chapter {
    padding-top: clamp(2.6rem, 9vw, 3.6rem);
    padding-bottom: 1.1rem;
  }

  .service-slide {
    align-content: start;
    gap: 0.72rem;
    min-height: auto;
    padding:
      2.05rem
      clamp(1.35rem, 5vw, 2.2rem)
      4.7rem;
  }

  .service-icon {
    margin-bottom: 0.55rem;
  }

  .service-slide h3 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 11vw, 3.05rem);
    line-height: 0.96;
    text-align: center;
  }

  .service-slide__body {
    width: min(100%, 21rem);
    font-size: 0.98rem;
    line-height: 1.48;
    text-align: center;
  }

  .service-slide__body p {
    margin-bottom: 0.68rem;
    text-align: center;
  }

  .service-price {
    margin-top: 0.15rem;
    text-align: center;
  }

  .service-slide__cta {
    width: min(100%, 20rem);
    justify-content: center;
  }

  .service-slide__actions {
    gap: 0.55rem;
    width: min(100%, 21rem);
  }

  .service-slide__actions .button {
    width: 100%;
  }

  .service-carousel .carousel-arrow {
    top: auto;
    bottom: 1rem;
    transform: none;
  }

  .section-bridge {
    margin-block: 0.75rem;
  }

  .section-bridge .button {
    width: min(100%, 19rem);
    justify-content: center;
  }

  .section-bridge + .care-map,
  .section-bridge + .references {
    margin-top: 0.85rem;
  }

  .care-map {
    margin-top: 0.85rem;
    margin-bottom: 0.75rem;
  }
}
