:root {
  --plum: #3a1736;
  --plum-deep: #2a1028;
  --rose: #9a4d6e;
  --paper: #f7f3ef;
  --card: #ffffff;
  --ink: #241820;
  --muted: #5c4654;
  --line: #e6dbd4;
  --soft: #faf7f5;
  --focus: #3a1736;
  --error: #8d2430;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-text: "Source Sans 3", "Segoe UI", sans-serif;
  --header: 5rem;
  --radius: 10px;
  --cell: 3.25rem;
  --wrap: 68rem;
  --brand-size: clamp(1.7rem, 2.4vw + 1.25rem, 2.85rem);
  --heading-size: clamp(1.25rem, 1.2vw + 0.9rem, 1.9rem);
  --heading-size-sm: clamp(1.15rem, 1.1vw + 0.8rem, 1.6rem);
}

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

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.5;
}

h1,
h2,
h3,
.wordmark,
.wordmark-name,
.booking-id {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: white;
  color: var(--plum);
  padding: 0.5rem 0.75rem;
  z-index: 20;
}

.skip:focus {
  top: 0.5rem;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--plum);
  color: white;
  border-bottom: 3px solid var(--rose);
}

.header-bar {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wordmark {
  margin-right: auto;
  text-decoration: none;
  font-size: var(--brand-size);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0.35px 0 0 currentColor, -0.35px 0 0 currentColor;
}

.wordmark-name {
  font-size: 1.7rem;
  line-height: 0.95;
}

.wordmark-service {
  font-family: var(--font-text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.2rem;
}

.header-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.header-nav .nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  color: rgba(255, 255, 255, 0.78);
}

.header-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.18rem;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rose), #c4899e 70%, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.header-nav .nav-link:hover,
.header-nav .nav-link:focus-visible {
  color: #fff;
}

.header-nav .nav-link:hover::after,
.header-nav .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.header-nav .nav-cta {
  margin-left: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 55%),
    rgba(154, 77, 110, 0.55);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.header-nav .nav-cta:hover,
.header-nav .nav-cta:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 55%),
    var(--rose);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.02);
}

.hero {
  padding: 3.5rem 0 0.75rem;
}

.book-wrap {
  max-width: 42rem;
  margin-inline: auto;
}

.hero-inner {
  text-align: center;
}

.hero .lede {
  margin-inline: auto;
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.45;
}

.hero .contact-list {
  justify-content: center;
}

.kicker {
  margin-bottom: 0.5rem;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.65rem, 1.2vw + 0.9rem, 2.25rem);
  line-height: 1.2;
  color: var(--plum);
}

.section-heading h2 {
  font-size: var(--heading-size);
  color: var(--plum-deep);
}

.tagline {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.55rem;
  color: var(--plum);
}

.lede,
.section-heading p {
  margin-top: 0.9rem;
  max-width: 40rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button,
.text-button,
.price-btn,
select,
input,
textarea {
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

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

.button-pill {
  min-height: 0;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.button-pill:hover {
  transform: scale(1.02);
}

.button-pill {
  padding: 0.35rem 0.85rem;
  font-size: 0.875rem;
  line-height: 1.2;
}

.button-secondary,
.button-light {
  background: white;
  color: var(--plum);
  border-color: white;
}

.button-secondary {
  border-color: var(--plum);
}

.button-full {
  width: 100%;
}

.button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-break {
  display: none;
}

.contact-list a,
.contact-list > li > span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.65rem;
  padding: 0.3rem 0.85rem 0.3rem 0.35rem;
  border: 1px solid var(--rose);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(36, 24, 32, 0.05);
}

.contact-list a {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-list a:hover {
  border-color: var(--plum);
  box-shadow: 0 6px 16px rgba(58, 23, 54, 0.08);
}

.contact-icon {
  width: 1.7rem;
  height: 1.7rem;
  flex: none;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.icon-call {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2334C759'/%3E%3Cpath fill='%23fff' d='M16.6 14.5c-.7-.4-1.7-.8-2-.9-.3-.1-.5 0-.6.3l-.5.6c-.1.2-.3.2-.5.1a7.4 7.4 0 0 1-2.2-1.4 7.2 7.2 0 0 1-1.5-2.1c-.1-.2 0-.4.1-.5l.5-.5c.2-.2.2-.4.2-.6-.1-.3-.6-1.3-.7-1.8-.2-.4-.4-.4-.6-.4h-.6c-.2 0-.6.1-.9.4-.3.3-1 1-1 2.4s1 2.7 1.1 2.9c.2.3 2 3.1 4.8 4.2.6.3 1.2.4 1.6.6.6.2 1.3.2 1.8.1.5-.1 1.6-.6 1.8-1.3.2-.6.2-1.1.1-1.2-.1-.2-.3-.3-.6-.4z'/%3E%3C/svg%3E");
}

.icon-whatsapp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2325D366'/%3E%3Cpath fill='%23fff' d='M12 6.1a5.8 5.8 0 0 0-5 8.7l-.7 2.6 2.7-.7A5.8 5.8 0 1 0 12 6.1zm3.2 8c-.1.4-.7.7-1 .8-.3 0-.6.2-1.9-.4-1.6-.6-2.7-2.1-2.8-2.2s-.7-1-.7-1.8.5-1.3.6-1.5.3-.2.5-.2h.4c.1 0 .3 0 .4.3.2.4.5 1.2.5 1.3s0 .3-.1.4l-.3.3c-.1.1-.2.2-.1.4.1.2.6.9 1.2 1.5.8.7 1.5 1 1.7 1.1s.3 0 .5-.1l.4-.5c.1-.1.2-.1.4-.1s1 .5 1.2.6.3.1.3.2.1.7 0 1.1z'/%3E%3C/svg%3E");
}

.icon-tiktok {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23111111'/%3E%3Cpath fill='%2325F4EE' d='M13.6 6.6c.7.5 1.6.8 2.5.8v1.6c-.8-.1-1.5-.4-2.1-.8v4.3c0 2-1.6 3.6-3.6 3.6S6.8 14.5 6.8 12.5 8.4 8.9 10.4 8.9c.2 0 .5 0 .7.1v1.7c-.2-.1-.5-.2-.7-.2-1 0-1.9.8-1.9 1.9s.8 1.9 1.9 1.9 1.9-.8 1.9-1.9V6.6h1.3z'/%3E%3Cpath fill='%23FE2C55' transform='translate(-.55 .45)' d='M13.6 6.6c.7.5 1.6.8 2.5.8v1.6c-.8-.1-1.5-.4-2.1-.8v4.3c0 2-1.6 3.6-3.6 3.6S6.8 14.5 6.8 12.5 8.4 8.9 10.4 8.9c.2 0 .5 0 .7.1v1.7c-.2-.1-.5-.2-.7-.2-1 0-1.9.8-1.9 1.9s.8 1.9 1.9 1.9 1.9-.8 1.9-1.9V6.6h1.3z'/%3E%3Cpath fill='%23fff' d='M13.2 6.5c.7.5 1.6.8 2.5.8v1.6c-.8-.1-1.5-.4-2.1-.8v4.3c0 2-1.6 3.6-3.6 3.6S6.4 14.4 6.4 12.4 8 8.8 10 8.8c.2 0 .5 0 .7.1V10.6c-.2-.1-.5-.2-.7-.2-1 0-1.9.8-1.9 1.9s.8 1.9 1.9 1.9 1.9-.8 1.9-1.9V6.5h1.3z'/%3E%3C/svg%3E");
}

.icon-facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%231877F2'/%3E%3Cpath fill='%23fff' d='M13.4 18.5v-5.4h1.8l.3-2.1h-2.1V9.6c0-.6.2-1 1.1-1h1.1V6.6c-.3 0-1-.1-1.6-.1-1.6 0-2.6 1-2.6 2.7v1.5H9.6v2.1h1.8v5.7h2z'/%3E%3C/svg%3E");
}

.icon-instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3CradialGradient id='ig' cx='30%25' cy='110%25' r='130%25'%3E%3Cstop offset='0' stop-color='%23f9ce34'/%3E%3Cstop offset='.45' stop-color='%23ee2a7b'/%3E%3Cstop offset='1' stop-color='%236228d7'/%3E%3C/radialGradient%3E%3C/defs%3E%3Ccircle cx='12' cy='12' r='12' fill='url(%23ig)'/%3E%3Crect x='7.1' y='7.1' width='9.8' height='9.8' rx='3' fill='none' stroke='%23fff' stroke-width='1.4'/%3E%3Ccircle cx='12' cy='12' r='2.2' fill='none' stroke='%23fff' stroke-width='1.4'/%3E%3Ccircle cx='15.2' cy='8.8' r='.7' fill='%23fff'/%3E%3C/svg%3E");
}

.icon-email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23EA4335'/%3E%3Cpath fill='%23fff' d='M7.2 8.2h9.6c.7 0 1.2.5 1.2 1.2v5.2c0 .7-.5 1.2-1.2 1.2H7.2c-.7 0-1.2-.5-1.2-1.2V9.4c0-.7.5-1.2 1.2-1.2zm.4 1.3 4.2 2.8c.1.1.3.1.4 0l4.2-2.8v-.1H7.6v.1zm0 1.2v4.1h8.8v-4.1l-4.1 2.7c-.4.3-.9.3-1.3 0L7.6 10.7z'/%3E%3C/svg%3E");
}

.icon-cashapp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%2300D632'/%3E%3Cpath fill='%23fff' d='M15.6 8.2c-.4-.5-1-.8-1.7-.9V6.2h-1.3v1.1c-1.7.1-2.9 1.1-2.9 2.6 0 1.6 1.2 2.2 2.5 2.6l.7.2c.9.3 1.4.5 1.4 1.1 0 .6-.6 1-1.5 1-.8 0-1.5-.3-2-.9l-1 .9c.6.8 1.6 1.3 2.9 1.4v1.2h1.3v-1.2c1.6-.2 2.8-1.2 2.8-2.7 0-1.7-1.3-2.3-2.7-2.7l-.6-.2c-.8-.2-1.3-.5-1.3-1 0-.5.5-.9 1.3-.9.7 0 1.3.3 1.7.7l.9-.9z'/%3E%3C/svg%3E");
}

.icon-zelle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%236D1ED4'/%3E%3Cpath fill='%23fff' d='M8.2 7.2h5.4c.3 0 .5.1.6.4L16.8 12l-2.6 4.4c-.1.3-.3.4-.6.4H8.2l2.7-4.4H8.8L8.2 7.2zm3.1 1.5-1.4 2.3h2.5l1.4-2.3h-2.5zm-1.4 5.3 1.4-2.3h2.5l-1.4 2.3h-2.5z'/%3E%3C/svg%3E");
}

.section {
  padding: 1rem 0 3.5rem;
}

#prices {
  padding-top: 0.35rem;
}

.section-heading {
  margin-bottom: 1.25rem;
}

.styles-heading-row {
  display: block;
}

.style-search {
  display: none;
}

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

.styles-empty {
  display: none;
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.style-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}

.style-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(154, 77, 110, 0.28);
  color: var(--plum-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.2;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.style-jump a:hover {
  border-color: var(--rose);
  background: white;
}

.styles-list {
  display: grid;
  gap: 2.75rem;
}

.style-feature {
  display: grid;
  grid-template-columns: minmax(7.25rem, 38%) minmax(0, 1fr);
  grid-template-areas:
    "media copy"
    "chart chart"
    "actions actions";
  gap: 0.85rem 1rem;
  align-items: start;
  scroll-margin-top: 5.5rem;
}

.style-media {
  grid-area: media;
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 1.15rem;
  border: 2px solid var(--rose);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  container-type: normal;
  background: linear-gradient(160deg, #efe4ea, #f7f3ef 55%, #e8d5df);
  box-shadow: 0 14px 30px rgba(42, 16, 40, 0.12);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.style-main {
  display: contents;
}

.style-media.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: media-shimmer 1.1s ease-in-out infinite;
  pointer-events: none;
}

@keyframes media-shimmer {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

.style-media-viewport {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.style-media-viewport:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -4px;
}

.style-media-viewport::-webkit-scrollbar {
  display: none;
}

.style-media-track {
  display: flex;
  height: 100%;
}

.style-media-slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: border-box;
  height: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  cursor: zoom-in;
}

.style-media img,
.style-media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.style-media video {
  background: #1a0f18;
}

.style-media:hover,
.style-media:active {
  border-color: #b86a88;
  box-shadow:
    0 14px 30px rgba(42, 16, 40, 0.14),
    0 0 0 1px rgba(154, 77, 110, 0.18),
    0 0 22px rgba(154, 77, 110, 0.35);
}

.style-media:not(.has-carousel):hover img,
.style-media:not(.has-carousel):active img {
  transform: scale(1.04);
}

.style-media-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(42, 16, 40, 0.62);
  color: white;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.style-media-nav.is-prev {
  left: 0.4rem;
}

.style-media-nav.is-next {
  right: 0.4rem;
}

.style-media-nav:hover,
.style-media-nav:focus-visible {
  background: rgba(42, 16, 40, 0.82);
}

.style-media-nav:focus-visible {
  outline: 2px solid white;
  outline-offset: 1px;
}

.style-media-dots {
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  z-index: 2;
  display: flex;
  gap: 0.28rem;
  transform: translateX(-50%);
}

.style-media-dot {
  width: 0.42rem;
  height: 0.42rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.style-media-dot.is-active {
  background: white;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  overscroll-behavior: none;
}

.media-lightbox[hidden] {
  display: none !important;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(18, 8, 16, 0.92);
  cursor: pointer;
}

.media-lightbox-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.media-lightbox-viewport {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.media-lightbox-viewport::-webkit-scrollbar {
  display: none;
}

.media-lightbox-track {
  display: flex;
  height: 100%;
}

.media-lightbox-slide {
  flex: 0 0 auto;
  box-sizing: border-box;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 3.25rem 3.5rem 3.75rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.media-lightbox-slide img,
.media-lightbox-slide video {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 72rem);
  max-height: calc(100vh - 6.5rem);
  object-fit: contain;
  border-radius: 0.35rem;
  background: #120810;
}

.media-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.media-lightbox-close:hover,
.media-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.media-lightbox-close:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.media-lightbox-counter {
  position: absolute;
  top: 1rem;
  left: 50%;
  z-index: 3;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.media-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.media-lightbox-nav.is-prev {
  left: 0.7rem;
}

.media-lightbox-nav.is-next {
  right: 0.7rem;
}

.media-lightbox-nav:hover,
.media-lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.media-lightbox-nav:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.media-lightbox-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.35rem;
  transform: translateX(-50%);
}

.media-lightbox-dot {
  width: 0.48rem;
  height: 0.48rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.media-lightbox-dot.is-active {
  background: white;
}

body.has-media-lightbox {
  overflow: hidden;
}

/* iOS still scrolls behind modals with overflow:hidden alone. */
body.has-media-lightbox-scroll-lock {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.style-copy {
  grid-area: copy;
  min-width: 0;
}

.style-copy h3 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding-bottom: 0.45rem;
  font-size: var(--heading-size);
  font-weight: 700;
  line-height: 1.05;
  color: var(--plum-deep);
}

.style-copy h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 0.16rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--plum) 0%,
    var(--rose) 52%,
    rgba(154, 77, 110, 0.12) 100%
  );
  box-shadow: 0 1px 0 rgba(58, 23, 54, 0.08);
}

.style-copy .accent {
  color: var(--rose);
}

.style-blurb {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.style-range {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--plum);
}

.style-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.style-hair-tag {
  color: inherit;
}

.style-chart {
  display: none;
  grid-area: chart;
  margin-top: 0;
  min-width: 0;
}

.style-chart .table-scroll {
  padding: 0.15rem 0.1rem 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.style-chart .menu-table,
.style-chart .menu-table.cols-5,
.style-chart .menu-table.cols-3,
.style-chart .menu-table.cols-1 {
  min-width: 0;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.style-chart .menu-table th,
.style-chart .menu-table td {
  height: 2.35rem;
  padding: 0.3rem 0.35rem;
  font-size: 0.88rem;
  border: 0;
  text-align: center;
  vertical-align: middle;
}

.style-chart .chart-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
  color: inherit;
  background: transparent;
}

.style-chart .menu-table thead th {
  background: #d7c0ce;
  color: var(--plum-deep);
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(154, 77, 110, 0.08), 0 0 10px rgba(58, 23, 54, 0.12);
}

.style-chart .menu-table thead th:first-child {
  border-radius: 0.85rem 0 0 0;
}

.style-chart .menu-table thead th:last-child {
  border-radius: 0 0.2rem 0.2rem 0;
}

.style-chart .menu-table .length {
  position: static;
  width: 5.5rem;
  min-width: 5.5rem;
  background: #d7c0ce;
  color: var(--plum-deep);
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(154, 77, 110, 0.08), 0 0 10px rgba(58, 23, 54, 0.12);
}

.style-chart .menu-table .length .chart-pill {
  font-size: 0.8rem;
}

.style-chart .menu-table tbody tr:last-child .length {
  border-radius: 0 0 0.2rem 0.2rem;
}

.style-chart .menu-table td {
  background: transparent;
  box-shadow: none;
  outline: none;
}

.style-chart .menu-table td,
.style-chart .price-cell {
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: var(--ink);
  pointer-events: none;
}

.style-chart .price-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  background: transparent;
  border: 0;
}

.style-chart .menu-table tr.is-selected td {
  background: transparent;
}

.style-chart .menu-table tr.is-selected .length {
  background: #d7c0ce;
  color: var(--plum-deep);
}

.style-chart .footnote {
  padding: 0.55rem 0.25rem 0;
  font-size: 0.85rem;
  line-height: 1.35;
}

.style-feature.is-details-open .style-chart {
  display: block;
}

.style-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  grid-area: actions;
  margin-top: 0;
}

.style-actions .button {
  min-height: 2.15rem;
  padding: 0.28rem 1.55rem;
  font-size: 0.88rem;
}

.style-actions .button-primary {
  min-width: min(100%, 16.5rem);
  padding-inline: 1.85rem;
}

.style-panel-intro {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.book-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.book-modal[hidden] {
  display: none !important;
}

.book-modal-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(42, 16, 40, 0.52);
  cursor: pointer;
}

.book-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 24rem);
  max-height: min(90vh, 36rem);
  overflow: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1rem 1.2rem;
  box-shadow: 0 22px 50px rgba(42, 16, 40, 0.28);
}

.book-modal-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--plum-deep);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.book-modal-close:hover {
  background: #f3e7ee;
}

.book-modal-title {
  margin: 0 1.75rem 0.45rem 0;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--plum-deep);
}

body.has-book-modal {
  overflow: hidden;
}

.style-book-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.75rem;
  margin-bottom: 0.35rem;
}

.style-book-fields.is-single {
  grid-template-columns: 1fr;
}

.book-modal-card .field {
  margin-top: 0;
  margin-bottom: 0;
  min-width: 0;
}

.book-modal-card .field label {
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
}

.book-modal-card .field select {
  height: 2.65rem;
  min-height: 2.65rem;
  padding: 0.45rem 2.2rem 0.45rem 0.65rem;
  font-size: 1rem;
}

.style-book-price {
  margin: 0.65rem 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--plum);
}

.book-modal-card .field-error {
  text-align: center;
}

.book-modal-card .button {
  display: block;
  width: fit-content;
  min-width: min(100%, 14rem);
  margin: 0.85rem auto 0;
}

.book-select {
  position: relative;
}

.book-select-trigger,
.book-select-menu {
  display: none;
}

.service-detail,
.footnote {
  margin: 0;
  padding: 0.75rem 1rem 0;
  color: var(--muted);
}

.footnote {
  padding-bottom: 0.35rem;
}

.table-scroll {
  overflow-x: auto;
  padding: 0.75rem 0.5rem 0.9rem;
}

.menu-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 44rem;
}

.menu-table.cols-3 {
  min-width: 32rem;
}

.menu-table.cols-1 {
  min-width: 20rem;
}

.menu-table th,
.menu-table td {
  height: var(--cell);
  padding: 0.25rem 0.4rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.menu-table th {
  background: var(--soft);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu-table .length {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 8.5rem;
  min-width: 8.5rem;
  padding-left: 0.85rem;
  text-align: left;
  font-weight: 700;
  background: white;
  box-shadow: 1px 0 0 var(--line);
}

.menu-table thead .length {
  z-index: 2;
  background: var(--soft);
}

.menu-table tr.is-selected td {
  background: #f8f1f4;
}

.menu-table tr.is-selected .length {
  background: #f8f1f4;
}

.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.5rem;
  min-height: 2.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.price-btn:hover {
  background: #f3e7ee;
}

.price-btn[aria-pressed="true"] {
  background: var(--plum);
  color: white;
}

.money,
.price-btn {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.steps-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(154, 77, 110, 0.06), transparent 42%),
    linear-gradient(135deg, #faf6f3 0%, var(--paper) 55%, #f3ebe8 100%);
  border-block: 1px solid rgba(154, 77, 110, 0.12);
}

.steps-section .section-heading p:not(.kicker) {
  font-style: italic;
  font-size: 1rem;
  max-width: 36rem;
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #fcf8f6 100%);
  border: 1px solid rgba(154, 77, 110, 0.16);
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: 0 10px 28px rgba(42, 16, 40, 0.06);
  overflow: hidden;
}

.steps li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), #c4899e 45%, transparent);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--plum);
  color: white;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow:
    0 0 0 4px rgba(154, 77, 110, 0.12),
    0 8px 18px rgba(42, 16, 40, 0.16);
}

.steps h3 {
  margin: 0.9rem 0 0.45rem;
  font-size: var(--heading-size-sm);
  color: var(--plum-deep);
}

.steps p {
  color: var(--muted);
  line-height: 1.45;
}

#book.is-confirmed .book-intro,
#book.is-confirmed .referral-note,
#book.is-confirmed .booking-fee-notice {
  display: none;
}

.req {
  color: var(--rose);
}

input,
select,
textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 3rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  line-height: 1.25;
}

input,
select {
  height: 3rem;
}

textarea {
  min-height: 7rem;
  height: auto;
  padding-top: 0.7rem;
  resize: vertical;
}

select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2.4rem;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5 10 12.5 15 7.5' stroke='%233a1736' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.95rem;
  cursor: pointer;
}

input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  color-scheme: light;
}

.form-card {
  background: linear-gradient(165deg, #ffffff 0%, #fcf8f6 100%);
  border: 1px solid rgba(154, 77, 110, 0.16);
  border-radius: 1.15rem;
  padding: 1.35rem 1.25rem 1.45rem;
  box-shadow: 0 10px 28px rgba(42, 16, 40, 0.06);
}

.field {
  margin-top: 1rem;
}

.field:first-child,
.form-card > .field:first-of-type {
  margin-top: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
  margin-top: 1rem;
  align-items: start;
}

.field-grid .field {
  margin-top: 0;
  min-width: 0;
}

.field-control {
  position: relative;
}

.field-control.has-price select {
  padding-right: 5.5rem;
}

.field-price {
  position: absolute;
  top: 50%;
  right: 2.15rem;
  transform: translateY(-50%);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: var(--plum-deep);
  line-height: 1.25;
  min-height: 1.25em;
}

.form-card input,
.form-card select,
.form-card textarea {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: rgba(154, 77, 110, 0.55);
  box-shadow:
    0 0 0 3px rgba(154, 77, 110, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-card input[type="date"] {
  display: block;
  line-height: normal;
}

.hint {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.book-intro {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-style: italic;
  font-size: 0.78rem;
  line-height: 1.35;
}

.booking-fee-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.85rem;
  padding: 0.32rem 0.65rem;
  border: 1px solid rgba(154, 77, 110, 0.18);
  border-radius: 999px;
  background: #d7c0ce;
  color: var(--plum-deep);
  font-size: 0.84rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.25;
  box-shadow: 0 0 0 1px rgba(154, 77, 110, 0.08);
}

.booking-fee-notice-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  border: 1px solid var(--plum-deep);
  border-radius: 50%;
  color: var(--plum-deep);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
}

.referral-note {
  margin-top: 0.65rem;
  max-width: 28rem;
  color: var(--plum-deep);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

#book .section-heading .referral-note {
  margin-top: 0.65rem;
  color: var(--plum-deep);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: normal;
}

.referral-note::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--rose);
  vertical-align: 0.1em;
}

#book .section-heading h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.45rem;
}

#book .section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 0.16rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--plum) 0%,
    var(--rose) 52%,
    rgba(154, 77, 110, 0.12) 100%
  );
  box-shadow: 0 1px 0 rgba(58, 23, 54, 0.08);
}

#book .form-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(154, 77, 110, 0.28);
  background:
    linear-gradient(180deg, rgba(154, 77, 110, 0.07), rgba(154, 77, 110, 0) 4.5rem),
    linear-gradient(165deg, #ffffff 0%, #fcf8f6 100%);
  box-shadow:
    0 12px 32px rgba(42, 16, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#book .form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.22rem;
  background: linear-gradient(
    90deg,
    var(--plum) 0%,
    var(--rose) 48%,
    rgba(154, 77, 110, 0.2) 100%
  );
}

#book .form-card input,
#book .form-card select,
#book .form-card textarea {
  border-color: rgba(154, 77, 110, 0.26);
  background-color: rgba(255, 255, 255, 0.96);
}

#book .form-card input:hover,
#book .form-card select:hover,
#book .form-card textarea:hover {
  border-color: rgba(154, 77, 110, 0.42);
}

#book .form-card .field label {
  letter-spacing: 0.01em;
}

#book .form-card .hint {
  color: var(--muted);
}

#book .form-card .button-full {
  background: linear-gradient(180deg, #4a1f45 0%, var(--plum) 100%);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(58, 23, 54, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#book .form-card .button-full:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 22px rgba(58, 23, 54, 0.28);
}

.field-error,
.form-error {
  margin-top: 0.35rem;
  color: var(--error);
  font-weight: 700;
  font-size: 0.95rem;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.summary {
  margin: 1.35rem auto 0;
  padding: 0.35rem 0 0;
  max-width: 28rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
  text-align: left;
}

.summary div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.65rem 1rem;
  align-items: baseline;
  min-height: 0;
  padding: 0.4rem 0;
  border-bottom: 0;
}

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

.summary dt,
.summary dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.35;
}

.summary dt {
  font-weight: 600;
  color: var(--muted);
}

.summary dd {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.summary dd.is-empty {
  color: var(--muted);
  font-weight: 600;
}

.summary dd.money {
  font-size: 1.05rem;
  color: var(--plum-deep);
  font-weight: 700;
}

.form-card .button-full {
  display: block;
  width: 75%;
  max-width: 75%;
  min-height: 2.55rem;
  margin: 1.25rem auto 0;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.98rem;
}

.booking-summary {
  margin: 1rem 0 0;
  padding: 0.15rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.booking-summary div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
  align-items: center;
  min-height: 0;
  padding: 0.35rem 0;
  border-bottom: 0;
}

.booking-summary div:last-child {
  border-bottom: 0;
}

.booking-summary dt,
.booking-summary dd {
  margin: 0;
  font-size: 0.95rem;
}

.booking-summary dt {
  font-weight: 700;
  color: var(--muted);
}

.booking-summary dd {
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

.booking-summary dd.is-empty {
  color: var(--muted);
  font-weight: 600;
}

.booking-summary-total {
  background: transparent;
  margin-top: 0.25rem;
  padding-top: 0.55rem;
}

.booking-summary-total dt,
.booking-summary-total dd {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--plum-deep);
}

.booking-summary-total dd.is-empty {
  color: var(--muted);
}

.confirm-review-card {
  width: min(100%, 32rem);
  max-height: min(92vh, 40rem);
}

.confirm-review-summary div {
  grid-template-columns: 6.5rem 1fr;
}

.confirm-review-intro {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.confirm-review-summary {
  margin: 0;
}

.confirm-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.confirm-review-actions .button {
  min-width: min(100%, 10.5rem);
  border-radius: 999px;
}

.booking-payment-card {
  width: min(100%, 27.5rem);
  max-height: min(92vh, 36rem);
  overflow: hidden;
  padding: 1.1rem 1.25rem 1.05rem;
}

.booking-payment-card .book-modal-title {
  position: relative;
  margin: 0 2rem 0.75rem;
  padding: 0 0 0.55rem;
  font-size: 1.25rem;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  background-image: none;
}

.booking-payment-card .book-modal-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(92%, 15rem);
  height: 0.16rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(154, 77, 110, 0) 0%,
    rgba(154, 77, 110, 0.18) 14%,
    var(--plum) 34%,
    var(--rose) 50%,
    var(--plum) 66%,
    rgba(154, 77, 110, 0.18) 86%,
    rgba(154, 77, 110, 0) 100%
  );
  box-shadow: 0 1px 0 rgba(58, 23, 54, 0.08);
}

.booking-payment-info {
  margin: 0 0 0.75rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #b9d9f0;
  border-radius: 0.5rem;
  background: #e8f4fc;
  color: #143a5c;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: none;
}

.booking-payment-info strong {
  color: #0f2f4d;
}

.payment-id-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin: 0 0 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.7rem;
  background: rgba(215, 192, 206, 0.28);
}

.payment-id-text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.payment-id-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}

.payment-booking-id {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--plum-deep);
  line-height: 1.1;
}

.payment-copy-btn {
  flex: none;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--plum-deep);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.payment-copy-btn:hover,
.payment-copy-btn:focus-visible {
  border-color: var(--plum);
}

.payment-policy-agree {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 0.15rem;
  color: #b42318;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
}

.payment-policy-agree input[type="checkbox"] {
  flex: none;
  box-sizing: border-box;
  width: 1rem;
  min-width: 1rem;
  max-width: 1rem;
  height: 1rem;
  min-height: 1rem;
  max-height: 1rem;
  margin: 0.12em 0 0;
  padding: 0;
  border: 1.5px solid #b42318;
  border-radius: 0.2rem;
  appearance: none;
  -webkit-appearance: none;
  background: white;
  cursor: pointer;
}

.payment-policy-agree input[type="checkbox"]:checked {
  background: #b42318
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E")
    center / 0.75rem 0.75rem no-repeat;
}

.payment-policy-agree input[type="checkbox"]:focus-visible {
  outline: 2px solid #b42318;
  outline-offset: 2px;
}

#payment-policy-error {
  margin: 0 0 0.75rem;
  padding-left: calc(1rem + 0.5rem);
  font-size: 0.78rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.35;
}

#payment-screenshot-error {
  margin: 0.15rem 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

.booking-payment-card #payment-policy-error {
  text-align: left;
  font-weight: 400;
  font-size: 0.78rem;
}

.booking-payment-card #payment-screenshot-error {
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.payment-methods {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
}

.payment-method {
  display: grid;
  grid-template-columns: 1.55rem 5.75rem minmax(0, 1fr);
  align-items: center;
  column-gap: 0.55rem;
  margin: 0;
  padding: 0.1rem 0;
  border: 0;
  background: transparent;
}

.payment-method-pick {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  margin: 0;
  cursor: pointer;
}

.payment-method:has(input:checked) .payment-method-name {
  color: var(--plum-deep);
}

.payment-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-method .contact-icon {
  width: 1.55rem;
  height: 1.55rem;
  flex: none;
}

.payment-method-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.2;
  cursor: default;
  user-select: none;
}

.payment-method-value,
.payment-cashapp-link {
  justify-self: start;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--plum-deep);
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.payment-cashapp-link {
  color: var(--plum);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.payment-cashapp-link:hover,
.payment-cashapp-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.12em;
  color: var(--plum-deep);
}

.payment-screenshot-field {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.35rem;
}

.payment-screenshot-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--plum-deep);
}

.payment-file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.25rem;
  margin: 0;
  padding: 0.4rem 0.8rem;
  border: 1px dashed rgba(58, 23, 54, 0.28);
  border-radius: 0.65rem;
  background: rgba(215, 192, 206, 0.12);
  color: var(--plum-deep);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.payment-file-btn:hover,
.payment-file-btn:focus-within,
.payment-file-btn.is-dragover {
  border-color: var(--plum);
  background: rgba(215, 192, 206, 0.22);
}

.payment-file-btn.is-dragover {
  border-style: solid;
  background: rgba(215, 192, 206, 0.32);
}

.payment-file-btn input {
  position: absolute;
  width: 1px;
  min-width: 0;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.payment-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.payment-actions .button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 2.25rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.88rem;
}


.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-id {
  margin: 0.35rem auto 0.9rem;
  max-width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 0.85rem;
  background: rgba(215, 192, 206, 0.35);
  font-size: clamp(2rem, 5.5vw, 2.85rem);
  letter-spacing: 0.045em;
  color: var(--plum-deep);
  line-height: 1.1;
}

.confirm {
  text-align: center;
  padding: 1.6rem 1.35rem 1.7rem;
}

.confirm-title {
  margin: 0.15rem 0 0;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--plum-deep);
}

.confirm-message {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.confirm .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  margin-top: 1rem;
}

.confirm .button-row .button {
  min-width: min(100%, 10.5rem);
  min-height: 2.15rem;
  padding: 0.28rem 0.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
  line-height: 1.15;
}

.confirm .text-button {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.text-button {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--plum);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.site-footer {
  background: var(--plum-deep);
  color: white;
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.site-footer .wordmark-name {
  font-size: 2rem;
}

.site-footer .tagline {
  color: white;
  font-size: 1.35rem;
}

.site-footer .contact-list a,
.site-footer .contact-list > li > span {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
}

#prices,
#book,
.style-feature {
  scroll-margin-top: 5.5rem;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.site-header :focus-visible {
  outline-color: white;
}

@media (min-width: 720px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .hero .contact-list {
    justify-content: center;
    gap: 0.22rem 0.4rem;
    margin-top: 1.1rem;
  }

  .hero .contact-break {
    display: block;
    flex-basis: 100%;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
  }

  .hero .contact-list a {
    gap: 0.3rem;
    min-height: 0;
    padding: 0.16rem 0.65rem 0.16rem 0.18rem;
    font-size: 0.82rem;
  }

  .hero .contact-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .styles-heading > p {
    max-width: none;
    white-space: nowrap;
    font-style: italic;
    font-size: 1rem;
  }

  .style-feature {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    grid-template-areas: "media main";
    gap: 0.55rem 1.75rem;
    align-items: stretch;
  }

  .style-feature .style-media {
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-self: center;
  }

  .style-feature.is-flip {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    grid-template-areas: "main media";
  }

  .style-main {
    display: flex;
    flex-direction: column;
    grid-area: main;
    min-width: 0;
    min-height: 100%;
    justify-content: space-between;
    gap: 0.55rem;
  }

  .style-copy {
    min-width: 0;
  }

  .style-blurb {
    max-width: 28rem;
  }

  .style-range,
  .details-btn {
    display: none;
  }

  .style-chart {
    display: block;
    margin-top: 0;
  }

  .style-actions {
    margin-top: 0;
    justify-content: stretch;
    width: 100%;
  }

  .style-actions .button-primary {
    width: 100%;
    min-width: 0;
    min-height: 2.05rem;
    padding: 0.25rem 2.1rem;
    font-size: 0.9rem;
    box-sizing: border-box;
  }

  .contact-list {
    gap: 0.45rem;
  }

  .contact-list a,
  .contact-list > li > span {
    gap: 0.4rem;
    min-height: 0;
    padding: 0.28rem 0.8rem 0.28rem 0.25rem;
    font-size: 0.95rem;
  }

  .contact-icon {
    width: 1.55rem;
    height: 1.55rem;
  }

  .field-grid,
  .steps,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }

  .steps-section .section-heading p:not(.kicker) {
    white-space: nowrap;
    max-width: none;
  }

  .footer-inner {
    align-items: start;
  }
}

@media (max-width: 719px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .header-bar {
    min-height: 3.85rem;
  }

  .wordmark {
    font-size: 1.55rem;
    font-weight: 700;
  }

  .hero {
    padding: 0.85rem 0 0.65rem;
  }

  .hero .kicker {
    margin-bottom: 0.15rem;
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.05;
  }

  .hero .lede {
    margin-top: 0.35rem;
    max-width: 21rem;
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .hero .contact-list {
    gap: 0.22rem;
    margin-top: 0.55rem;
    justify-content: center;
  }

  .section {
    padding: 0.65rem 0 2.25rem;
  }

  .section-heading {
    margin-bottom: 0.85rem;
  }

  .section-heading h2 {
    font-size: 1.45rem;
  }

  .section-heading p:not(.kicker) {
    font-size: 0.92rem;
  }

  .section-heading .kicker {
    margin-bottom: 0.2rem;
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }

  .steps-section .section-heading p:not(.kicker) {
    font-size: 0.8rem;
    margin-top: 0.45rem;
  }

  .steps {
    gap: 0.55rem;
  }

  .steps li {
    padding: 0.75rem 0.8rem 0.8rem;
    border-radius: 0.85rem;
    box-shadow: 0 6px 16px rgba(42, 16, 40, 0.05);
  }

  .steps li::before {
    height: 2px;
  }

  .step-num {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 0.92rem;
    box-shadow:
      0 0 0 3px rgba(154, 77, 110, 0.1),
      0 4px 10px rgba(42, 16, 40, 0.12);
  }

  .steps h3 {
    margin: 0.5rem 0 0.25rem;
    font-size: 1.02rem;
  }

  .steps p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .book-intro {
    font-size: 0.74rem;
  }

  .referral-note {
    margin-top: 0.45rem;
    font-size: 0.84rem;
  }

  .form-card {
    padding: 0.85rem 0.8rem 1rem;
    border-radius: 1rem;
  }

  .form-card .field {
    margin-top: 0.7rem;
  }

  .form-card .field-grid {
    margin-top: 0.7rem;
    gap: 0 0.65rem;
  }

  .form-card input,
  .form-card select {
    height: 2.5rem;
    min-height: 2.5rem;
    padding: 0.35rem 0.7rem;
    font-size: 1rem;
  }

  .form-card select {
    padding-right: 1.85rem;
    background-size: 0.75rem;
    background-position: right 0.55rem center;
  }

  .field-control.has-price select {
    padding-right: 4.35rem;
  }

  .field-price {
    right: 1.65rem;
    font-size: 0.86rem;
    font-weight: 700;
  }

  .form-card textarea {
    min-height: 4.5rem;
    padding: 0.55rem 0.7rem;
    font-size: 1rem;
  }

  .form-card .field label {
    font-size: 0.8rem;
    margin-bottom: 0.18rem;
    min-height: 0;
  }

  .form-card .hint {
    margin-top: 0.28rem;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .form-card .button-full {
    width: 75%;
    max-width: 75%;
    min-height: 2.25rem;
    margin: 0.85rem auto 0;
    padding: 0.35rem 0.9rem;
    font-size: 0.88rem;
  }

  .booking-summary {
    margin-top: 0.85rem;
  }

  .booking-summary div {
    grid-template-columns: 4.75rem 1fr;
    min-height: 2.2rem;
    padding: 0 0.7rem;
  }

  .booking-summary dt,
  .booking-summary dd {
    font-size: 0.86rem;
  }

  .booking-summary-total dt,
  .booking-summary-total dd {
    font-size: 0.95rem;
  }

  .summary div {
    grid-template-columns: 5.5rem 1fr;
    min-height: 0;
    padding: 0.35rem 0;
    gap: 0.45rem 0.75rem;
  }

  .summary dt,
  .summary dd {
    font-size: 0.9rem;
  }

  .styles-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .styles-heading-copy {
    min-width: 0;
    flex: 1 1 auto;
  }

  .styles-heading-copy h2 {
    margin: 0;
  }

  .style-search {
    display: block;
    flex: 0 0 auto;
    position: relative;
    width: min(42%, 8.5rem);
    margin: 0;
  }

  .style-search input {
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    min-height: 2rem;
    height: 2rem;
    padding: 0.2rem 1.55rem 0.2rem 0.55rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background:
      white
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='11' cy='11' r='6.25' stroke='%233a1736' stroke-width='1.8'/%3E%3Cpath d='M16.2 16.2 L20 20' stroke='%233a1736' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E")
      right 0.4rem center / 0.85rem 0.85rem no-repeat;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.2;
  }

  .style-search input::-webkit-search-decoration,
  .style-search input::-webkit-search-cancel-button,
  .style-search input::-webkit-search-results-button,
  .style-search input::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
  }

  .style-search input::placeholder {
    color: var(--muted);
  }

  .style-search input:focus {
    outline: 2px solid var(--focus);
    outline-offset: 1px;
  }

  .section-heading.styles-heading > p:not(.kicker) {
    margin-top: 0.5rem;
    font-style: italic;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .style-feature.is-search-hidden {
    display: none;
  }

  .styles-empty.is-visible {
    display: block;
  }

  .book-modal {
    padding: 1rem 0.75rem;
    align-items: center;
    overflow: auto;
  }

  .book-modal.booking-payment {
    overflow: hidden;
  }

  .book-modal-backdrop {
    background: rgba(42, 16, 40, 0.55);
  }

  .book-modal-card {
    width: min(100%, 22.75rem);
    max-height: none;
    overflow: visible;
    border-radius: 1.05rem;
    border: 1px solid #e4d8d2;
    padding: 1.15rem 1rem 1.2rem;
    box-shadow: 0 18px 42px rgba(42, 16, 40, 0.3);
  }

  .booking-payment-card {
    width: min(100%, 22.75rem);
    max-height: min(92vh, 36rem);
    overflow: hidden;
    padding: 0.9rem 0.85rem 0.85rem;
  }

  .booking-payment-card .book-modal-title {
    font-size: 1.15rem;
  }

  .booking-payment-info {
    font-size: 0.84rem;
    padding: 0.55rem 0.65rem;
  }

  .payment-booking-id {
    font-size: 1.05rem;
  }

  .payment-method-name {
    font-size: 0.92rem;
  }

  .payment-method-value,
  .payment-cashapp-link {
    font-size: 0.92rem;
  }

  .payment-actions .button {
    min-height: 2.15rem;
    font-size: 0.84rem;
  }

  .book-modal-title {
    margin: 0 1.75rem 0.35rem 0;
    font-size: 1.22rem;
  }

  .book-modal-close {
    width: 2rem;
    height: 2rem;
    font-size: 1.35rem;
  }

  .book-modal-card .style-panel-intro {
    margin-bottom: 0.7rem;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .style-book-fields {
    gap: 0.45rem 0.5rem;
    margin-bottom: 0;
  }

  .book-modal-card .field select,
  .book-modal-card .book-select-native {
    font-size: 16px;
  }

  .book-modal-card .field label {
    margin-bottom: 0.15rem;
    font-size: 0.76rem;
    color: var(--plum-deep);
  }

  .book-modal-card .book-select-native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
  }

  .book-modal-card .book-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.3rem;
    width: 100%;
    min-height: 1.85rem;
    padding: 0.18rem 0.35rem 0.18rem 0.45rem;
    border: 1px solid #7d7d7d;
    border-radius: 0.4rem;
    background: linear-gradient(180deg, #fbfbfb 0%, #e6e6e6 100%);
    color: var(--ink);
    font: inherit;
    font-size: 0.74rem;
    line-height: 1.15;
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }

  .book-modal-card .book-select-trigger::after {
    content: "";
    flex: 0 0 auto;
    width: 0.5rem;
    height: 0.78rem;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 18'%3E%3Cpath fill='%23333333' d='M6 1 L11 7 H1 Z'/%3E%3Cpath fill='%23333333' d='M6 17 L1 11 H11 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .book-modal-card .book-select-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.22rem);
    z-index: 6;
    margin: 0;
    padding: 0.28rem 0;
    list-style: none;
    background: rgba(52, 52, 55, 0.96);
    border-radius: 0.55rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    max-height: 11.5rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .book-modal-card .book-select-menu:not([hidden]) {
    display: block;
  }

  .book-modal-card .book-select-menu li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    color: #fff;
    font-size: 0.78rem;
    line-height: 1.2;
    cursor: pointer;
  }

  .book-modal-card .book-select-menu li.is-selected::before {
    content: "✓";
    flex: 0 0 0.8rem;
    font-size: 0.75rem;
    line-height: 1;
  }

  .book-modal-card .book-select-menu li:not(.is-selected)::before {
    content: "";
    flex: 0 0 0.9rem;
  }

  .book-modal-card .book-select-menu li:active,
  .book-modal-card .book-select-menu li:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .book-modal-card .button {
    min-height: 2.1rem;
    margin-top: 0.85rem;
    padding: 0.32rem 1.2rem;
    font-size: 0.84rem;
  }

  .style-book-price {
    margin-top: 0.6rem;
    font-size: 1.2rem;
  }

  .styles-list {
    gap: 2.1rem;
  }

  .style-jump {
    display: none;
  }

  .style-feature {
    grid-template-columns: minmax(6.75rem, 36%) minmax(0, 1fr);
    gap: 0.7rem 0.85rem;
    align-items: start;
  }

  .style-media {
    border-radius: 0.95rem;
    box-shadow: 0 10px 22px rgba(42, 16, 40, 0.1);
  }

  .style-media-dots {
    bottom: 0.3rem;
    gap: 0.16rem;
  }

  .style-media-dot {
    width: 0.22rem;
    height: 0.22rem;
  }

  .media-lightbox-dots {
    bottom: 0.7rem;
    gap: 0.2rem;
  }

  .media-lightbox-dot {
    width: 0.28rem;
    height: 0.28rem;
  }

  .media-lightbox-slide {
    padding: 3.5rem 0.65rem 3.85rem;
  }

  .media-lightbox-nav.is-prev {
    left: 0.35rem;
  }

  .media-lightbox-nav.is-next {
    right: 0.35rem;
  }

  .media-lightbox-slide img,
  .media-lightbox-slide video {
    max-height: calc(100vh - 5.75rem);
    border-radius: 0;
  }

  .style-copy h3 {
    font-size: 1.08rem;
  }

  .style-blurb {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .style-range {
    margin-top: 0.4rem;
    font-size: 1rem;
  }

  .style-note {
    font-size: 0.78rem;
  }

  .style-feature.is-details-open .style-chart {
    margin-top: 0.15rem;
  }

  .style-actions {
    justify-content: stretch;
    gap: 0.45rem;
    margin-top: 0.15rem;
  }

  .style-actions .button {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    min-height: 2.15rem;
    padding: 0.28rem 0.55rem;
    font-size: 0.78rem;
  }

  .style-actions .button-primary {
    min-width: 0;
    padding-inline: 0.7rem;
  }

  .style-actions .details-btn {
    min-width: 0;
  }

  .contact-list {
    gap: 0.3rem;
    justify-content: center;
  }

  .contact-break {
    display: block;
    flex-basis: 100%;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
  }

  .contact-list > li:not(.contact-break) {
    display: flex;
    justify-content: center;
  }

  .contact-list a,
  .contact-list > li > span {
    gap: 0.18rem;
    min-height: 0;
    max-width: 100%;
    padding: 0.1rem 0.35rem 0.1rem 0.1rem;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .contact-icon {
    width: 0.95rem;
    height: 0.95rem;
  }

  .site-header .wrap {
    width: calc(100% - 1rem);
  }

  .header-bar {
    gap: 0.45rem;
  }

  .header-nav {
    gap: 0;
  }

  .header-nav .nav-cta {
    margin-left: 0;
    padding: 0.4rem 0.85rem;
    font-size: 0.66rem;
  }

  .header-nav a[href="#prices"],
  .header-nav a[href^="tel:"] {
    display: none;
  }

  .table-scroll {
    overflow: visible;
    padding-inline: 0;
  }

  .menu-table,
  .menu-table.cols-5,
  .menu-table.cols-3,
  .menu-table.cols-1 {
    min-width: 0;
  }

  .menu-table thead {
    display: none;
  }

  .menu-table,
  .menu-table tbody,
  .menu-table tr,
  .menu-table th,
  .menu-table td {
    display: block;
    width: auto;
  }

  .menu-table tr {
    padding: 0.35rem 1rem 0.85rem;
    border-bottom: 1px solid var(--line);
  }

  .menu-table tr:last-child {
    border-bottom: 0;
  }

  .menu-table .length {
    position: static;
    width: auto;
    min-width: 0;
    height: auto;
    padding: 0.65rem 0 0.15rem;
    background: transparent;
    box-shadow: none;
    border: 0;
  }

  .menu-table tr.is-selected {
    background: #f8f1f4;
  }

  .menu-table tr.is-selected .length,
  .menu-table tr.is-selected td {
    background: transparent;
  }

  .menu-table td {
    display: grid;
    grid-template-columns: 1fr 6.5rem;
    align-items: center;
    height: var(--cell);
    padding: 0;
    text-align: left;
  }

  .menu-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 700;
  }

  .price-btn {
    width: 6.5rem;
    margin-left: auto;
  }

  .style-chart .table-scroll {
    overflow-x: hidden;
    max-width: 100%;
    padding: 0.1rem 0 0.2rem;
  }

  .style-chart .menu-table,
  .style-chart .menu-table.cols-5,
  .style-chart .menu-table.cols-3,
  .style-chart .menu-table.cols-1 {
    display: table;
    table-layout: fixed;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .style-chart .menu-table.cols-5,
  .style-chart .menu-table.cols-3,
  .style-chart .menu-table.cols-1 {
    min-width: 0;
  }

  .style-chart .menu-table thead {
    display: table-header-group;
  }

  .style-chart .menu-table tbody {
    display: table-row-group;
  }

  .style-chart .menu-table tr {
    display: table-row;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .style-chart .menu-table th,
  .style-chart .menu-table td {
    display: table-cell;
    width: auto;
    min-width: 0;
    height: 2.05rem;
    padding: 0.18rem 0.08rem;
    font-size: 0.68rem;
    text-align: center;
    vertical-align: middle;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .style-chart .menu-table td::before {
    content: none;
  }

  .style-chart .menu-table .length,
  .style-chart .menu-table thead th:first-child {
    position: static;
    width: 18%;
    min-width: 0;
    max-width: none;
    height: 2.05rem;
    padding: 0.18rem 0.1rem;
    background: #d7c0ce;
    color: var(--plum-deep);
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(154, 77, 110, 0.08), 0 0 10px rgba(58, 23, 54, 0.12);
  }

  .style-chart .menu-table thead th {
    background: #d7c0ce;
    color: var(--plum-deep);
  }

  .style-chart .menu-table thead th:first-child {
    border-radius: 0.85rem 0 0 0;
  }

  .style-chart .menu-table thead th:last-child {
    border-radius: 0 0.2rem 0.2rem 0;
  }

  .style-chart .menu-table tbody tr:last-child .length {
    border-radius: 0 0 0.2rem 0.2rem;
  }

  .style-chart .price-cell {
    min-width: 0;
    width: 100%;
  }

  .style-chart .chart-pill {
    font-size: 0.62rem;
    letter-spacing: 0;
    white-space: normal;
    line-height: 1.15;
  }

  .style-chart .menu-table .length .chart-pill {
    font-size: 0.64rem;
  }

  .style-chart,
  .style-feature,
  .style-copy {
    max-width: 100%;
    min-width: 0;
  }

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

  .field-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .field-grid {
    gap: 1rem;
  }

  .wrap {
    width: min(var(--wrap), calc(100% - 1.25rem));
  }

  html,
  body {
    overflow-x: clip;
  }
}

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

  .button-pill,
  .style-media,
  .style-media img,
  .style-media video {
    transition: none;
  }

  .style-media-viewport {
    scroll-behavior: auto;
  }

  .media-lightbox-viewport {
    scroll-behavior: auto;
  }

  .button-pill:hover {
    transform: none;
  }

  .style-media:not(.has-carousel):hover img,
  .style-media:not(.has-carousel):active img {
    transform: none;
  }

  .style-media:hover,
  .style-media:active {
    border-color: var(--rose);
    box-shadow: 0 14px 30px rgba(42, 16, 40, 0.12);
  }
}

@media print {
  .site-header,
  .steps-section,
  #book,
  .style-jump,
  .phone-hint {
    display: none;
  }

  body {
    background: white;
  }

  .style-feature {
    break-inside: avoid;
  }
}
