:root {
  --ink: #050505;
  --soft-ink: #1d1d1f;
  --muted: #696b70;
  --paper: #f5f5f2;
  --white: #ffffff;
  --line: rgba(5, 5, 5, 0.13);
  --line-light: rgba(255, 255, 255, 0.2);
  --accent: #5a3a85;
  --accent-strong: #432a66;
  --accent-ink: #ffffff;
  --accent-2: #1065aa;
  --warm: #a66a39;
  --nav-bg: rgba(5, 5, 5, 0.84);
  --nav-mark-bg: rgba(255, 255, 255, 0.1);
  --nav-hover-bg: rgba(255, 255, 255, 0.12);
  --hero-card-bg: rgba(8, 8, 10, 0.78);
  --button-hover: #e8e8e4;
  --star: #f2b400;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

html[data-palette="silkens"] {
  --ink: #0b0b0d;
  --soft-ink: #1b1b20;
  --muted: #6d6e73;
  --paper: #f4f4f2;
  --white: #ffffff;
  --line: rgba(11, 11, 13, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --accent: #5b4778;
  --accent-strong: #362a47;
  --accent-ink: #ffffff;
  --accent-2: #4a4a50;
  --warm: #5f5d66;
  --nav-bg: rgba(8, 8, 10, 0.9);
  --nav-mark-bg: rgba(91, 71, 120, 0.94);
  --nav-hover-bg: rgba(255, 255, 255, 0.13);
  --hero-card-bg: rgba(8, 8, 10, 0.78);
  --button-hover: #e9e7ed;
  --star: #f2b400;
}

html[data-palette="coast"] {
  --ink: #061923;
  --soft-ink: #14313d;
  --muted: #607078;
  --paper: #eef5f4;
  --white: #ffffff;
  --line: rgba(6, 25, 35, 0.14);
  --line-light: rgba(255, 255, 255, 0.22);
  --accent: #0d6f80;
  --accent-strong: #084b58;
  --accent-ink: #ffffff;
  --accent-2: #2a9ba8;
  --warm: #b87934;
  --nav-bg: rgba(6, 25, 35, 0.88);
  --nav-mark-bg: rgba(13, 111, 128, 0.72);
  --nav-hover-bg: rgba(255, 255, 255, 0.13);
  --hero-card-bg: rgba(8, 8, 10, 0.78);
  --button-hover: #dfecea;
  --star: #f2b400;
}

html[data-palette="forest"] {
  --ink: #071512;
  --soft-ink: #183029;
  --muted: #637066;
  --paper: #f2f4ee;
  --white: #ffffff;
  --line: rgba(7, 21, 18, 0.14);
  --line-light: rgba(255, 255, 255, 0.22);
  --accent: #0e5b43;
  --accent-strong: #083d2d;
  --accent-ink: #ffffff;
  --accent-2: #83743b;
  --warm: #9a6a2f;
  --nav-bg: rgba(7, 21, 18, 0.88);
  --nav-mark-bg: rgba(14, 91, 67, 0.75);
  --nav-hover-bg: rgba(255, 255, 255, 0.13);
  --hero-card-bg: rgba(8, 8, 10, 0.78);
  --button-hover: #e2e9df;
  --star: #f2b400;
}

html[data-palette="clay"] {
  --ink: #211511;
  --soft-ink: #3a241d;
  --muted: #735f56;
  --paper: #f5f0e9;
  --white: #fffaf4;
  --line: rgba(33, 21, 17, 0.14);
  --line-light: rgba(255, 250, 244, 0.24);
  --accent: #7b3e2d;
  --accent-strong: #5b2b1f;
  --accent-ink: #ffffff;
  --accent-2: #0e5d68;
  --warm: #b56b35;
  --nav-bg: rgba(33, 21, 17, 0.88);
  --nav-mark-bg: rgba(123, 62, 45, 0.78);
  --nav-hover-bg: rgba(255, 250, 244, 0.14);
  --hero-card-bg: rgba(8, 8, 10, 0.78);
  --button-hover: #eadfd5;
  --star: #f2b400;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.gallery-page {
  background: var(--ink);
  color: var(--white);
}

a {
  color: inherit;
}

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

p,
li,
summary {
  font-size: 16px;
  line-height: 1.62;
}

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

.skip-link {
  position: fixed;
  left: 14px;
  top: -70px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 14px;
}

.floating-nav {
  position: fixed;
  left: 50%;
  top: max(10px, env(safe-area-inset-top));
  z-index: 70;
  width: min(calc(100% - 20px), 730px);
  transform: translateX(-50%);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  max-width: 100%;
  min-height: 52px;
  margin: 0 auto;
  padding: 6px;
  overflow-x: auto;
  background: var(--nav-bg);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  contain: layout paint;
  scrollbar-width: none;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.floating-nav.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.back-nav {
  position: fixed;
  left: max(10px, env(safe-area-inset-left));
  top: max(10px, env(safe-area-inset-top));
  z-index: 70;
}

.back-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 6px;
  color: var(--white);
  text-decoration: none;
  background: var(--nav-bg);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.back-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--nav-mark-bg);
  border-radius: 12px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.back-pill:hover,
.back-pill:focus {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.back-pill:hover span,
.back-pill:focus span {
  background: var(--accent);
  color: var(--accent-ink);
}

.nav-shell::-webkit-scrollbar {
  display: none;
}

.nav-mark,
.nav-shell a {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  line-height: 1;
  text-decoration: none;
  transform: translateZ(0);
  -webkit-tap-highlight-color: transparent;
}

.nav-mark:active,
.nav-shell a:active {
  transform: translateZ(0);
}

.nav-mark {
  width: 38px;
  border-radius: 12px;
  background: var(--nav-mark-bg);
  font-size: 15px;
  font-weight: 950;
}

.nav-shell a {
  padding: 0 13px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 850;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.nav-shell a:hover,
.nav-shell a:focus {
  background: var(--nav-hover-bg);
  color: var(--white);
}

.nav-shell a[aria-current="page"] {
  color: var(--accent-ink);
}

.nav-shell a[aria-current="page"]:hover,
.nav-shell a[aria-current="page"]:focus {
  background: transparent;
}

.nav-active-indicator {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: var(--nav-active-width, 38px);
  height: var(--nav-active-height, 38px);
  border-radius: 12px;
  background: var(--accent);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--nav-active-x, 6px), var(--nav-active-y, 6px), 0);
  transition:
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    width 340ms cubic-bezier(0.22, 1, 0.36, 1),
    height 340ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    background-color 220ms ease;
}

.nav-shell.has-active .nav-active-indicator {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .nav-shell,
  .nav-shell a,
  .nav-active-indicator {
    transition: none;
  }

  .hero-media picture {
    transform: none;
    will-change: auto;
  }
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media picture {
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  filter:
    hue-rotate(var(--hero-hue, 0deg))
    saturate(var(--hero-saturation, 0))
    brightness(var(--hero-brightness, 0.96))
    contrast(var(--hero-contrast, 1.14));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.38)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.1) 44%, rgba(0, 0, 0, 0.48));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1420px, calc(100% - 28px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 92px 0 22px;
  display: grid;
  align-content: end;
  gap: 22px;
}

.hero-copy {
  max-width: 1080px;
  container-type: inline-size;
}

.eyebrow,
.section-kicker,
.card-kicker {
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 8px 0 14px;
  max-width: none;
  font-size: clamp(54px, 10vw, 152px);
  font-size: clamp(54px, 12.5cqw, 152px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.4vw, 22px);
  line-height: 1.45;
}

.hero-title-word {
  color: inherit;
  transition: color 180ms ease;
}

.hero-title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}

.hero-accent {
  color: var(--accent);
  color: color-mix(in srgb, var(--accent) 72%, white);
  text-shadow: 0 1px 28px rgba(0, 0, 0, 0.38);
}

html:not([data-hero-title-accent]) .hero-title-action,
html[data-hero-title-accent="action"] .hero-title-action {
  color: var(--accent);
  color: color-mix(in srgb, var(--accent) 72%, white);
  text-shadow: 0 1px 28px rgba(0, 0, 0, 0.38);
}

html[data-hero-title-accent="outcome"] .hero-title-outcome {
  color: var(--accent);
  color: color-mix(in srgb, var(--accent) 72%, white);
  text-shadow: 0 1px 28px rgba(0, 0, 0, 0.38);
}

.hero-lead .hero-accent {
  font-weight: 850;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.button:hover,
.button:focus {
  background: var(--button-hover);
}

.button.dark {
  background: var(--accent);
  color: var(--accent-ink);
}

.button.dark:hover,
.button.dark:focus {
  background: var(--accent-strong);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
}

.hero-card {
  width: min(100%, 330px);
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--hero-card-bg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card .image-frame {
  margin-bottom: 16px;
}

.hero-card .image-frame img {
  filter:
    hue-rotate(var(--card-image-hue, 0deg))
    saturate(var(--card-image-saturation, 1))
    brightness(var(--card-image-brightness, 1))
    contrast(var(--card-image-contrast, 1));
}

.hero-card h2 {
  margin: 6px 0 14px;
  font-size: 28px;
  line-height: 1;
}

.hero-card p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 15px;
}

.hero-meta span {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.hero-meta strong {
  color: var(--white);
  font-size: 13px;
}

.hero-card .button {
  width: 100%;
  background: var(--accent);
  color: var(--accent-ink);
}

.hero-card .button:hover,
.hero-card .button:focus {
  background: var(--accent-strong);
}

.section {
  scroll-margin-top: 0;
  padding: clamp(62px, 10vw, 128px) 0;
  background: var(--paper);
}

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

.section.black {
  background: var(--ink);
  color: var(--white);
}

.section.flush {
  padding-top: 0;
}

.wrap {
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
}

.wide-wrap {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.mega-heading {
  margin-bottom: 16px;
  font-size: clamp(40px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.48;
}

.black .section-heading p,
.black .muted {
  color: rgba(255, 255, 255, 0.68);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(20px, 5vw, 74px);
  align-items: center;
}

.intro-grid > .image-frame {
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.intro-copy h2 {
  font-size: clamp(42px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

.intro-copy p {
  color: var(--muted);
  font-size: 18px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-strip div {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.stat-strip div:last-child {
  border-right: 0;
}

.stat-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
}

.stat-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 950;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.98;
  letter-spacing: 0;
}

.service-heading {
  min-height: 126px;
}

.service-duration {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: end;
  gap: 7px;
  margin: 2px 0;
}

.price strong {
  font-size: clamp(42px, 6vw, 62px);
  line-height: 0.9;
}

.price span {
  padding-bottom: 7px;
  color: var(--muted);
  font-weight: 800;
}

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

.blocks {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.block-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 850;
}

@media (min-width: 921px) {
  .service-card {
    display: grid;
    grid-template-rows:
      42px
      minmax(144px, auto)
      minmax(86px, auto)
      minmax(300px, 1fr)
      auto
      auto;
    align-content: stretch;
  }

  .service-card > p,
  .blocks {
    margin: 0;
  }

  .price {
    align-self: start;
  }

  .blocks {
    align-self: end;
  }

  .service-card .button {
    align-self: end;
  }
}

@supports (grid-template-rows: subgrid) {
  @media (min-width: 921px) {
    .service-grid {
      grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
      align-items: stretch;
    }

    .service-card {
      grid-row: span 6;
      grid-template-rows: subgrid;
    }
  }
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.82fr);
  gap: 12px;
  align-items: center;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.media-grid.reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.68fr);
  width: min(100%, 1120px);
  align-items: start;
}

.media-stack {
  display: grid;
  align-content: start;
  gap: 12px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius);
  background-image: var(--lqip, var(--silkens-empty-lqip));
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.image-frame::after {
  content: none;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
  filter: blur(18px);
  transform: scale(1.08);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.image-frame.tall picture,
.image-frame.medium picture,
.image-frame.short picture,
.image-frame.square picture {
  position: absolute;
  inset: 0;
}

.image-frame.tall {
  min-height: 520px;
}

.image-frame.medium {
  min-height: 310px;
}

.image-frame.short {
  min-height: 220px;
}

.image-frame.square {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.treatment-layout {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 12px;
}

.treatment-layout .image-frame.square {
  width: 100%;
}

.hero .hero-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  border-radius: 0;
}

.hero-card .image-frame.short {
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
}

.caption-card {
  padding: clamp(22px, 4vw, 40px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.caption-card.light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.caption-card h3 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.98;
}

.caption-card p {
  color: rgba(255, 255, 255, 0.7);
}

.caption-card.light p {
  color: var(--muted);
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.9fr);
  align-items: start;
  gap: 12px;
}

.location-panel .media-stack {
  width: 100%;
  max-width: 540px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-panel .image-frame.square {
  width: 100%;
  min-height: 0;
}

.location-details {
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list span {
  color: var(--muted);
  font-weight: 800;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stars {
  display: flex;
  gap: 4px;
  height: 18px;
}

.stars i {
  display: block;
  width: 15px;
  height: 15px;
  background: #f2b400;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.review-card blockquote {
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.5;
}

.review-card footer {
  margin-top: auto;
  color: var(--muted);
  font-weight: 850;
}

.review-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(22px, 4vw, 42px);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  background: transparent;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--ink);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.1;
  list-style: none;
}

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

.faq-list details p {
  max-width: 760px;
  color: var(--muted);
}

.outdoors-preview {
  position: relative;
  scroll-margin-top: 0;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.outdoors-preview .image-frame,
.outdoors-preview picture,
.outdoors-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.outdoors-preview img {
  object-fit: cover;
}

.outdoors-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.8));
}

.outdoors-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
  padding: 88px 0;
}

.booking-panel {
  display: grid;
  gap: 12px;
}

.booking-copy {
  padding: clamp(26px, 5vw, 56px);
  border-radius: var(--radius);
}

.booking-copy {
  background: var(--ink);
  color: var(--white);
}

.booking-copy h2,
.outdoors-content h2 {
  margin-bottom: 18px;
  font-size: clamp(48px, 9vw, 118px);
  line-height: 0.9;
}

.booking-copy p,
.outdoors-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.booking-link-card {
  display: grid;
  justify-items: start;
  gap: clamp(14px, 3vw, 22px);
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.booking-link-card h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.booking-link-card .button {
  min-width: min(100%, 260px);
}

.site-footer {
  padding: 28px 0 72px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-light);
  padding-top: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-inner a {
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.footer-inner .social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}

.social-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="dark"] body {
  background: var(--ink);
  color: var(--white);
}

html[data-theme="dark"] .section,
html[data-theme="dark"] .section.white {
  background: var(--ink);
  color: var(--white);
}

html[data-theme="dark"] .section.black,
html[data-theme="dark"] .site-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.76);
}

html[data-theme="dark"] .service-card,
html[data-theme="dark"] .review-card,
html[data-theme="dark"] .location-details,
html[data-theme="dark"] .caption-card.light,
html[data-theme="dark"] .booking-link-card {
  background: #121214;
  background: color-mix(in srgb, var(--ink) 88%, white);
  color: var(--white);
  border-color: var(--line-light);
}

html[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .intro-copy p,
html[data-theme="dark"] .service-duration,
html[data-theme="dark"] .price span,
html[data-theme="dark"] .service-card p,
html[data-theme="dark"] .stat-strip span,
html[data-theme="dark"] .detail-list span,
html[data-theme="dark"] .review-card footer,
html[data-theme="dark"] .faq-list details p,
html[data-theme="dark"] .caption-card.light p {
  color: rgba(255, 255, 255, 0.66);
}

html[data-theme="dark"] .review-card blockquote,
html[data-theme="dark"] .faq-list summary {
  color: var(--white);
}

html[data-theme="dark"] .stat-strip,
html[data-theme="dark"] .stat-strip div,
html[data-theme="dark"] .block-row,
html[data-theme="dark"] .detail-list,
html[data-theme="dark"] .detail-list li,
html[data-theme="dark"] .faq-list details,
html[data-theme="dark"] .faq-list details:last-child,
html[data-theme="dark"] .footer-inner {
  border-color: var(--line-light);
}

html[data-theme="dark"] .button {
  background: var(--white);
  color: var(--ink);
}

html[data-theme="dark"] .button:hover,
html[data-theme="dark"] .button:focus {
  background: var(--button-hover);
}

html[data-theme="dark"] .button.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

html[data-theme="dark"] .button.ghost:hover,
html[data-theme="dark"] .button.ghost:focus {
  background: var(--nav-hover-bg);
}

html[data-theme="dark"] .button.dark,
html[data-theme="dark"] .hero-card .button {
  background: var(--accent);
  color: var(--accent-ink);
}

html[data-theme="dark"] .button.dark:hover,
html[data-theme="dark"] .button.dark:focus,
html[data-theme="dark"] .hero-card .button:hover,
html[data-theme="dark"] .hero-card .button:focus {
  background: var(--accent-strong);
}

html[data-theme="light"] body.gallery-page {
  background: var(--paper);
  color: var(--ink);
}

html[data-theme="light"] body.gallery-page .gallery-hero {
  color: var(--ink);
}

html[data-theme="light"] body.gallery-page .gallery-hero p,
html[data-theme="light"] body.gallery-page .gallery-item figcaption {
  color: var(--muted);
}

html[data-theme="light"] body.gallery-page .site-footer {
  background: var(--paper);
  color: var(--muted);
}

.palette-widget {
  position: fixed;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  justify-items: end;
  gap: 8px;
  font-family: inherit;
}

.palette-toggle,
.palette-option,
.palette-reset,
.theme-option,
.title-accent-option,
.filter-reset {
  font: inherit;
}

.palette-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--nav-bg);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.palette-toggle-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px var(--white);
}

.palette-panel {
  width: min(340px, calc(100vw - 28px));
  max-height: calc(100svh - 96px);
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: var(--nav-bg);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.palette-options {
  display: grid;
  gap: 5px;
}

.theme-controls {
  display: grid;
  gap: 7px;
  padding: 2px 0 8px;
}

.design-save-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
  padding: 10px 8px 12px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.design-save {
  min-height: 38px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
}

.design-save:hover,
.design-save:focus {
  background: var(--accent-strong);
}

.design-save-status {
  min-height: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.title-accent-controls {
  display: grid;
  gap: 7px;
  margin-top: 10px;
  padding: 12px 8px 8px;
  border-top: 1px solid var(--line-light);
}

.palette-editor {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding: 12px 8px 8px;
  border-top: 1px solid var(--line-light);
}

.palette-editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.palette-editor-header .panel-label {
  margin-bottom: 0;
}

.palette-reset {
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.palette-reset:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.panel-label {
  display: block;
  margin: 5px 8px 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.palette-option {
  width: 100%;
  min-height: 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  text-align: left;
}

.palette-option:hover,
.palette-option:focus {
  background: var(--nav-hover-bg);
  color: var(--white);
}

.palette-option::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
}

.palette-option[aria-pressed="true"]::after {
  background: var(--white);
}

.theme-options,
.title-accent-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.theme-option,
.title-accent-option {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.theme-option:hover,
.theme-option:focus,
.theme-option[aria-pressed="true"],
.title-accent-option:hover,
.title-accent-option:focus,
.title-accent-option[aria-pressed="true"] {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: transparent;
}

.palette-colour-row {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.palette-colour-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.palette-colour-swatch {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: var(--editor-swatch);
}

.palette-colour-hex {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.rgb-control {
  display: grid;
  grid-template-columns: 14px 1fr 30px;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 900;
}

.rgb-control output {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.palette-swatches {
  display: flex;
  align-items: center;
}

.palette-swatches i {
  width: 15px;
  height: 15px;
  display: block;
  margin-left: -4px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: var(--swatch);
}

.palette-swatches i:first-child {
  margin-left: 0;
}

.hero-filter-controls {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding: 12px 8px 8px;
  border-top: 1px solid var(--line-light);
}

.filter-control {
  display: grid;
  gap: 7px;
}

.filter-control label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 850;
}

.filter-control output {
  color: rgba(255, 255, 255, 0.58);
  font-variant-numeric: tabular-nums;
}

.filter-control input[type="range"],
.rgb-control input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.filter-reset {
  min-height: 36px;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.filter-reset:hover,
.filter-reset:focus {
  background: var(--nav-hover-bg);
}

.gallery-hero {
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 100px 0 54px;
}

.gallery-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-size: clamp(56px, 13vw, 170px);
  line-height: 0.88;
  letter-spacing: 0;
}

.gallery-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.gallery-grid {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding-bottom: 90px;
  columns: 1;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 12px;
}

.gallery-item .image-frame {
  min-height: 0;
}

.gallery-item figcaption {
  padding: 10px 2px 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 750;
}

@media (min-width: 720px) {
  .hero {
    height: 100svh;
    min-height: 0;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
    min-height: 100%;
    height: 100%;
    padding-top: clamp(78px, 10svh, 116px);
    padding-bottom: clamp(16px, 4svh, 38px);
    gap: clamp(16px, 2.5vw, 28px);
  }

  .hero-copy {
    grid-column: 1 / 2;
  }

  .hero h1 {
    font-size: clamp(70px, 9vw, 152px);
    font-size: clamp(70px, 12.5cqw, 152px);
  }

  .hero-actions {
    margin-top: clamp(16px, 3svh, 34px);
  }

  .hero-card {
    grid-column: 2 / 3;
    justify-self: end;
    margin-bottom: clamp(8px, 2svh, 26px);
  }

  .gallery-grid {
    columns: 2;
  }
}

@media (min-width: 1080px) {
  .gallery-grid {
    columns: 3;
  }
}

@media (min-width: 921px) and (max-height: 760px) {
  .hero-inner {
    padding-top: 74px;
    padding-bottom: 14px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(62px, 8vw, 118px);
    font-size: clamp(62px, 10.5cqw, 118px);
  }

  .hero-lead {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.36;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .hero-card {
    width: min(100%, 292px);
    padding: 10px;
  }

  .hero-card .image-frame {
    margin-bottom: 10px;
  }

  .hero-card h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .hero-meta {
    gap: 6px;
    margin-bottom: 10px;
  }

  .hero-meta span {
    padding: 8px 10px;
  }

  .hero-card .button {
    min-height: 40px;
    padding: 9px 12px;
  }
}

@media (max-width: 920px) {
  .intro-grid,
  .service-grid,
  .media-grid,
  .media-grid.reverse,
  .location-panel,
  .booking-panel,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .image-frame.tall {
    min-height: 430px;
  }

  .image-frame.medium {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 112svh;
  }

  #reviews .section-heading.center {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-inner {
    min-height: 112svh;
    height: auto;
    align-content: start;
    padding-top: clamp(122px, 17svh, 158px);
    padding-bottom: 20px;
    gap: clamp(28px, 7svh, 58px);
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    font-size: clamp(42px, 12.4cqw, 58px);
    line-height: 0.9;
  }

  .hero-actions {
    margin-top: 14px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 118svh;
  }

  .floating-nav {
    width: calc(100% - 14px);
  }

  .nav-shell {
    margin: 0;
  }

  .nav-shell a {
    padding: 0 10px;
    font-size: 13px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.22) 42%, rgba(0, 0, 0, 0.68)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.18));
  }

  .hero-inner {
    width: min(100% - 20px, 480px);
    min-height: 118svh;
    padding-top: clamp(126px, 18svh, 166px);
    padding-bottom: 16px;
    gap: clamp(30px, 7svh, 54px);
  }

  .hero h1 {
    max-width: 380px;
    font-size: clamp(36px, 10vw, 48px);
    font-size: clamp(36px, 11.6cqw, 48px);
  }

  .hero-card {
    width: min(50vw, 230px);
    justify-self: start;
    padding: 8px;
    border-radius: 16px;
  }

  .hero-card .image-frame {
    height: auto;
    min-height: 0;
    margin-bottom: 9px;
    border-radius: 12px;
  }

  .hero-card .card-kicker {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .hero-card h2 {
    margin: 0 0 9px;
    font-size: clamp(19px, 5.2vw, 23px);
    line-height: 0.96;
  }

  .hero-meta {
    gap: 6px;
    margin-bottom: 10px;
  }

  .hero-meta span {
    padding: 7px 8px;
    border-radius: 12px;
    font-size: 10px;
    line-height: 1.15;
  }

  .hero-meta strong {
    font-size: 11px;
  }

  .hero-card .button {
    min-height: 38px;
    padding: 9px 10px;
    border-radius: 13px;
    font-size: 12px;
  }

  .service-heading {
    min-height: 0;
  }

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

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-strip div:last-child {
    border-bottom: 0;
  }

  .detail-list li {
    display: grid;
    gap: 2px;
  }

  .footer-inner {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .image-frame.tall {
    min-height: 390px;
  }
}
