:root {
  color-scheme: light;
  --bg: #fdfaff;
  --bg-soft: #f7f0fc;
  --surface: #ffffff;
  --surface-soft: #fbf5ff;
  --surface-strong: #f1e3f8;
  --text: #25182f;
  --muted: #74697d;
  --muted-strong: #554660;
  --line: #eadff0;
  --accent: #b287cf;
  --accent-strong: #7a5590;
  --accent-soft: #f4eafd;
  --leaf: #6f8057;
  --leaf-soft: #eef3e7;
  --shadow: 0 18px 50px rgb(122 85 144 / 0.11);
  --shadow-strong: 0 28px 80px rgb(122 85 144 / 0.16);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.2, 0.9, 0.2, 1);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --max-width: 1180px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgb(155 123 196 / 0.18), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgb(237 226 248 / 0.8), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, var(--surface-soft) 100%);
  color: var(--text);
  font-family: "Outfit", Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
    pointer-events: none;
  background-image:
    linear-gradient(rgb(108 79 147 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(108 79 147 / 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 78%, transparent);
  animation: grid-drift 28s linear infinite;
}

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

img {
  height: auto;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgb(155 123 196 / 0.38);
  outline-offset: 4px;
}

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

p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  color: var(--text);
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6.35rem);
  font-weight: 800;
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.25rem);
  font-weight: 780;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  font-weight: 760;
  line-height: 1.22;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--text);
  color: var(--surface);
  font-weight: 760;
  transition: transform 180ms ease;
}

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

.page-intro {
  display: none;
}

.js-ready .page-intro {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgb(240 232 251 / 0.92), transparent 22rem),
    linear-gradient(135deg, var(--bg), var(--surface-soft));
  pointer-events: none;
  animation: intro-shell 1250ms var(--ease-out) forwards;
}

.intro-card {
  position: relative;
  display: inline-grid;
  justify-items: center;
  gap: 14px;
  color: var(--accent-strong);
  font-size: clamp(1rem, 3.5vw, 1.28rem);
  font-weight: 850;
  text-align: center;
  animation: intro-card 1120ms var(--ease-spring) forwards;
}

.intro-card::after {
  content: "";
  width: min(220px, 54vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform-origin: center;
  animation: intro-line 980ms var(--ease-out) forwards;
}

.intro-mark {
  width: 82px;
  height: 82px;
  border: 1px solid rgb(230 220 239 / 0.92);
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.intro-complete .page-intro {
  display: none;
}

.page-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgb(251 248 255 / 0.84);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.js-ready .site-header {
  animation: header-drop 720ms var(--ease-out) 620ms both;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
  transform: scaleX(0);
  transform-origin: left center;
}

@supports (animation-timeline: scroll()) {
  .site-header::after {
    animation: scroll-progress linear both;
    animation-timeline: scroll(root);
  }
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 14px 34px rgb(108 79 147 / 0.1);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 0.96rem;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgb(230 220 239 / 0.9);
  border-radius: 14px;
  display: block;
  object-fit: cover;
  object-position: top center;
  flex: 0 0 auto;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.35), 0 10px 24px rgb(108 79 147 / 0.16);
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.nav a {
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-link,
.btn,
.floating-link {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-link::after,
.btn::after,
.floating-link::after {
  content: "";
  position: absolute;
  inset: -140% auto -140% -45%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.38), transparent);
  transform: rotate(18deg) translateX(-120%);
  transition: transform 620ms var(--ease-out);
  pointer-events: none;
}

.header-link:hover::after,
.btn:hover::after,
.floating-link:hover::after {
  transform: rotate(18deg) translateX(420%);
}

.header-link,
.btn-secondary,
.floating-link {
  border-color: var(--line);
  background: rgb(255 255 255 / 0.74);
  color: var(--accent-strong);
}

.header-link:hover,
.btn-secondary:hover,
.floating-link:hover {
  border-color: rgb(155 123 196 / 0.42);
  background: var(--accent-soft);
}

.header-link-primary,
.btn-primary,
.floating-link-accent {
  background: var(--accent-strong);
  color: #ffffff;
  box-shadow: 0 16px 30px rgb(108 79 147 / 0.24);
}

.header-link-primary:hover,
.btn-primary:hover,
.floating-link-accent:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.nav a:active,
.btn:active,
.header-link:active,
.floating-link:active {
  transform: translateY(1px);
}

.btn-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 2.5px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(70px, 7vw, 104px) 0 clamp(62px, 7vw, 92px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-line {
  display: block;
}

.hero-lead {
  max-width: 54ch;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
  line-height: 1.58;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.hero-trust span,
.about-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--surface);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 760;
}

.hero-actions,
.booking-actions,
.map-actions,
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.js-ready .hero-copy .eyebrow,
.js-ready .hero-copy h1,
.js-ready .hero-copy .hero-lead,
.js-ready .hero-copy .hero-trust,
.js-ready .hero-copy .hero-actions {
  opacity: 0;
  transform: translateY(18px);
}

.js-ready .hero-copy.visible .eyebrow,
.js-ready .hero-copy.visible h1,
.js-ready .hero-copy.visible .hero-lead,
.js-ready .hero-copy.visible .hero-trust,
.js-ready .hero-copy.visible .hero-actions {
  animation: hero-stagger 720ms var(--ease-out) forwards;
}

.js-ready .hero-copy.visible h1 {
  animation-delay: 120ms;
}

.js-ready .hero-copy.visible .hero-lead {
  animation-delay: 220ms;
}

.js-ready .hero-copy.visible .hero-trust {
  animation-delay: 320ms;
}

.js-ready .hero-copy.visible .hero-actions {
  animation-delay: 420ms;
}

.js-ready .hero-trust span {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.js-ready .hero-copy.visible .hero-trust span {
  animation: chip-pop 520ms var(--ease-spring) forwards;
}

.js-ready .hero-copy.visible .hero-trust span:nth-child(2) {
  animation-delay: 80ms;
}

.js-ready .hero-copy.visible .hero-trust span:nth-child(3) {
  animation-delay: 160ms;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow-strong);
}

.intro-complete .hero-visual.visible {
  animation: soft-float 7s ease-in-out infinite;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgb(255 255 255 / 0.58);
  border-radius: 26px;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 58% center;
}

.hero-note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  border: 1px solid rgb(255 255 255 / 0.56);
  border-radius: 22px;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  background: rgb(255 255 255 / 0.84);
  color: var(--text);
  box-shadow: 0 16px 36px rgb(33 23 46 / 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: note-float 5.8s ease-in-out 1.2s infinite;
}

.hero-note span {
  color: var(--muted-strong);
  font-weight: 700;
}

.proof-strip {
  padding: 0 0 clamp(56px, 6vw, 86px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid div,
.price-notes p,
.legal-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 0.78);
  box-shadow: var(--shadow);
}

.proof-grid div {
  padding: 24px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.proof-grid div:hover {
  transform: translateY(-3px);
  border-color: rgb(155 123 196 / 0.42);
  box-shadow: var(--shadow-strong);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.proof-grid span {
  color: var(--muted);
}

.service-marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  background: rgb(255 255 255 / 0.42);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(32px, 6vw, 78px);
  padding: 16px 0;
  color: var(--accent-strong);
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 850;
  animation: marquee 36s linear infinite;
}

.service-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  white-space: nowrap;
}

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

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

@keyframes intro-shell {
  0%,
  68% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes intro-card {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
    filter: blur(10px);
  }

  42%,
  72% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    filter: blur(5px);
  }
}

@keyframes intro-line {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }

  44%,
  76% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0.62);
    opacity: 0;
  }
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

@keyframes hero-stagger {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }

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

@keyframes chip-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

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

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes note-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes scroll-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.section {
  padding: clamp(66px, 8vw, 112px) 0;
}

.section-copy {
  max-width: 720px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-copy p,
.about-content p,
.booking-panel p,
.booking-copy p,
.legal p {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
}

.about-image {
  position: relative;
}

.about-tools {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-strong);
}

.about-avatar {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: min(42%, 210px);
  aspect-ratio: 640 / 767;
  border: 8px solid var(--bg);
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.about-content {
  max-width: 680px;
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.services {
  background: linear-gradient(180deg, transparent, rgb(240 232 251 / 0.72), transparent);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  grid-column: span 6;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before,
.booking-panel::after,
.contact-card::before,
.contact-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 8%, rgb(255 255 255 / 0.52), transparent 24%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity 260ms ease, transform 780ms var(--ease-out);
  pointer-events: none;
}

.service-card:hover::before,
.booking-panel:hover::after,
.contact-card:hover::before,
.contact-map:hover::before {
  opacity: 1;
  transform: translateX(58%);
}

.service-card-featured {
  grid-column: span 6;
  background:
    linear-gradient(180deg, rgb(240 232 251 / 0.72), transparent 52%),
    var(--surface);
  border-color: rgb(155 123 196 / 0.35);
}

.service-card:nth-child(3) {
  grid-column: span 12;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  grid-template-rows: none;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgb(155 123 196 / 0.36);
  box-shadow: var(--shadow-strong);
}

.service-image {
  height: 300px;
  overflow: hidden;
  background: var(--surface-strong);
}

.service-card:nth-child(3) .service-image {
  height: 100%;
  min-height: 360px;
}

.service-image-contain {
  display: grid;
  place-items: center;
  padding: 16px;
}

.service-card img,
.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms ease, filter 520ms ease;
}

.service-card:hover img,
.about-image:hover img,
.hero-visual:hover img,
.media-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
}

.service-image-contain img,
.media-tile-contain img {
  height: auto;
  object-fit: contain;
}

.service-card:hover .service-image-contain img,
.media-tile-contain:hover img {
  transform: none;
  filter: none;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.4vw, 38px);
}

.service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.service-card-head span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--accent-strong);
  color: #ffffff;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.service-card small {
  margin-top: auto;
  color: var(--muted);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.price-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.price-notes p {
  margin: 0;
  padding: 18px 20px;
  color: var(--muted);
  font-size: 0.96rem;
  box-shadow: none;
}

.experience-chapter {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgb(240 232 251 / 0.8), transparent 28rem),
    linear-gradient(180deg, var(--surface), var(--bg));
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.experience-copy {
  max-width: 660px;
}

.experience-copy h2 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 3.85vw, 4.15rem);
  line-height: 1.08;
}

.experience-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.scrub-word {
  display: inline;
  opacity: 1;
}

.experience-media {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  justify-self: end;
  width: min(100%, 560px);
  margin-right: clamp(0px, 2vw, 34px);
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 10px;
  background: rgb(255 255 255 / 0.78);
  box-shadow: var(--shadow);
}

.media-tile {
  position: relative;
  margin: 0;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--surface-soft);
  box-shadow: none;
}

.media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.18), transparent 38%, rgb(108 79 147 / 0.12));
  opacity: 0;
  transition: opacity 420ms ease;
  pointer-events: none;
}

.media-tile:hover::after {
  opacity: 1;
}

.media-tile-large {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  display: grid;
  place-items: center;
}

.media-tile-large img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.media-tile-small {
  grid-column: 8 / -1;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  justify-self: stretch;
  margin-top: 0;
  border: 0;
}

.media-tile-small img {
  height: 100%;
  object-fit: cover;
}

.media-tile-contain {
  display: grid;
  place-items: center;
  padding: 14px;
}

.reviews {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.34), rgb(244 234 253 / 0.62)),
    radial-gradient(circle at 16% 28%, rgb(238 243 231 / 0.9), transparent 28rem);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 16px;
}

.review-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.9), rgb(255 255 255 / 0.72)),
    var(--surface-soft);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.review-card::before {
  content: "“";
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgb(178 135 207 / 0.42);
  box-shadow: var(--shadow-strong);
}

.review-card p {
  margin: 0;
  color: var(--muted-strong);
}

.review-card strong {
  color: var(--text);
  font-size: 0.98rem;
}

.booking {
  padding-top: clamp(44px, 6vw, 84px);
  background:
    linear-gradient(180deg, rgb(253 250 255 / 0.45), rgb(255 255 255 / 0.74)),
    radial-gradient(circle at 82% 20%, rgb(244 234 253 / 0.92), transparent 28rem);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
}

.booking-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.booking-copy h2 {
  margin-bottom: 18px;
}

.booking-contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.booking-contact-strip a,
.booking-contact-strip span {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgb(255 255 255 / 0.78);
  color: var(--muted-strong);
  font-weight: 800;
  box-shadow: 0 12px 28px rgb(122 85 144 / 0.08);
}

.booking-contact-strip a {
  color: var(--accent-strong);
}

.booking-side-notes {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.booking-side-notes article {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: rgb(255 255 255 / 0.76);
  box-shadow: 0 14px 34px rgb(122 85 144 / 0.08);
}

.booking-side-notes h3 {
  margin-bottom: 12px;
  font-size: 1.04rem;
}

.booking-side-notes ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted-strong);
  font-weight: 700;
}

.booking-side-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.appointment-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 40px);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.96), rgb(255 255 255 / 0.82)),
    url("assets/img/care-tools.jpg") center / cover;
  box-shadow: var(--shadow-strong);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.appointment-form label,
.appointment-form fieldset {
  min-width: 0;
}

.appointment-form label,
.appointment-form legend {
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.appointment-form input,
.appointment-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgb(255 255 255 / 0.9);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.7);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.appointment-form textarea {
  resize: vertical;
  min-height: 116px;
}

.appointment-form input:hover,
.appointment-form textarea:hover {
  border-color: rgb(178 135 207 / 0.48);
}

.appointment-form input:focus,
.appointment-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgb(178 135 207 / 0.16);
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
  color: rgb(116 105 125 / 0.68);
}

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

.appointment-form fieldset {
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 16px;
  background: rgb(251 245 255 / 0.72);
}

.appointment-form legend {
  padding: 0 8px;
}

.choice,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.choice {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: rgb(255 255 255 / 0.82);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.choice:hover {
  border-color: rgb(111 128 87 / 0.34);
  background: var(--leaf-soft);
  transform: translateY(-2px);
}

.choice input,
.consent input {
  width: auto;
  flex: 0 0 auto;
  margin: 4px 0 0;
  accent-color: var(--accent-strong);
}

.choice span {
  display: grid;
  gap: 2px;
  line-height: 1.35;
}

.choice strong {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

.consent {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-status {
  min-height: 1.4em;
  margin: -4px 0 0;
  color: var(--leaf);
  font-size: 0.94rem;
  font-weight: 800;
}

.booking-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.95), rgb(255 255 255 / 0.72)),
    url("assets/img/care-tools.jpg") center / cover;
  box-shadow: var(--shadow-strong);
}

.booking-panel h2 {
  margin-bottom: 10px;
}

.booking-panel p {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  align-items: stretch;
  gap: clamp(22px, 5vw, 52px);
}

.contact-card,
.contact-map {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: clamp(26px, 4vw, 42px);
}

address {
  margin-bottom: 24px;
  color: var(--muted);
  font-style: normal;
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

dd {
  margin: 2px 0 0;
  color: var(--text);
  font-weight: 780;
}

.contact-map {
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  min-height: 460px;
  border: 0;
}

.map-actions {
  border-top: 1px solid var(--line);
  padding: 16px;
}

.location-gallery {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.36), rgb(238 243 231 / 0.58)),
    radial-gradient(circle at 14% 18%, rgb(238 243 231 / 0.9), transparent 30rem);
}

.location-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(16px, 3vw, 28px);
}

.location-photo {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.location-photo-offset {
  margin-top: clamp(34px, 7vw, 76px);
}

.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms ease, filter 520ms ease;
}

.location-photo:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
}

.legal {
  padding-top: 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-grid > div {
  padding: clamp(22px, 3vw, 30px);
}

.legal h2 {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.consent a {
  color: var(--accent-strong);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.8fr) minmax(220px, 0.9fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(34px, 6vw, 64px) 0 26px;
}

.footer-brand p,
.footer-contact p,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-brand .brand {
  font-size: 1rem;
}

.footer-nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav strong,
.footer-contact strong {
  margin-bottom: 4px;
}

.footer-nav a,
.footer-contact a {
  color: var(--muted-strong);
  font-weight: 700;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent-strong);
}

.footer-social {
  margin-top: 6px;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  display: grid;
  justify-items: center;
  gap: 6px;
  padding-top: 22px;
  font-size: 0.92rem;
  text-align: center;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  gap: 10px;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.footer-visible .floating-actions {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}

.floating-link {
  min-width: 112px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

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

.js-ready .reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 740ms var(--ease-out),
    filter 740ms var(--ease-out),
    transform 740ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.js-ready .reveal-left {
  transform: translate3d(-34px, 20px, 0) scale(0.985);
}

.js-ready .reveal-right {
  transform: translate3d(34px, 20px, 0) scale(0.985);
}

.js-ready .reveal-scale {
  transform: translate3d(0, 22px, 0) scale(0.96);
}

.js-ready .reveal-card {
  transform: translate3d(0, 34px, 0) rotateX(4deg) scale(0.985);
  transform-origin: center bottom;
}

.js-ready .reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.proof-grid .reveal:nth-child(2),
.service-grid .reveal:nth-child(2),
.price-notes p:nth-child(2) {
  --reveal-delay: 90ms;
}

.proof-grid .reveal:nth-child(3),
.service-grid .reveal:nth-child(3),
.price-notes p:nth-child(3) {
  --reveal-delay: 180ms;
}

.motion-image {
  will-change: transform;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand span:last-child {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions {
    display: none;
  }

  .nav {
    justify-content: end;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .experience-grid,
  .contact-grid,
  .booking-layout,
  .booking-panel,
  .legal-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .proof-grid,
  .price-notes,
  .location-photo-grid {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }

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

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

  .service-grid,
  .service-card,
  .service-card-featured,
  .service-card:nth-child(3) {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(3) .service-image {
    height: 300px;
    min-height: 300px;
  }

  .booking-actions {
    justify-content: flex-start;
  }

  .experience-copy,
  .experience-copy h2 {
    max-width: 720px;
  }

  .experience-media {
    justify-self: start;
    width: min(100%, 640px);
  }

  .location-photo-offset {
    margin-top: 0;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  html {
    scroll-padding-top: 84px;
  }

  body {
    padding-bottom: 92px;
  }

  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    min-height: var(--header-height);
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand span:last-child {
    max-width: min(58vw, 230px);
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 12px auto;
    border: 1px solid var(--line);
    border-radius: 24px;
    display: grid;
    justify-content: stretch;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    background: var(--surface);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

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

  .nav a {
    display: block;
    width: 100%;
    border-radius: 16px;
    padding: 13px 14px;
    background: var(--surface-soft);
    color: var(--text);
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.35rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.35rem);
    line-height: 1.08;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  .hero {
    padding: 42px 0 54px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 320px;
  }

  .hero-visual {
    border-radius: 28px;
  }

  .hero-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 18px;
    padding: 13px 14px;
  }

  .section {
    padding: 60px 0;
  }

  .proof-strip {
    padding-bottom: 52px;
  }

  .service-marquee {
    display: none;
  }

  .service-image,
  .service-card:nth-child(3) .service-image {
    height: 230px;
    min-height: 230px;
  }

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

  .service-card-body,
  .contact-card,
  .legal-grid > div {
    padding: 22px;
  }

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

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: auto;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-avatar {
    right: 14px;
    bottom: 14px;
    width: min(38%, 170px);
    border-width: 6px;
  }

  .experience-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.35rem);
    line-height: 1.08;
  }

  .experience-media {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .media-tile-large,
  .media-tile-small {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
    border: 0;
  }

  .media-tile-large {
    aspect-ratio: auto;
  }

  .media-tile-small {
    aspect-ratio: 1.45 / 1;
  }

  .booking-panel,
  .appointment-form,
  .contact-card,
  .contact-map,
  .legal-grid > div,
  .proof-grid div,
  .service-card,
  .media-tile,
  .location-photo {
    border-radius: 24px;
  }

  .location-photo {
    aspect-ratio: 4 / 4.8;
  }

  .contact-map iframe {
    min-height: 340px;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px;
    background: rgb(255 255 255 / 0.88);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .floating-link {
    min-width: 0;
    min-height: 46px;
    box-shadow: none;
    background: transparent;
  }

  .floating-link-accent {
    background: var(--accent-strong);
  }
}

@media (max-width: 420px) {
  .brand span:last-child {
    max-width: 174px;
  }

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

  .hero-trust span {
    width: max-content;
    max-width: 100%;
  }
}

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

  .js-ready .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .js-ready .hero-copy .eyebrow,
  .js-ready .hero-copy h1,
  .js-ready .hero-copy .hero-lead,
  .js-ready .hero-copy .hero-trust,
  .js-ready .hero-copy .hero-actions,
  .js-ready .hero-trust span {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header,
  .floating-actions,
  .hero-note {
    background: var(--surface);
  }
}
