:root {
  --pink: #d91866;
  --pink-bright: #f12c7a;
  --pink-dark: #9b0c43;
  --pink-soft: #ffe4ef;
  --pink-pale: #fff3f7;
  --brown: #28100b;
  --ink: #27161b;
  --muted: #715f65;
  --white: #ffffff;
  --paper: #fffafb;
  --line: rgba(58, 22, 34, 0.13);
  --shadow: 0 24px 70px rgba(83, 15, 43, 0.14);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink-dark);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 14px 24px;
  background: rgba(255, 250, 251, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(45, 12, 25, 0.05);
}

.nav-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(217, 24, 102, 0.2);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(217, 24, 102, 0.11);
}

.brand span {
  display: grid;
  line-height: 1.15;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #4d3940;
  font-size: 0.9rem;
  font-weight: 650;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-place {
  min-height: 46px;
  padding: 11px 19px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--pink);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(217, 24, 102, 0.2);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.main-nav .nav-place svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.main-nav .nav-place:hover,
.main-nav .nav-place:focus-visible {
  background: var(--pink-dark);
  box-shadow: 0 14px 28px rgba(155, 12, 67, 0.25);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 200ms ease;
}

.section {
  padding: 112px 24px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: #ffb7d3;
}

.hero {
  position: relative;
  width: min(calc(100% - 48px), var(--max));
  min-height: 745px;
  margin: 0 auto;
  padding: 68px 0 90px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(45px, 7vw, 95px);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 6%;
  right: -17vw;
  width: 62vw;
  height: 660px;
  border-radius: 54% 0 0 48%;
  background: linear-gradient(145deg, #ffe7f0 0%, #fff7fa 66%, #fbd7e5 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero h1 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.2vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.92;
}

.hero h1 em {
  color: var(--pink);
  font-weight: 400;
}

.hero-intro {
  max-width: 590px;
  margin: 30px 0 0;
  color: #5f4c53;
  font-size: 1.08rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 13px 23px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 200ms ease;
}

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

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(4px);
}

.phone-link:hover .phone-icon,
.phone-link:focus-visible .phone-icon {
  transform: rotate(-7deg) scale(1.04);
}

.button-primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 14px 30px rgba(217, 24, 102, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--pink-dark);
  box-shadow: 0 18px 36px rgba(155, 12, 67, 0.26);
}

.button-secondary {
  color: var(--brown);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(40, 16, 11, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--pink-dark);
  background: var(--white);
  border-color: rgba(217, 24, 102, 0.32);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #675159;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-points span {
  color: var(--pink);
  font-size: 0.68rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-photo-wrap {
  position: absolute;
  inset: 5px 0 0 42px;
  overflow: hidden;
  border: 11px solid rgba(255, 255, 255, 0.8);
  border-radius: 49% 49% 30% 30% / 38% 38% 22% 22%;
  background: var(--pink-soft);
  box-shadow: var(--shadow);
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(40, 16, 11, 0.25));
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 67%;
  transform: scale(1.025);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-visual:hover .hero-photo {
  transform: scale(1.065);
}

.hero-mark {
  position: absolute;
  z-index: 3;
  top: -20px;
  right: -34px;
  width: clamp(135px, 15vw, 196px);
  height: clamp(135px, 15vw, 196px);
  max-width: none;
  padding: 2px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--white);
  clip-path: circle(50% at 50% 50%);
  box-shadow: 0 22px 44px rgba(76, 17, 40, 0.17);
  animation: mark-float 5.5s ease-in-out infinite;
}

.care-note {
  position: absolute;
  z-index: 4;
  right: -30px;
  bottom: 26px;
  min-width: 220px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(217, 24, 102, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(69, 15, 36, 0.17);
  backdrop-filter: blur(12px);
}

.care-note p {
  margin: 0;
  color: #624750;
  font-size: 0.85rem;
  line-height: 1.42;
}

.care-note strong {
  color: var(--brown);
  font-size: 0.98rem;
}

.care-heart {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
}

.hero-bubble {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(217, 24, 102, 0.22);
  border-radius: 50%;
  background: radial-gradient(circle at 33% 28%, rgba(255, 255, 255, 0.95) 0 10%, rgba(255, 190, 216, 0.25) 37%, rgba(217, 24, 102, 0.08) 68%, transparent 70%);
  box-shadow: inset -8px -10px 18px rgba(217, 24, 102, 0.06);
}

.hero-bubble-one {
  top: 9%;
  left: 48%;
  width: 72px;
  height: 72px;
  animation: bubble-float 8s ease-in-out infinite;
}

.hero-bubble-two {
  right: 47%;
  bottom: 8%;
  width: 36px;
  height: 36px;
  animation: bubble-float 6s 1.2s ease-in-out infinite reverse;
}

@keyframes mark-float {
  0%, 100% { transform: rotate(1deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-8px); }
}

@keyframes bubble-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -14px, 0); }
}

.care-ribbon {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--pink);
  transform: rotate(-1.2deg) scale(1.02);
}

.care-ribbon-track {
  width: max-content;
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: ribbon-scroll 28s linear infinite;
}

.care-ribbon-track i {
  font-size: 0.68rem;
  font-style: normal;
  opacity: 0.72;
}

@keyframes ribbon-scroll {
  to { transform: translateX(-50%); }
}

.approach {
  width: min(100%, calc(var(--max) + 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 835px;
}

.section-heading h2,
.services-heading h2,
.transformations-heading h2,
.detail-statement h2,
.location-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.8vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.approach-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-card {
  position: relative;
  min-height: 290px;
  padding: 42px 36px 40px;
  border-right: 1px solid var(--line);
  transition: background 260ms ease, transform 260ms ease;
}

.approach-card:last-child {
  border-right: 0;
}

.approach-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(59, 14, 32, 0.08);
  transform: translateY(-7px);
}

.card-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #c8b9be;
  font-family: var(--serif);
  font-size: 0.85rem;
}

.approach-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--pink);
  background: var(--pink-pale);
  border: 1px solid rgba(217, 24, 102, 0.13);
  border-radius: 50%;
}

.approach-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.approach-card h3,
.service-card h3,
.transformation-caption h3 {
  margin: 28px 0 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.approach-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.services {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--brown);
}

.services::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -130px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 24, 102, 0.26), transparent 67%);
  pointer-events: none;
}

.services-heading,
.services-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.services-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.services-heading > p {
  max-width: 450px;
  margin: 0 0 7px;
  color: #d8c8cd;
}

.services-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 295px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 240ms ease, background 240ms ease, transform 240ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: transform 360ms ease, background 360ms ease;
}

.service-card:hover {
  border-color: rgba(255, 138, 184, 0.45);
  background: rgba(217, 24, 102, 0.12);
  transform: translateY(-6px);
}

.service-card:hover::after {
  background: rgba(217, 24, 102, 0.12);
  transform: scale(1.2);
}

.service-index {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(255, 255, 255, 0.32);
  font-family: var(--serif);
  font-size: 0.85rem;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffc1d9;
  border: 1px solid rgba(255, 192, 216, 0.28);
  border-radius: 50%;
  font-size: 1.3rem;
}

.service-card h3 {
  margin-top: 42px;
  color: var(--white);
  font-size: 1.55rem;
}

.service-card p {
  margin: 0;
  color: #d1c1c6;
  font-size: 0.92rem;
  line-height: 1.7;
}

.transformations {
  width: min(100%, calc(var(--max) + 48px));
  margin: 0 auto;
}

.transformations-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 60px;
}

.transformations-heading h2 em {
  color: var(--pink);
  font-weight: 400;
}

.drag-hint {
  max-width: 340px;
  margin: 0 0 10px auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.drag-hint span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-right: 9px;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-size: 0.92rem;
}

.compare-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 30px;
}

.transformation-card:last-child:nth-child(odd) {
  width: 100%;
  max-width: calc(50% - 15px);
  margin-right: auto;
  margin-left: auto;
  grid-column: 1 / -1;
}

.transformation-card {
  min-width: 0;
}

.comparison {
  --position: 50%;
  position: relative;
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  outline: 1px solid transparent;
  border-radius: 22px;
  background: #eadfe2;
  box-shadow: 0 18px 48px rgba(66, 18, 37, 0.12);
  isolation: isolate;
}

.comparison:focus-within {
  outline: 3px solid rgba(217, 24, 102, 0.42);
  outline-offset: 4px;
}

.compare-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  user-select: none;
}

.compare-before {
  filter: saturate(0.84) brightness(0.96);
}

.compare-before-layer {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-label {
  position: absolute;
  z-index: 4;
  top: 18px;
  padding: 7px 12px;
  color: var(--brown);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 5px 18px rgba(35, 11, 20, 0.11);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.before-label {
  left: 18px;
}

.after-label {
  right: 18px;
  color: var(--white);
  background: rgba(155, 12, 67, 0.88);
}

.compare-line {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(80, 13, 40, 0.1);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-line > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--pink-dark);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 24, 102, 0.14);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(53, 12, 28, 0.2);
  font-size: 1.05rem;
  transform: translate(-50%, -50%);
}

.compare-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}

.mobile-call-bar {
  display: none;
}

.transformation-caption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 5px 0;
}

.transformation-caption h3 {
  margin: 0;
  color: var(--brown);
  font-size: 1.45rem;
}

.transformation-caption span {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.detail-section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 70px;
  padding-right: clamp(35px, 7vw, 90px);
  padding-left: clamp(35px, 7vw, 90px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(55px, 8vw, 120px);
  color: var(--white);
  background: linear-gradient(135deg, #bc1254 0%, #dd1b6b 58%, #ef347f 100%);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(155, 12, 67, 0.24);
}

.detail-statement h2 {
  font-size: clamp(3.2rem, 5vw, 5.5rem);
}

.detail-statement h2 em {
  color: #ffd7e6;
  font-weight: 400;
}

.detail-copy {
  align-self: end;
}

.detail-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.detail-copy .detail-lead {
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.4;
}

.signature-line {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signature-line i {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.32);
}

.signature-line strong {
  color: var(--white);
}

.location {
  width: min(100%, calc(var(--max) + 48px));
  margin: 0 auto;
}

.location-card {
  position: relative;
  min-height: 450px;
  padding: clamp(50px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 65px;
  overflow: hidden;
  border: 1px solid rgba(217, 24, 102, 0.12);
  border-radius: 34px;
  background: linear-gradient(130deg, #fff 0%, #fff4f8 62%, #ffe4ee 100%);
  box-shadow: 0 24px 70px rgba(71, 16, 37, 0.1);
}

.location-card::before,
.location-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(217, 24, 102, 0.13);
  border-radius: 50%;
}

.location-card::before {
  right: -90px;
  bottom: -150px;
  width: 410px;
  height: 410px;
}

.location-card::after {
  right: 50px;
  bottom: -145px;
  width: 300px;
  height: 300px;
}

.location-copy {
  position: relative;
  z-index: 2;
}

.location-copy h2 {
  max-width: 770px;
  font-size: clamp(2.7rem, 4.7vw, 4.7rem);
}

.location-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 25px 0 30px;
  color: var(--muted);
}

.location-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 22px;
}

.location-phone {
  padding: 8px 2px 6px;
  color: var(--pink-dark);
  border-bottom: 1px solid rgba(155, 12, 67, 0.28);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition: color 180ms ease, border-color 180ms ease;
}

.location-phone:hover,
.location-phone:focus-visible {
  color: var(--pink);
  border-color: var(--pink);
}

.location-emblem {
  position: relative;
  z-index: 2;
  width: min(100%, 280px);
  aspect-ratio: 1;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--pink-dark);
  border: 1px solid rgba(217, 24, 102, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 11px rgba(255, 255, 255, 0.65), 0 24px 50px rgba(117, 19, 59, 0.12);
  backdrop-filter: blur(10px);
  animation: emblem-breathe 6s ease-in-out infinite;
}

.location-emblem strong {
  font-family: var(--serif);
  font-size: 7.2rem;
  font-weight: 400;
  line-height: 0.92;
}

.location-emblem span {
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.emblem-top {
  margin-bottom: 7px;
}

.emblem-bottom {
  margin-top: 8px;
}

@keyframes emblem-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

.site-footer {
  padding: 40px 24px 20px;
  color: var(--white);
  background: #1f0e13;
}

.footer-inner,
.footer-bottom {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-inner {
  min-height: 115px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: #bdaeb3;
}

.footer-inner > p {
  margin: 0;
  color: #bdaeb3;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.back-top {
  justify-self: end;
  color: #f5dbe5;
  font-size: 0.83rem;
  font-weight: 700;
}

.back-top span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-left: 9px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.back-top:hover span,
.back-top:focus-visible span {
  background: var(--pink);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8f7f84;
  font-size: 0.72rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay,
.js .reveal-delay-medium {
  transition-delay: 150ms;
}

.js .reveal-delay-small {
  transition-delay: 80ms;
}

@media (max-width: 1100px) {
  .hero {
    gap: 35px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .hero-mark {
    right: -12px;
  }

  .care-note {
    right: -5px;
  }

  .main-nav {
    gap: 21px;
  }

  .services-heading,
  .transformations-heading {
    gap: 45px;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .menu-toggle {
    z-index: 102;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:not(.sr-only):nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:not(.sr-only):nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    padding: 118px 30px 40px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 3px;
    background: rgba(255, 250, 251, 0.98);
    transform: translateX(105%);
    transition: transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 15px 0;
    color: var(--brown);
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 500;
  }

  .main-nav a:not(.nav-place)::after {
    display: none;
  }

  .main-nav .nav-place {
    margin-top: 20px;
    padding: 15px 22px;
    justify-content: center;
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.96rem;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding-top: 55px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero::before {
    top: 48%;
    right: -25vw;
    width: 105vw;
    height: 650px;
  }

  .hero-copy {
    max-width: 730px;
  }

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

  .hero-visual {
    width: min(100%, 610px);
    min-height: 680px;
    margin: 0 auto;
  }

  .hero-photo-wrap {
    left: 0;
  }

  .hero-mark {
    right: -18px;
  }

  .services-heading,
  .transformations-heading {
    grid-template-columns: 1fr;
  }

  .services-heading > p,
  .drag-hint {
    margin-left: 0;
  }

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

  .approach-card:nth-child(2) {
    border-right: 0;
  }

  .approach-card:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

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

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-emblem {
    width: 230px;
    margin: 0;
  }
}

@media (max-width: 650px) {
  html {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    scroll-padding-top: 80px;
  }

  body {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y pinch-zoom;
  }

  main,
  .site-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .section {
    padding: 68px 18px;
  }

  .site-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

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

  .brand small {
    font-size: 0.6rem;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 36px 18px 58px;
    gap: 42px;
    overflow: clip;
  }

  .hero::before {
    top: 51%;
    right: -28%;
    width: 125%;
    height: 560px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13.2vw, 3.7rem);
    line-height: 0.96;
  }

  .hero-intro {
    margin-top: 25px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 14px;
    margin-top: 26px;
  }

  .hero-points li {
    align-items: flex-start;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 450px;
  }

  .hero-photo-wrap {
    inset: 5px 0 0;
    border-width: 7px;
  }

  .hero-mark {
    top: -15px;
    right: 8px;
    width: 108px;
    height: 108px;
    padding: 1px;
    border-width: 4px;
  }

  .care-note {
    right: 12px;
    bottom: -12px;
    min-width: 186px;
    padding: 12px 14px;
  }

  .care-heart {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .hero-bubble-one {
    display: none;
  }

  .care-ribbon-track {
    padding: 11px 0;
    gap: 21px;
    font-size: 0.68rem;
  }

  .care-ribbon {
    transform: none;
    contain: layout paint;
  }

  .approach,
  .transformations,
  .location,
  .services {
    width: 100%;
    max-width: 100%;
  }

  .section-heading h2,
  .services-heading h2,
  .transformations-heading h2,
  .location-copy h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .approach-grid,
  .services-grid,
  .compare-grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .transformation-card,
  .transformation-card:last-child:nth-child(odd) {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    grid-column: auto;
  }

  .approach-grid {
    margin-top: 42px;
  }

  .approach-grid {
    border-bottom: 0;
  }

  .approach-card,
  .approach-card:nth-child(2),
  .approach-card:last-child {
    min-height: 0;
    padding: 33px 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-heading,
  .transformations-heading {
    gap: 28px;
  }

  .services-grid {
    margin-top: 42px;
    gap: 10px;
  }

  .service-card {
    min-height: 0;
    padding: 22px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 0 16px;
  }

  .service-card .service-index {
    top: 20px;
    right: 20px;
  }

  .service-card h3 {
    margin: 0 34px 0 0;
    font-size: 1.38rem;
  }

  .service-card p {
    grid-column: 1 / -1;
    margin-top: 16px;
  }

  .service-card::after {
    width: 130px;
    height: 130px;
    right: -60px;
    bottom: -80px;
  }

  .compare-grid {
    margin-top: 40px;
    gap: 36px;
  }

  .comparison {
    aspect-ratio: 0.86;
    border-radius: 18px;
  }

  .compare-label {
    top: 13px;
    padding: 7px 10px;
  }

  .before-label {
    left: 13px;
  }

  .after-label {
    right: 13px;
  }

  .compare-line > span {
    width: 44px;
    height: 44px;
  }

  .transformation-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .transformation-caption span {
    text-align: left;
  }

  .detail-section {
    width: calc(100% - 28px);
    margin-bottom: 30px;
    padding: 54px 26px;
    gap: 36px;
    border-radius: 26px;
  }

  .detail-statement h2 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .location-card {
    min-height: 0;
    padding: 46px 25px;
    gap: 0;
    border-radius: 24px;
  }

  .location-emblem {
    display: none;
  }

  .location-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .location-phone {
    align-self: center;
    padding-top: 3px;
  }

  .footer-inner {
    padding: 20px 0 35px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .back-top {
    align-self: flex-end;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .site-footer {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 150;
    right: 10px;
    bottom: calc(9px + env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
    max-width: calc(100% - 20px);
    min-height: 64px;
    padding: 9px 10px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink) 0%, #b80d4f 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(87, 9, 41, 0.34);
  }

  .mobile-call-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--pink-dark);
    background: var(--white);
    border-radius: 13px;
  }

  .mobile-call-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .mobile-call-copy {
    min-width: 0;
    display: grid;
    line-height: 1.15;
  }

  .mobile-call-copy small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-call-copy strong {
    overflow: hidden;
    font-size: 0.92rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-call-action {
    padding: 9px 11px;
    color: var(--pink-dark);
    background: var(--white);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
  }
}

@media (max-width: 390px) {
  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 3.15rem);
  }

  .hero-visual {
    min-height: 420px;
  }

  .mobile-call-action {
    display: none;
  }

  .mobile-call-bar {
    grid-template-columns: 44px minmax(0, 1fr);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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