:root {
  --bg-cream: #fff8f8;
  --bg-blush: #fce4ec;
  --bg-panel: #ffffff;
  --ink: #0d141a;
  --taupe: #56585e;
  --taupe-soft: #8e8e8e;
  --gold: #63c4a1;
  --gold-soft: rgba(99, 196, 161, 0.28);
  --line: rgba(13, 20, 26, 0.18);
  --book-red: #0d141a;
  --book-red-dark: #000000;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(13, 20, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(99, 196, 161, 0.22), transparent 35%),
    linear-gradient(180deg, #fff8f8 0%, #fce4ec 45%, #ffffff 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

body {
  display: flex;
  justify-content: center;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.section-brand {
  position: fixed;
  top: calc(48px + env(safe-area-inset-top));
  left: max(24px, calc((100vw - 430px) / 2 + 24px));
  z-index: 1100;
  display: flex;
  width: 138px;
  flex-direction: column;
  align-items: flex-start;
  color: #8e7f81;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 260ms ease, transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-brand__logo {
  display: block;
  width: 132px;
  height: 46px;
  background: currentColor;
  -webkit-mask: url("assets/kumaw-transparent-cropped.png") center / contain no-repeat;
  mask: url("assets/kumaw-transparent-cropped.png") center / contain no-repeat;
}

.section-brand small {
  display: block;
  width: 132px;
  margin-top: 3px;
  color: var(--ink);
  font-size: 0.43rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

body:not([data-active-section="section-1"])[data-active-section] .section-brand {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-shell {
  position: relative;
  width: min(100vw, 430px);
  height: 100svh;
  overflow: hidden;
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
}

.snap-container {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.snap-container::-webkit-scrollbar {
  display: none;
}

.panel {
  position: relative;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

.panel-inner {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 24px calc(36px + env(safe-area-inset-bottom));
}

.panel-hero {
  --hero-pad: 50px;
  padding:
    calc(var(--hero-pad) + env(safe-area-inset-top))
    24px
    calc(var(--hero-pad) + env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(13, 20, 26, 0.1) 0%, rgba(13, 20, 26, 0.16) 48%, rgba(13, 20, 26, 0.56) 100%),
    url("assets/first.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 248, 0.12) 0%, transparent 24%),
    linear-gradient(180deg, transparent 50%, rgba(13, 20, 26, 0.5) 100%);
}

.brand-lockup,
.hero-copy,
.hero-actions {
  position: relative;
  z-index: 1;
}

.brand-lockup {
  position: absolute;
  top: calc(var(--hero-pad) + env(safe-area-inset-top));
  left: 50%;
  width: calc(100% - 48px);
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff;
  animation: heroFadeDown 1s ease-out both;
}

.brand-name-logo {
  display: block;
  width: clamp(200px, 56vw, 280px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.24));
}

.brand-subtitle {
  width: clamp(200px, 56vw, 280px);
  margin: 4px auto 0;
  font-size: clamp(0.46rem, 2.2vw, 0.6rem);
  letter-spacing: 0.26em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 168px;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  animation: heroFadeUp 1.1s ease-out 140ms both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.hero-copy h1,
.panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  padding-bottom:15px;
}

.hero-copy h1 {
  font-size: clamp(1.68rem, 7.8vw, 2.7rem);
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.045em;
}

.hero-description {
  max-width: 100%;
  margin: 0 auto;
  font-size: clamp(0.64rem, 3.1vw, 0.8rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-transform: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.94);
  white-space: nowrap;
}

.hero-description span {
  display: inline;
}

.hero-description-desktop {
  display: none;
}

.hero-support {
  display: contents;
}

.hero-actions {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  animation: heroFadeUp 1s ease-out 280ms both;
}

.section-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.hero-scroll-cue {
  position: absolute;
  right: 24px;
  bottom: calc(34px + env(safe-area-inset-bottom));
  left: 24px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation:
    heroCueReveal 0.8s ease-out 5s forwards,
    heroCueBounce 2.6s ease-in-out 5.8s infinite;
}

.section-scroll-text {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-scroll-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.section-scroll-button svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section-scroll-cue-light {
  position: fixed;
  right: 24px;
  bottom: calc(34px + env(safe-area-inset-bottom));
  left: 24px;
  z-index: 12;
  color: var(--taupe);
  opacity: 0;
  pointer-events: none;
}

body[data-active-section="section-2"] .section-scroll-cue-light.section-scroll-cue-section-2,
body[data-active-section="section-3"] .section-scroll-cue-light.section-scroll-cue-section-3,
body[data-active-section="section-4"] .section-scroll-cue-light.section-scroll-cue-section-4,
body[data-active-section="section-5"] .section-scroll-cue-light.section-scroll-cue-section-5,
body[data-active-section="section-6"] .section-scroll-cue-light.section-scroll-cue-section-6 {
  opacity: 0;
  pointer-events: auto;
  animation:
    heroCueReveal 0.8s ease-out 1.5s forwards,
    heroCueBounce 2.6s ease-in-out 2.3s infinite;
}

.section-scroll-cue-light .section-scroll-button {
  border-color: rgba(13, 20, 26, 0.24);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 22px rgba(13, 20, 26, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  backdrop-filter: blur(10px);
}

.button:active {
  transform: scale(0.98);
}

.panel-hero .button,
.panel-hero .eyebrow {
  text-transform: uppercase;
}

.button-primary {
  background: var(--book-red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 167, 167, 0.3);
}

.button-primary:hover {
  background: var(--book-red-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.hero-action-button {
  font-family: "Manrope", sans-serif;
  white-space: nowrap;
}

.hero-book-button {
  width: 150px;
  background: #8d735e;
  border-color: transparent;
}

.hero-collab-button {
  width: 120px;
}

@media (max-width: 899px) {
  .hero-action-button {
    min-height: 34px;
    font-size: 0.66rem;
  }

  .hero-book-button {
    width: 120px;
    padding: 0 16px;
  }

  .hero-collab-button {
    width: 92px;
    padding: 0 11px;
  }
}

.button-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(13, 20, 26, 0.14);
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.section-dots {
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 1;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

body[data-active-section="section-4"] .section-dots {
  opacity: 0;
  pointer-events: none;
}

.section-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    height 180ms ease;
}

.section-dots.on-light .section-dot {
  background: rgba(13, 20, 26, 0.3);
}

.section-dot.active {
  height: 24px;
  background: var(--gold);
}

.section-dots.on-light .section-dot.active {
  background: var(--book-red);
}

.panel-story {
  --panel-copy-gap: clamp(8px, 1.7svh, 18px);
  --panel-block-gap: clamp(12px, 2.8svh, 28px);
  height: 100vh;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(99, 196, 161, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
}

.panel-story .panel-inner {
  height: 100%;
  min-height: 0;
  justify-content: space-between;
  gap: var(--panel-block-gap);
  padding-top: calc(clamp(16px, 4.5svh, 38px) + env(safe-area-inset-top));
  padding-bottom: calc(clamp(48px, 9svh, 84px) + env(safe-area-inset-bottom));
}

.panel-comparison {
  --comparison-copy-gap: clamp(6px, 1.5svh, 16px);
  height: 100vh;
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 12%, rgba(99, 196, 161, 0.22), transparent 24%),
    linear-gradient(155deg, #fff8f8 0%, #fce4ec 56%, #ffffff 100%);
}

.panel-comparison .panel-inner {
  height: 100%;
  min-height: 0;
  justify-content: flex-start;
  gap: var(--comparison-copy-gap);
  padding-top: calc(clamp(12px, 4svh, 38px) + env(safe-area-inset-top));
  padding-bottom: calc(clamp(48px, 10svh, 96px) + env(safe-area-inset-bottom));
}

.comparison-heading .section-text {
  max-width: 440px;
  margin-top: var(--comparison-copy-gap);
  font-size: clamp(0.78rem, min(4vw, 1.8svh), 0.98rem);
}

.comparison-heading {
  padding-right: 56px;
}

.comparison-heading .section-kicker {
  margin-bottom: clamp(4px, 1svh, 12px);
  font-size: clamp(0.62rem, min(3vw, 1.35svh), 0.74rem);
}

.panel-comparison .comparison-heading h2 {
  max-width: 280px;
  padding-bottom: 0;
  font-size: clamp(2rem, min(11vw, 6svh), 3.4rem);
}

.comparison-showcase {
  width: 100%;
  margin: 0 auto;
  padding-right: 10px;
}

.comparison-stage {
  --reveal: 50%;
  position: relative;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 30px;
  background: #e6e2df;
  box-shadow: 0 24px 58px rgba(13, 20, 26, 0.18);
  touch-action: none;
}

.comparison-image,
.comparison-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison-image {
  display: block;
  object-fit: cover;
  object-position: 50% 30%;
  transform: scale(1.8);
  transform-origin: 100% 38%;
  user-select: none;
  -webkit-user-drag: none;
}

.comparison-after {
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}

.comparison-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.comparison-label-after {
  left: 16px;
}

.comparison-label-before {
  right: 16px;
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: inherit;
  outline: 0;
  background: transparent;
  cursor: ew-resize;
}

.comparison-range::-webkit-slider-runnable-track {
  height: 100%;
  background: transparent;
}

.comparison-range::-webkit-slider-thumb {
  width: 52px;
  height: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
}

.comparison-range::-moz-range-track {
  height: 100%;
  border: 0;
  background: transparent;
}

.comparison-range::-moz-range-thumb {
  width: 52px;
  height: 100%;
  border: 0;
  background: transparent;
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  z-index: 4;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 18px rgba(13, 20, 26, 0.28);
  pointer-events: none;
}

.comparison-handle {
  position: absolute;
  top: 70%;
  left: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 5px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(13, 20, 26, 0.24);
}

.comparison-handle svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.comparison-range:focus-visible + .comparison-divider .comparison-handle {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.comparison-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: clamp(3px, 0.9svh, 11px) 0 0;
  color: var(--taupe);
  font-size: clamp(0.6rem, min(3vw, 1.2svh), 0.72rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-hint span {
  color: var(--book-red);
  font-size: 1rem;
}

.panel-services {
  --panel-copy-gap: clamp(8px, 1.7svh, 18px);
  --panel-block-gap: clamp(12px, 2.8svh, 28px);
  height: 100vh;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #fce4ec 0%, #fce4ec 100%);
}

.panel-services .panel-inner {
  height: 100%;
  min-height: 0;
  justify-content: flex-start;
  gap: var(--panel-block-gap);
  padding-top: calc(clamp(16px, 4.5svh, 38px) + env(safe-area-inset-top));
  padding-bottom: calc(clamp(48px, 9svh, 84px) + env(safe-area-inset-bottom));
}

.panel-collab {
  --panel-copy-gap: clamp(8px, 1.7svh, 18px);
  --panel-block-gap: clamp(12px, 2.8svh, 28px);
  height: 100vh;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.45), transparent 24%),
    linear-gradient(180deg, #fff8f8 0%, #fff8f8 100%);
}

.panel-cta {
  --panel-copy-gap: clamp(8px, 1.7svh, 18px);
  --panel-block-gap: clamp(12px, 2.8svh, 28px);
  height: 100vh;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(99, 196, 161, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
}

.panel-custom-content {
  --panel-copy-gap: clamp(8px, 1.7svh, 18px);
  --panel-block-gap: clamp(12px, 2.8svh, 28px);
  height: 100vh;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fce4ec 100%);
}

.panel-custom-content .panel-inner {
  height: 100%;
  min-height: 0;
  gap: var(--panel-block-gap);
  justify-content: center;
  padding-top: calc(clamp(16px, 4.5svh, 38px) + env(safe-area-inset-top));
  padding-bottom: calc(clamp(48px, 9svh, 84px) + env(safe-area-inset-bottom));
}

.panel-collab .panel-inner,
.panel-cta .panel-inner {
  height: 100%;
  min-height: 0;
  padding-top: calc(clamp(16px, 4.5svh, 38px) + env(safe-area-inset-top));
  padding-bottom: calc(clamp(48px, 9svh, 84px) + env(safe-area-inset-bottom));
}

.panel-custom-content .section-text {
  white-space: pre-line;
}

.custom-section-grid {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.custom-section-column {
  border: 1px solid rgba(13, 20, 26, 0.16);
  border-radius: 14px;
  background: rgba(255, 248, 248, 0.68);
  padding: 18px;
}

.custom-section-column h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 8vw, 2.4rem);
  line-height: 1;
}

.custom-section-column p {
  margin: 12px 0 0;
  color: var(--taupe);
  font-size: 0.95rem;
  line-height: 1.65;
  white-space: pre-line;
}

.custom-section-column .button {
  margin-top: 16px;
}

.panel h2 {
  font-size: clamp(2.15rem, 11vw, 3.4rem);
  color: var(--ink);
  text-wrap: balance;
}

:is(.panel-story, .panel-services, .panel-collab, .panel-cta, .panel-custom-content) h2 {
  padding-bottom: 0;
  font-size: clamp(2rem, min(11vw, 6.4svh), 3.4rem);
}

:is(.panel-story, .panel-services, .panel-collab, .panel-cta, .panel-custom-content) .section-kicker {
  font-size: clamp(0.62rem, min(3vw, 1.4svh), 0.74rem);
}

:is(.panel-story, .panel-services, .panel-collab, .panel-cta, .panel-custom-content) .section-text {
  margin-top: var(--panel-copy-gap);
  font-size: clamp(0.76rem, min(4vw, 1.8svh), 0.98rem);
  line-height: clamp(1.42em, 2.8svh, 1.7em);
}

.section-kicker {
  color: var(--taupe-soft);
}

.section-text {
  margin: 18px 0 0;
  color: var(--taupe);
  font-size: 0.98rem;
  line-height: 1.7;
}

.about-copy .section-text {
  margin-top: var(--panel-copy-gap);
}

.about-copy,
.about-collage {
  padding-right: 10px;
}

.about-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, auto);
  align-items: center;
  gap: clamp(7px, 1.7svh, 14px);
  margin-top: clamp(0px, 1svh, 8px);
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 40px rgba(13, 20, 26, 0.12);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-large {
  grid-row: 1 / span 2;
  aspect-ratio: 1 / 1;
}

.about-photo-top,
.about-photo-bottom {
  justify-self: center;
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1 / 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.stat-card,
.service-card,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(13, 20, 26, 0.08);
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 14px;
  border-radius: 22px;
}

.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}

.stat-label {
  color: var(--taupe);
  font-size: 0.78rem;
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.review-heading .section-kicker {
  margin-bottom: var(--panel-copy-gap);
}

.comparison-heading .comparison-title {
  font-size: clamp(1.85rem, min(9vw, 5.8svh), 3.4rem);
  white-space: nowrap;
}

.review-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.review-carousel__viewport {
  overflow: hidden;
  margin-inline: -24px;
  padding-inline: 24px;
}

.review-carousel__track {
  display: flex;
  width: 100%;
  gap: clamp(8px, 1.7svh, 14px);
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.review-slide {
  min-width: 0;
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 20, 26, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(58, 35, 47, 0.12);
}

.review-slide__gallery {
  display: grid;
  height: clamp(150px, 27svh, 220px);
  gap: 3px;
  overflow: hidden;
  background: #eadbe0;
}

.review-slide__gallery--three {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.8fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.review-slide__gallery--three img:first-child {
  grid-row: 1 / -1;
}

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

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

.review-slide__copy {
  position: relative;
  padding: clamp(13px, 2.4svh, 20px) clamp(16px, 5vw, 24px) clamp(15px, 2.8svh, 23px);
}

.review-slide__copy::before {
  position: absolute;
  top: 8px;
  right: 18px;
  content: "“";
  color: rgba(99, 196, 161, 0.2);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.5rem, 17vw, 6.5rem);
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  position: relative;
  z-index: 1;
  color: #db536f;
  font-size: clamp(0.67rem, min(3.3vw, 1.45svh), 0.82rem);
  letter-spacing: 0.16em;
}

.review-slide blockquote {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  margin: clamp(7px, 1.4svh, 12px) 0 0;
  overflow: hidden;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.49rem, min(2.5vw, 1.175svh), 0.675rem);
  font-weight: 600;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-author {
  margin: clamp(8px, 1.7svh, 14px) 0 0;
  color: var(--taupe);
  font-size: clamp(0.61rem, min(3vw, 1.25svh), 0.72rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-carousel__nav {
  display: inline-grid;
  grid-template-columns: 38px auto 38px;
  align-items: center;
  align-self: flex-end;
  gap: 5px;
  width: auto;
  margin-top: clamp(9px, 1.8svh, 16px);
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(13, 20, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.review-carousel__button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(13, 20, 26, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
}

.review-carousel__button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.review-carousel__nav .review-carousel__button {
  border-color: transparent;
  background: transparent;
}

.review-carousel__count {
  display: flex;
  min-width: 68px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--taupe-soft);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
}

.review-carousel__count span {
  color: var(--ink);
  font-weight: 800;
}

.review-carousel__count i {
  width: 14px;
  height: 1px;
  background: rgba(13, 20, 26, 0.28);
}

.review-carousel__button:focus-visible {
  outline: 3px solid rgba(99, 196, 161, 0.58);
  outline-offset: 3px;
}

.service-card {
  padding: 20px;
  border-radius: 24px;
}

.service-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 600;
}

.service-copy {
  margin: 8px 0 0;
  color: var(--taupe);
  line-height: 1.65;
}

.pill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  gap: clamp(5px, 1.2svh, 10px);
  margin-top: var(--panel-block-gap);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(30px, 5svh, 40px);
  padding: 0 clamp(8px, 3vw, 16px);
  border-radius: 999px;
  border: 1px solid rgba(99, 196, 161, 0.44);
  background: rgba(255, 248, 248, 0.72);
  color: var(--ink);
  font-size: clamp(0.67rem, min(3.4vw, 1.65svh), 0.9rem);
  line-height: 1.15;
  text-align: center;
}

.pill-button {
  cursor: pointer;
  font-family: inherit;
}

.pill-button:active {
  transform: scale(0.98);
}

.location-heading .section-text {
  max-width: 34ch;
}

.location-directory {
  width: 100%;
  margin-top: var(--panel-block-gap);
  padding: 0 10px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.location-directory__header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 1px 2px clamp(9px, 1.7svh, 14px);
}

.location-directory__pin {
  display: grid;
  flex: 0 0 auto;
  width: clamp(34px, 5.5svh, 42px);
  height: clamp(34px, 5.5svh, 42px);
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.location-directory__pin svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.location-directory__header p,
.location-directory__header strong {
  margin: 0;
}

.location-directory__header p {
  color: var(--taupe-soft);
  font-size: clamp(0.55rem, min(2.8vw, 1.15svh), 0.68rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-directory__header strong {
  display: block;
  margin-top: 3px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, min(4.8vw, 2.1svh), 1.28rem);
  line-height: 1;
}

.location-directory__groups {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: clamp(6px, 1.2svh, 9px);
  align-items: start;
}

.location-group {
  overflow: hidden;
  border: 1px solid rgba(13, 20, 26, 0.09);
  border-radius: 14px;
  background: rgba(255, 248, 248, 0.76);
}

.location-group--bandung {
  grid-row: 1 / span 2;
}

.location-group__heading {
  display: flex;
  min-height: clamp(32px, 5svh, 39px);
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 9px;
  background: #8e7f81;
  color: #fff9f9;
}

.location-group__heading h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.9rem, min(4.4vw, 1.9svh), 1.12rem);
  line-height: 1;
}

.location-group__heading span {
  flex: 0 0 auto;
  color: #fff9f9;
  font-size: clamp(0.47rem, min(2.3vw, 0.95svh), 0.58rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-group__list {
  border-top: 1px solid rgba(13, 20, 26, 0.08);
}

.location-link {
  display: flex;
  width: 100%;
  min-height: clamp(29px, 4.6svh, 36px);
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 3px 9px;
  border: 0;
  border-top: 1px solid rgba(13, 20, 26, 0.07);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(0.56rem, min(2.85vw, 1.15svh), 0.72rem);
  font-weight: 650;
  line-height: 1.12;
  text-align: left;
}

.location-link:first-child {
  border-top: 0;
}

.location-link i {
  color: #db536f;
  font-family: inherit;
  font-size: 0.78rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.location-link:active {
  background: rgba(99, 196, 161, 0.12);
}

.location-link:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid rgba(99, 196, 161, 0.55);
  outline-offset: -3px;
}

.contact-card {
  margin-top: var(--panel-block-gap);
  padding: 0 10px 0 0;
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.contact-label {
  margin: 0;
  color: var(--taupe-soft);
  font-size: clamp(0.55rem, min(2.8vw, 1.15svh), 0.68rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-card__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 1px 3px clamp(8px, 1.5svh, 12px);
}

.cta-card__intro > span {
  color: var(--taupe);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.9rem, min(4.4vw, 1.8svh), 1.1rem);
  font-weight: 600;
}

.cta-booking {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  min-height: clamp(66px, 10.5svh, 80px);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(12px, 2.2svh, 16px) clamp(15px, 4.8vw, 21px);
  border: 0;
  border-radius: 16px;
  background-color: #8e7f81;
  background-image: radial-gradient(circle at 92% 10%, rgba(255, 249, 249, 0.14), transparent 32%);
  color: #fff9f9;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: transform 180ms ease, background-color 180ms ease;
}

.cta-booking__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-booking small,
.cta-support__item small {
  color: rgba(255, 249, 249, 0.7);
  font-size: clamp(0.55rem, min(2.8vw, 1.12svh), 0.66rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-booking strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, min(6.8vw, 2.9svh), 1.85rem);
  font-weight: 600;
  line-height: 1;
}

.cta-booking__icon {
  display: grid;
  flex: 0 0 auto;
  width: clamp(42px, 7svh, 50px);
  height: clamp(38px, 6.4svh, 46px);
  place-items: center;
  border-left: 1px solid rgba(255, 249, 249, 0.34);
  border-radius: 0;
  background: transparent;
  color: #fff9f9;
}

.cta-booking__icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.cta-booking:hover {
  background-color: #817174;
}

.cta-booking:hover .cta-booking__icon svg {
  transform: translate(2px, -2px);
}

.cta-booking:active {
  transform: scale(0.985);
}

.cta-card__aside-label {
  margin: clamp(10px, 2svh, 16px) 3px clamp(6px, 1.2svh, 10px);
  color: var(--taupe-soft);
  font-size: clamp(0.52rem, min(2.6vw, 1.05svh), 0.64rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cta-support {
  display: grid;
  gap: clamp(5px, 1.1svh, 8px);
}

.cta-support__item {
  display: flex;
  width: 100%;
  min-height: clamp(42px, 6.9svh, 52px);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(13, 20, 26, 0.09);
  border-radius: 14px;
  background: rgba(255, 248, 248, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.cta-support__item > span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cta-support__item small {
  color: var(--taupe-soft);
  font-size: clamp(0.47rem, min(2.4vw, 0.96svh), 0.58rem);
}

.cta-support__item strong {
  font-size: clamp(0.68rem, min(3.4vw, 1.38svh), 0.84rem);
}

.cta-support__item i {
  color: #db536f;
  font-style: normal;
  transition: transform 180ms ease;
}

.cta-booking:focus-visible,
.cta-support__item:focus-visible {
  outline: 2px solid #dd8686;
  outline-offset: 3px;
}

.booking-modal {
  --book-red: #8d735e;
  --book-red-dark: #6f5948;
  --book-hover-surface: #fffaf6;
  --book-hover-border: rgba(141, 115, 94, 0.5);
  --book-hover-shadow: 0 14px 30px rgba(75, 55, 43, 0.14);
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13, 20, 26, 0.42);
  backdrop-filter: blur(6px);
  transition: background-color 220ms ease;
}

.booking-sheet {
  position: relative;
  width: min(100vw, 430px);
  max-height: min(92svh, 780px);
  overflow-y: auto;
  padding: 22px 18px calc(26px + env(safe-area-inset-bottom));
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.96)),
    var(--bg-panel);
  box-shadow: 0 -20px 50px rgba(13, 20, 26, 0.18);
  transform: translateY(100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
}

.booking-sheet::-webkit-scrollbar {
  width: 6px;
}

.booking-sheet::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(13, 20, 26, 0.24);
}

.booking-modal.is-open .booking-sheet {
  transform: translateY(0);
}

.booking-sheet__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 20, 26, 0.1);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.booking-sheet__eyebrow {
  margin: 0 0 18px;
  color: #8e7f81;
}

.booking-sheet__logo-lockup {
  display: flex;
  width: 116px;
  flex-direction: column;
  align-items: flex-start;
}

.booking-sheet__logo-mark {
  display: block;
  width: 116px;
  height: 41px;
  background: currentColor;
  -webkit-mask: url("assets/kumaw-transparent-cropped.png") center / contain no-repeat;
  mask: url("assets/kumaw-transparent-cropped.png") center / contain no-repeat;
}

.booking-sheet__logo-lockup small {
  display: block;
  width: 116px;
  margin-top: 2px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.38rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-sheet__eyebrow-text {
  display: block;
  color: var(--taupe-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-sheet__eyebrow-text[hidden],
.booking-sheet__logo-lockup[hidden] {
  display: none;
}

.booking-sheet__title {
  margin: 0;
  padding-right: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.82rem;
  font-weight: 600;
  line-height: 1.02;
  color: var(--ink);
}

@media (max-width: 899px) {
  .booking-sheet__title--studio {
    font-size: clamp(1.18rem, 5.5vw, 1.5rem);
    letter-spacing: -0.035em;
    white-space: nowrap;
  }
}

.booking-engine {
  width: 100%;
  margin-top: 18px;
}

.booking-step {
  width: 100%;
}

.booking-step-copy {
  margin: 0 0 16px;
  color: var(--taupe);
  font-size: 0.92rem;
  line-height: 1.55;
}

.collab-flow {
  display: grid;
  gap: 16px;
}

.collab-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 20, 26, 0.1);
}

.collab-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #0d141a);
  transition: width 240ms ease;
}

.collab-eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collab-title {
  margin: -8px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.collab-copy,
.collab-intro p,
.collab-done p,
.collab-error {
  margin: 0;
  color: var(--taupe);
  font-size: 0.92rem;
  line-height: 1.58;
}

.collab-intro {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(99, 196, 161, 0.32);
  border-radius: 8px;
  background: rgba(99, 196, 161, 0.09);
}

.collab-field {
  display: grid;
  gap: 10px;
}

.collab-field span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collab-field input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(13, 20, 26, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0 16px;
}

.collab-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(99, 196, 161, 0.16);
  outline: 0;
}

.collab-upload {
  display: grid;
  gap: 12px;
}

.collab-sample,
.collab-preview {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(13, 20, 26, 0.12);
  background: #111827;
}

.collab-sample {
  position: relative;
  margin: 0;
}

.collab-sample img,
.collab-preview {
  display: block;
  width: 100%;
  max-height: 290px;
  object-fit: cover;
}

.collab-sample figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
}

.collab-dropzone {
  align-items: center;
  display: grid;
  gap: 6px;
  justify-items: center;
  min-height: 132px;
  border: 1px dashed rgba(13, 20, 26, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.collab-dropzone.is-dragging {
  border-color: var(--gold);
  background: rgba(99, 196, 161, 0.14);
}

.collab-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.collab-dropzone__icon {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
}

.collab-dropzone strong {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.collab-dropzone small {
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 700;
}

.collab-summary {
  display: grid;
  gap: 10px;
}

.collab-summary div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(13, 20, 26, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.collab-summary span {
  color: var(--taupe);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collab-summary strong {
  color: var(--ink);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.collab-error {
  color: #991b1b;
  font-weight: 800;
}

.collab-done {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(99, 196, 161, 0.34);
  border-radius: 8px;
  background: rgba(99, 196, 161, 0.12);
}

.collab-done strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.collab-actions {
  display: grid;
  gap: 10px;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 5px;
  width: 100%;
  margin-bottom: 18px;
}

.booking-progress__item {
  min-width: 0;
  color: rgba(13, 20, 26, 0.46);
  text-align: center;
}

.booking-progress__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 20, 26, 0.12);
  color: transparent;
  font-size: 0;
}

.booking-progress__item small {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.booking-progress__item.is-active {
  color: var(--book-red);
}

.booking-progress__item.is-active span {
  background: var(--book-red);
}

.booking-card-list,
.booking-image-list,
.booking-style-list,
.booking-form,
.booking-summary {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

.booking-image-list--columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-select-card,
.booking-image-card,
.booking-style-card,
.booking-time-slot,
.booking-length-segments button,
.booking-back,
.booking-next {
  width: 100%;
  cursor: pointer;
  font: inherit;
}

.booking-select-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid rgba(13, 20, 26, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 24px rgba(13, 20, 26, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-select-card:active,
.booking-time-slot:active,
.booking-image-card:active {
  transform: scale(0.99);
}

.booking-select-card span {
  min-width: 0;
  font-weight: 700;
}

.booking-select-card small {
  display: block;
  margin-top: 4px;
  color: rgba(13, 20, 26, 0.62);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
}

.booking-select-card strong {
  flex: 0 0 auto;
  color: var(--book-red);
  font-size: 0.86rem;
}

.booking-select-card.is-selected,
.booking-time-slot.is-selected,
.booking-length-segments button.is-selected {
  border-color: var(--book-red);
  background: var(--book-red);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(75, 55, 43, 0.18);
}

.booking-select-card.is-selected strong {
  color: var(--white);
}

.booking-select-card.is-selected small {
  color: rgba(255, 255, 255, 0.76);
}

.booking-radio-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid rgba(13, 20, 26, 0.13);
}

.booking-radio-option {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 15px 4px;
  border: 0;
  border-bottom: 1px solid rgba(13, 20, 26, 0.13);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.booking-radio-option__indicator {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(13, 20, 26, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-radio-option__indicator::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: var(--book-red);
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-radio-option__label {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.booking-radio-option__price,
.booking-radio-option__note {
  color: var(--book-red-dark);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.booking-radio-option.is-selected {
  background: rgba(141, 115, 94, 0.08);
}

.booking-radio-option.is-selected .booking-radio-option__indicator {
  border-color: var(--book-red);
  box-shadow: 0 0 0 3px rgba(141, 115, 94, 0.12);
}

.booking-radio-option.is-selected .booking-radio-option__indicator::after {
  opacity: 1;
  transform: scale(1);
}

.booking-radio-option.is-disabled {
  cursor: not-allowed;
  color: rgba(13, 20, 26, 0.4);
}

.booking-radio-option.is-disabled .booking-radio-option__note,
.booking-radio-option.is-disabled .booking-radio-option__indicator {
  color: rgba(13, 20, 26, 0.4);
  border-color: rgba(13, 20, 26, 0.18);
}

.booking-radio-option:focus-visible {
  outline: 2px solid var(--book-red);
  outline-offset: 3px;
}

.booking-color-picker {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.booking-color-option {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 106px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-color-option__swatch {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(13, 20, 26, 0.16);
  border-radius: 2px;
  background: var(--lash-swatch);
  box-shadow: 0 8px 20px rgba(13, 20, 26, 0.12);
}

.booking-color-option__label {
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.booking-color-option.is-selected {
  border-color: var(--book-red);
  background: rgba(141, 115, 94, 0.08);
  box-shadow: inset 0 0 0 2px rgba(141, 115, 94, 0.16);
}

.booking-color-option:focus-visible {
  outline: 2px solid var(--book-red);
  outline-offset: 3px;
}

@media (max-width: 899px) {
  .booking-color-option {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px;
    min-height: 100px;
    padding: 13px;
  }

  .booking-color-option__swatch {
    width: 72px;
    height: 72px;
  }
}

.booking-style-card {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(13, 20, 26, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: #0d141a;
  text-align: left;
  box-shadow: 0 14px 30px rgba(13, 20, 26, 0.12);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.booking-style-card__image {
  display: block;
  min-height: 210px;
  background-color: #f4efeb;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.booking-style-card__info {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 76px;
  padding: 14px 16px;
  border-top: 1px solid rgba(13, 20, 26, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

.booking-style-card__radio {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(13, 20, 26, 0.34);
  border-radius: 50%;
  background: #fff;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.booking-style-card__radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-style-card__copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.booking-style-card__title {
  color: #0d141a;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.booking-style-card__price {
  color: rgba(13, 20, 26, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
}

.booking-style-card.is-selected {
  border-color: var(--book-red);
  box-shadow:
    inset 0 0 0 2px var(--book-red),
    0 14px 30px rgba(13, 20, 26, 0.12);
}

.booking-style-card.is-selected .booking-style-card__info {
  background: rgba(141, 115, 94, 0.08);
}

.booking-style-card.is-selected .booking-style-card__radio {
  border-color: var(--book-red);
  background: var(--book-red);
}

.booking-style-card.is-selected .booking-style-card__radio::after {
  opacity: 1;
  transform: scale(1);
}

.booking-image-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 158px;
  aspect-ratio: var(--card-aspect, auto);
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white);
  text-align: center;
  box-shadow: 0 14px 30px rgba(13, 20, 26, 0.12);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.booking-image-card--compact {
  min-height: 172px;
  padding: 9px;
  background-position: center center;
}

.booking-image-card--show-full {
  min-height: auto;
  background-color: rgba(255, 255, 255, 0.72);
  background-size: contain;
}

.booking-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(108deg, transparent 32%, rgba(255, 255, 255, 0.28) 48%, transparent 64%);
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-image-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  background: transparent;
  text-align: left;
}

.booking-image-card__content b {
  color: #0d141a;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
}

.booking-image-card__content small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.2;
}

.booking-image-card--compact .booking-image-card__content {
  padding: 7px;
}

.booking-image-card--compact .booking-image-card__content b {
  font-size: 0.78rem;
}

.booking-image-card--compact .booking-image-card__content small {
  font-size: 0.52rem;
}

.booking-image-card.is-selected {
  border-color: var(--book-red);
  box-shadow:
    inset 0 0 0 2px var(--book-red),
    0 14px 30px rgba(13, 20, 26, 0.12);
}

.booking-calendar {
  width: 100%;
  padding: 8px 0 4px;
  background: rgba(255, 255, 255, 0.28);
}

.booking-calendar__header,
.booking-time-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.booking-calendar__header h3 {
  margin: 0;
  font-size: 1.08rem;
}

.booking-calendar__header div {
  display: flex;
  gap: 10px;
}

.booking-calendar__header button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.booking-calendar__header button:disabled {
  cursor: not-allowed;
  opacity: 0.32;
}

.booking-calendar__weekdays,
.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  width: 100%;
}

.booking-calendar__weekdays {
  margin-bottom: 12px;
  color: var(--taupe);
  font-size: 0.68rem;
  font-weight: 800;
}

.booking-calendar__weekdays span {
  text-align: center;
}

.booking-calendar__grid {
  gap: 8px 6px;
}

.booking-calendar__day,
.booking-calendar__blank {
  aspect-ratio: 1 / 1.04;
}

.booking-calendar__day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.booking-calendar__day:disabled {
  cursor: not-allowed;
  background: transparent;
  color: rgba(13, 20, 26, 0.34);
}

.booking-calendar__day i {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.booking-calendar__day.is-selected {
  background: var(--book-red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(75, 55, 43, 0.18);
}

.booking-availability-note,
.booking-empty-state {
  margin: 14px 0 0;
  color: var(--taupe);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.booking-time-panel {
  width: 100%;
}

.booking-time-panel__header {
  margin-bottom: 12px;
}

.booking-time-panel__header p {
  margin: 0;
  color: var(--taupe);
}

.booking-time-panel__header strong {
  color: var(--ink);
}

.booking-time-toggle {
  display: flex;
  flex: 0 0 auto;
  padding: 4px;
  border-radius: 10px;
  background: rgba(13, 20, 26, 0.08);
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-time-toggle span {
  padding: 5px 9px;
  border-radius: 8px;
}

.booking-time-toggle .is-active {
  background: var(--white);
  color: var(--ink);
}

.booking-time-list {
  display: flex;
  flex-direction: column;
  max-height: 380px;
  overflow-y: auto;
  gap: 9px;
  padding-right: 4px;
}

.booking-time-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 45px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-weight: 800;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.booking-time-slot small {
  color: var(--taupe);
  font-size: 0.68rem;
  font-weight: 700;
}

.booking-time-slot.is-selected small {
  color: rgba(255, 255, 255, 0.78);
}

.booking-time-powered {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(13, 20, 26, 0.14);
  color: var(--taupe);
  font-size: 0.76rem;
  text-align: right;
}

.booking-length-panel {
  width: 100%;
}

.booking-length-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 2.45 / 1;
  overflow: hidden;
  border: 1px solid rgba(13, 20, 26, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.booking-length-visual::before {
  content: none;
}

.booking-length-lash {
  position: relative;
  z-index: 1;
  width: 124px;
  height: 42px;
  transform: scaleX(var(--length-scale)) scaleY(var(--length-scale-y));
  transform-origin: center;
}

.booking-length-lash::before {
  content: "";
  position: absolute;
  inset: 4px 0 0;
  border-top: 5px solid #0d141a;
  border-radius: 52% 48% 0 0;
  transform: rotate(-7deg);
}

.booking-length-visual span {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.booking-length-segments {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-top: 12px;
}

.booking-length-segments button {
  min-height: 42px;
  padding: 0 4px;
  border: 1px solid rgba(13, 20, 26, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--taupe);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(13, 20, 26, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.booking-form select {
  appearance: none;
  padding-right: 42px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(13, 20, 26, 0.62) 50%),
    linear-gradient(135deg, rgba(13, 20, 26, 0.62) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.booking-form select option {
  font-size: 1rem;
  font-weight: 500;
}

.booking-form select:disabled {
  cursor: not-allowed;
  color: rgba(13, 20, 26, 0.42);
  background-color: rgba(233, 235, 238, 0.72);
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--book-red);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 167, 167, 0.14);
}

.booking-form label > span small {
  margin-left: 5px;
  color: rgba(13, 20, 26, 0.48);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.booking-form__wide,
.booking-location-fields {
  grid-column: 1 / -1;
}

.booking-location-fields {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 4px 0 0;
  padding: 16px;
  border: 1px solid rgba(141, 115, 94, 0.2);
  border-radius: 8px;
  background: rgba(141, 115, 94, 0.06);
}

.booking-location-fields legend {
  padding: 0 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.booking-region-picker {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.booking-region-picker__trigger {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid rgba(13, 20, 26, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.booking-region-picker__trigger span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-region-picker__trigger i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.booking-region-picker__trigger[aria-expanded="true"] {
  border-color: var(--book-red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 167, 167, 0.14);
}

.booking-region-picker__trigger[aria-expanded="true"] i {
  transform: translateY(2px) rotate(225deg);
}

.booking-region-picker__trigger:disabled {
  cursor: not-allowed;
  color: rgba(13, 20, 26, 0.42);
  background: rgba(233, 235, 238, 0.72);
}

.booking-region-picker__trigger:focus-visible,
.booking-region-picker__option:focus-visible {
  outline: 3px solid rgba(214, 92, 96, 0.24);
  outline-offset: 2px;
}

.booking-region-picker__menu {
  overflow: hidden;
  border: 1px solid rgba(13, 20, 26, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(75, 55, 43, 0.13);
}

.booking-region-picker__options {
  max-height: 264px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 6px;
  scrollbar-gutter: stable;
}

.booking-region-picker__option {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
}

.booking-region-picker__option + .booking-region-picker__option {
  border-top: 1px solid rgba(13, 20, 26, 0.06);
}

.booking-region-picker__option.is-selected {
  background: rgba(214, 92, 96, 0.12);
  color: var(--book-red-dark);
}

@media (max-width: 899px) {
  .booking-region-picker {
    position: relative;
  }

  .booking-region-picker:has(.booking-region-picker__trigger[aria-expanded="true"]) {
    z-index: 10;
  }

  .booking-region-picker__menu {
    position: absolute;
    right: 0;
    bottom: calc(100% + 6px);
    left: 0;
  }

  .booking-region-picker__options {
    max-height: min(264px, 38svh);
  }
}

.booking-location-fields__error {
  margin: 2px 0 0;
  color: var(--book-red-dark);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.45;
}

.booking-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.booking-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 16px;
}

.booking-optional-copy {
  margin: 14px 0 0;
  color: var(--taupe);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

.booking-actions--stacked {
  display: flex;
  flex-direction: column;
}

.booking-actions--stacked .booking-next,
.booking-actions--stacked .booking-back {
  width: 100%;
}

.booking-actions .booking-next:only-child,
.booking-actions .booking-back:only-child {
  grid-column: 1 / -1;
}

.booking-back,
.booking-next {
  min-height: 50px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 220ms ease;
}

.booking-back {
  border: 1px solid rgba(13, 20, 26, 0.18);
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink);
}

.booking-next {
  border: 1px solid var(--book-red);
  background: var(--book-red);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(75, 55, 43, 0.2);
}

.booking-image-list--models {
  gap: 12px;
}

.booking-image-card--model {
  min-height: 184px;
  padding: 0;
  border-color: rgba(13, 20, 26, 0.14);
  background-color: #f8f8f7;
  background-size: contain;
  color: #0d141a;
}

.booking-image-card--model .booking-image-card__content {
  padding: 18px 16px 13px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.94));
}

.booking-image-card--model .booking-image-card__content b {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.booking-preference-section {
  width: 100%;
}

.booking-preference-section + .booking-preference-section {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(13, 20, 26, 0.12);
}

.booking-preference-section__label {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.booking-image-list--curl-shapes {
  gap: 12px;
}

.booking-image-card--curl-shape {
  background-position: center top;
  background-size: auto 170%;
}

.booking-image-card--curl-shape .booking-image-card__content {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.98) 58%);
}

.booking-style-card--super-real-lash {
  background-color: #eedbd0;
}

.booking-style-card--super-real-lash .booking-style-card__image {
  background-color: #eedbd0;
  background-size: contain;
}

.booking-style-card:disabled {
  cursor: not-allowed;
  filter: saturate(0.72);
  opacity: 0.68;
}

.booking-style-card:disabled .booking-style-card__info {
  background: rgba(255, 255, 255, 0.82);
}

.booking-next:hover:not(:disabled) {
  border-color: var(--book-red-dark);
  background: var(--book-red-dark);
  box-shadow: 0 14px 32px rgba(75, 55, 43, 0.24);
  transform: translateY(-2px);
}

.booking-back:hover:not(:disabled) {
  border-color: rgba(141, 115, 94, 0.44);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
}

.booking-next:active:not(:disabled),
.booking-back:active:not(:disabled) {
  transform: scale(0.98);
}

.booking-next:focus-visible,
.booking-back:focus-visible {
  outline: 2px solid var(--book-red);
  outline-offset: 3px;
}

.booking-next:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.booking-summary__group {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.booking-summary__group h3 {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}

.booking-summary__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-top: 1px solid rgba(13, 20, 26, 0.09);
  color: var(--taupe);
  font-size: 0.88rem;
}

.booking-summary__row strong {
  max-width: 58%;
  color: var(--ink);
  text-align: right;
  overflow-wrap: anywhere;
}

.booking-discount-promos {
  display: grid;
  gap: 10px;
  margin: 4px 0 14px;
}

.booking-discount-promo {
  align-items: center;
  background: rgba(99, 196, 161, 0.13);
  border: 1px solid rgba(99, 196, 161, 0.35);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 12px;
  text-align: left;
  width: 100%;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-discount-promo b,
.booking-discount-promo small {
  display: block;
}

.booking-discount-promo small {
  color: var(--taupe);
  margin-top: 3px;
}

.booking-discount-promo strong {
  color: var(--book-red-dark);
  flex: 0 0 auto;
}

.booking-discount-form {
  display: grid;
  gap: 8px;
  margin: 10px 0 4px;
}

.booking-discount-form label {
  color: var(--taupe);
  display: grid;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 6px;
}

.booking-discount-form label > div {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.booking-discount-form input {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 40px;
  padding: 9px 11px;
  width: 100%;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.booking-discount-form button {
  background: var(--book-red);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  min-height: 40px;
  padding: 0 14px;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-discount-applied,
.booking-discount-note,
.booking-discount-error {
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0;
}

.booking-discount-applied {
  color: #56a889;
}

.booking-discount-applied button {
  background: transparent;
  border: 0;
  color: var(--book-red);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 0 0 6px;
  transition: color 160ms ease;
}

.booking-discount-note {
  color: var(--taupe);
}

.booking-discount-error {
  color: var(--book-red);
}

.booking-receipt-content {
  width: 100%;
}

.booking-receipt-content .booking-summary {
  margin-top: 0;
}

.booking-receipt-content + .booking-actions {
  grid-template-columns: 1fr;
}

.booking-receipt-content + .booking-actions .booking-next {
  grid-column: 1 / -1;
}

.booking-confirmed {
  width: 100%;
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 167, 167, 0.1);
  color: var(--book-red-dark);
  text-align: left;
}

.booking-confirmed span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.booking-confirmed p {
  margin: 0;
  color: var(--taupe);
}

.booking-confirmed > strong {
  display: block;
  margin-top: 10px;
  text-align: left;
}

.booking-account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--book-red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 9px 16px;
  text-decoration: none;
  transition:
    transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.booking-member-invite {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(163, 80, 91, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 167, 167, 0.14), rgba(255, 255, 255, 0.72));
}

.booking-member-invite p {
  margin: 0;
  color: var(--taupe);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
}

.booking-member-invite__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  text-align: center;
  text-decoration: none;
}

.booking-status {
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}

.booking-select-card:focus-visible,
.booking-style-card:focus-visible,
.booking-image-card:focus-visible,
.booking-time-slot:focus-visible,
.booking-calendar__header button:focus-visible,
.booking-calendar__day:focus-visible,
.booking-length-segments button:focus-visible,
.booking-sheet__close:focus-visible,
.booking-discount-promo:focus-visible,
.booking-discount-form button:focus-visible,
.booking-discount-applied button:focus-visible,
.booking-account-link:focus-visible {
  outline: 2px solid var(--book-red);
  outline-offset: 3px;
}

.collab-dropzone:has(input:focus-visible) {
  border-color: var(--book-red);
  box-shadow: 0 0 0 3px rgba(141, 115, 94, 0.14);
}

@media (hover: hover) and (pointer: fine) {
  .booking-modal__backdrop:hover {
    background: rgba(13, 20, 26, 0.48);
  }

  .booking-sheet__close:hover {
    background: var(--book-red);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(75, 55, 43, 0.2);
    transform: translateY(-1px) rotate(4deg);
  }

  .booking-select-card:not(.is-selected):hover {
    border-color: var(--book-hover-border);
    background: var(--book-hover-surface);
    box-shadow: var(--book-hover-shadow);
    transform: translateY(-2px);
  }

  .booking-style-card:not(:disabled):not(.is-selected):hover,
  .booking-image-card:not(.is-selected):hover {
    border-color: var(--book-hover-border);
    box-shadow: 0 18px 38px rgba(75, 55, 43, 0.2);
    filter: saturate(1.04) contrast(1.02);
    transform: translateY(-3px);
  }

  .booking-image-card:not(.is-selected):hover::before {
    transform: translateX(120%);
  }

  .booking-calendar__header button:not(:disabled):hover {
    background: var(--book-red);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(75, 55, 43, 0.18);
    transform: translateY(-1px);
  }

  .booking-calendar__day:not(:disabled):not(.is-selected):hover,
  .booking-time-slot:not(.is-selected):hover,
  .booking-length-segments button:not(.is-selected):hover {
    border-color: var(--book-hover-border);
    background: var(--book-hover-surface);
    box-shadow: 0 8px 18px rgba(75, 55, 43, 0.12);
    transform: translateY(-1px);
  }

  .booking-form input:hover,
  .booking-form select:not(:disabled):hover,
  .booking-region-picker__trigger:not(:disabled):hover,
  .booking-region-picker__option:hover,
  .booking-discount-form input:hover {
    border-color: var(--book-hover-border);
    background: rgba(255, 255, 255, 0.94);
  }

  .collab-dropzone:hover {
    border-color: var(--book-hover-border);
    background: var(--book-hover-surface);
    box-shadow: 0 12px 26px rgba(75, 55, 43, 0.1);
    transform: translateY(-2px);
  }

  .booking-discount-promo:hover {
    border-color: rgba(86, 168, 137, 0.68);
    background: rgba(99, 196, 161, 0.2);
    box-shadow: 0 10px 22px rgba(58, 120, 96, 0.12);
    transform: translateY(-2px);
  }

  .booking-discount-form button:hover,
  .booking-account-link:hover {
    background: var(--book-red-dark);
    box-shadow: 0 10px 24px rgba(75, 55, 43, 0.22);
    transform: translateY(-2px);
  }

  .booking-discount-applied button:hover {
    color: var(--book-red-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

@media print {
  body.booking-printing {
    display: block;
    min-height: auto;
    padding: 0;
    background: #ffffff;
  }

  body.booking-printing * {
    visibility: hidden;
  }

  body.booking-printing .booking-receipt-content,
  body.booking-printing .booking-receipt-content * {
    visibility: visible;
  }

  body.booking-printing .booking-receipt-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: #ffffff;
  }

  body.booking-printing .booking-summary__group,
  body.booking-printing .booking-confirmed {
    break-inside: avoid;
  }
}

.location-modal {
  position: fixed;
  inset: 0;
  z-index: 32;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.location-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.location-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13, 20, 26, 0.42);
  backdrop-filter: blur(6px);
}

.location-sheet {
  position: relative;
  width: min(100vw, 430px);
  padding: 22px 20px calc(20px + env(safe-area-inset-bottom));
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.96)),
    var(--bg-panel);
  box-shadow: 0 -20px 50px rgba(13, 20, 26, 0.18);
  transform: translateY(100%);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease;
}

.location-modal.is-open .location-sheet {
  transform: translateY(0);
}

.location-sheet__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 20, 26, 0.1);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}

.location-sheet__eyebrow {
  margin: 0 0 8px;
  color: var(--taupe-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location-sheet__title {
  margin: 0;
  padding-right: 36px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.02;
  color: var(--ink);
}

.location-sheet__map-frame {
  margin-top: 16px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(13, 20, 26, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.location-sheet__map-frame iframe {
  display: block;
  width: 100%;
  height: min(55svh, 420px);
  border: 0;
}

@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-18px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    filter: blur(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroCueBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(4px);
  }
}

@keyframes heroCueReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 899px) {
  .panel:not(.panel-hero) .panel-inner {
    padding-top: calc(112px + env(safe-area-inset-top));
  }

  .panel-services {
    background: #fce4ec;
  }

  .review-carousel__track {
    gap: 16px;
  }

  .review-slide {
    flex-basis: calc(100% - 28px);
    box-shadow: none;
  }

  .review-carousel__nav {
    align-self: flex-start;
    margin-right: auto;
    margin-left: 0;
  }
}

@media (min-width: 431px) {
  body {
    padding: 24px 0;
  }

  .mobile-shell {
    border-radius: 30px;
  }
}

@media (min-width: 900px) {
  body {
    display: block;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(13, 20, 26, 0.08), transparent 18%, transparent 82%, rgba(13, 20, 26, 0.08)),
      linear-gradient(180deg, #fff8f8 0%, #fce4ec 100%);
  }

  body.modal-open {
    overflow: hidden;
  }

  .mobile-shell {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }

  .snap-container {
    scroll-padding-top: 0;
  }

  .panel {
    min-height: 100vh;
  }

  .panel-inner {
    width: min(1180px, calc(100vw - 112px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 72px 0;
  }

  .section-dots {
    position: fixed;
    right: 34px;
    gap: 10px;
  }

  .section-dot {
    width: 9px;
    height: 9px;
  }

  .section-dot.active {
    height: 34px;
  }

  .panel-hero {
    --hero-pad: 58px;
    --hero-side: clamp(56px, 7vw, 110px);
    --hero-support-left: calc(50vw + clamp(28px, 6vw, 110px));
    --hero-column-gap: clamp(48px, 6vw, 110px);
    --hero-bottom: clamp(54px, 7vh, 76px);
    padding: 0;
    background:
      linear-gradient(90deg, rgba(13, 20, 26, 0.5) 0%, rgba(13, 20, 26, 0.18) 48%, rgba(13, 20, 26, 0.08) 100%),
      linear-gradient(180deg, rgba(13, 20, 26, 0.08) 0%, rgba(13, 20, 26, 0.18) 54%, rgba(13, 20, 26, 0.5) 100%),
      url("assets/hero-desktop.png") center center / cover no-repeat;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, transparent 24%),
      linear-gradient(90deg, rgba(13, 20, 26, 0.22) 0%, transparent 45%),
      linear-gradient(180deg, transparent 55%, rgba(13, 20, 26, 0.36) 100%);
  }

  .brand-lockup {
    top: var(--hero-pad);
    left: var(--hero-side);
    width: auto;
    transform: none;
    text-align: left;
  }

  .brand-name-logo {
    width: clamp(280px, 28vw, 420px);
    margin: 0;
  }

  .brand-subtitle {
    width: clamp(280px, 28vw, 420px);
    margin-top: 6px;
    font-size: clamp(0.5rem, 0.72vw, 0.66rem);
    letter-spacing: 0.32em;
    text-align: left;
  }

  .hero-copy {
    right: var(--hero-side);
    bottom: var(--hero-bottom);
    left: var(--hero-side);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--hero-column-gap);
    width: auto;
    text-align: left;
  }

  .hero-copy h1 {
    flex: 0 1 calc(var(--hero-support-left) - var(--hero-side) - var(--hero-column-gap));
    padding-bottom: 0;
    font-size: clamp(2.7rem, 4.25vw, 5rem);
    letter-spacing: 0.015em;
    line-height: 0.98;
  }

  .hero-support {
    display: flex;
    flex: 0 0 min(31rem, calc(100vw - var(--hero-support-left) - var(--hero-side)));
    width: min(31rem, calc(100vw - var(--hero-support-left) - var(--hero-side)));
    flex-direction: column;
    align-self: flex-end;
    gap: 14px;
  }

  .hero-description {
    width: 100%;
    max-width: 31rem;
    margin: 0;
    font-size: clamp(0.78rem, 0.92vw, 0.94rem);
    line-height: 1.55;
    white-space: normal;
  }

  .hero-description-mobile {
    display: none;
  }

  .hero-description-desktop {
    display: block;
  }

  .hero-keep-desktop {
    white-space: nowrap;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.78rem;
  }

  .hero-actions {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(340px, 100%);
    gap: 10px;
  }

  .button {
    min-height: 52px;
    padding: 0 24px;
  }

  .button:active {
    transform: none;
  }

  .button:hover {
    transform: translateY(-1px);
  }

  .hero-action-button {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 28px rgba(13, 20, 26, 0.12);
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease,
      box-shadow 220ms ease;
  }

  .hero-book-button {
    background: rgba(255, 250, 248, 0.94);
    border-color: rgba(255, 255, 255, 0.88);
    color: #241d1b;
    backdrop-filter: blur(14px);
  }

  .hero-collab-button {
    background: rgba(13, 20, 26, 0.14);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
    backdrop-filter: blur(14px);
  }

  .hero-book-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 14px 32px rgba(13, 20, 26, 0.18);
    transform: translateY(-2px);
  }

  .hero-collab-button:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 32px rgba(13, 20, 26, 0.16);
    transform: translateY(-2px);
  }

  .hero-action-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
  }

  .hero-scroll-cue,
  .section-scroll-cue-light {
    right: auto;
    left: 50%;
    width: min(520px, 44vw);
    transform: translateX(-50%);
  }

  .hero-scroll-cue {
    top: var(--hero-pad);
    right: var(--hero-side);
    bottom: auto;
    left: auto;
    align-items: flex-end;
    width: auto;
    max-width: min(320px, 32vw);
    text-align: right;
    transform: none;
    animation: heroCornerCueReveal 0.8s ease-out 5s forwards;
  }

  .hero-scroll-cue .section-scroll-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    text-transform: none;
  }

  .section-scroll-cue-light {
    position: fixed;
    bottom: 34px;
  }

  @keyframes heroCueBounce {
    0%,
    100% {
      transform: translateX(-50%) translateY(0);
    }

    25% {
      transform: translateX(-50%) translateY(-4px);
    }

    50% {
      transform: translateX(-50%) translateY(0);
    }

    75% {
      transform: translateX(-50%) translateY(4px);
    }
  }

  @keyframes heroCueReveal {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(10px);
      filter: blur(8px);
    }

    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      filter: blur(0);
    }
  }

  @keyframes heroFadeDown {
    from {
      opacity: 0;
      transform: translateY(-18px);
      filter: blur(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }

  .panel h2 {
    max-width: 760px;
    font-size: clamp(4rem, 6.2vw, 6.5rem);
    line-height: 0.9;
  }

  .section-text {
    max-width: 560px;
    font-size: 1.04rem;
    line-height: 1.78;
  }

  .custom-section-grid {
    grid-template-columns: repeat(var(--custom-columns, 1), minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
  }

  .custom-section-grid--2 {
    --custom-columns: 2;
  }

  .custom-section-grid--3 {
    --custom-columns: 3;
  }

  .custom-section-column {
    padding: 22px;
  }

  .panel-story .panel-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    align-items: center;
    justify-content: center;
    gap: clamp(56px, 7vw, 110px);
    padding-bottom: 110px;
  }

  .panel-comparison .panel-inner {
    display: grid;
    grid-template-columns: minmax(340px, 0.88fr) minmax(360px, 0.72fr);
    align-items: center;
    justify-content: center;
    gap: clamp(28px, min(7vw, 8svh), 112px);
    padding-bottom: 108px;
  }

  .comparison-heading {
    align-self: center;
    padding-right: 0;
  }

  .panel-comparison .comparison-heading h2 {
    max-width: 640px;
    font-size: clamp(2.5rem, min(6.2vw, 9svh), 6.5rem);
  }

  .comparison-showcase {
    justify-self: center;
    width: 100%;
    max-width: 460px;
    padding-right: 0;
  }

  .comparison-stage {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 74px rgba(13, 20, 26, 0.2);
  }

  .about-copy {
    align-self: center;
  }

  .about-copy .section-text {
    margin-top: 18px;
  }

  .about-collage {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.64fr);
    gap: 20px;
    margin-top: 0;
  }

  .about-photo {
    box-shadow: 0 28px 70px rgba(13, 20, 26, 0.16);
  }

  .about-photo-top,
  .about-photo-bottom {
    max-width: 220px;
  }

  .panel-services .panel-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
    align-items: center;
    gap: clamp(42px, 6vw, 96px);
    padding-bottom: 108px;
  }

  @keyframes heroCornerCueReveal {
    from {
      opacity: 0;
      transform: translateY(10px);
      filter: blur(8px);
    }

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

  .review-heading {
    align-self: center;
  }

  .review-carousel {
    min-width: 0;
  }

  .review-carousel__viewport {
    margin-inline: 0;
    padding: 0;
  }

  .review-carousel__track {
    gap: 18px;
  }

  .review-slide {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    flex-basis: 100%;
    border-radius: 8px;
    box-shadow: 0 24px 58px rgba(13, 20, 26, 0.15);
  }

  .review-slide__gallery {
    height: clamp(360px, 54vh, 520px);
  }

  .review-slide__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4vw, 58px);
  }

  .review-slide__copy::before {
    top: 24px;
    right: 34px;
    font-size: 8rem;
  }

  .review-stars {
    font-size: 0.86rem;
  }

  .review-slide blockquote {
    display: block;
    margin-top: 18px;
    overflow: visible;
    font-size: clamp(0.775rem, 1.05vw, 1.125rem);
    line-height: 1.18;
    -webkit-line-clamp: unset;
  }

  .review-author {
    margin-top: 24px;
    font-size: 0.74rem;
  }

  .review-carousel__nav {
    grid-template-columns: 44px auto 44px;
    margin-top: 18px;
  }

  .review-carousel__button {
    width: 44px;
    height: 44px;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
  }

  .review-carousel__button:hover {
    border-color: rgba(219, 83, 111, 0.65);
    background: #ffffff;
    transform: translateY(-2px);
  }

  .panel-collab .panel-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
    align-items: center;
    justify-content: center;
    gap: clamp(48px, 6vw, 94px);
    padding-bottom: 110px;
  }

  .panel-collab .section-text {
    max-width: 520px;
  }

  .location-directory {
    min-width: 0;
    margin-top: 0;
    padding: 0 10px 0 0;
    border-radius: 0;
    box-shadow: none;
  }

  .section-brand {
    top: 28px;
    left: clamp(56px, 7vw, 110px);
    width: 176px;
  }

  .section-brand__logo {
    width: 168px;
    height: 58px;
  }

  .section-brand small {
    width: 168px;
    margin-top: 4px;
    font-size: 0.47rem;
    letter-spacing: 0.22em;
  }

  .location-directory__header {
    gap: 14px;
    padding: 0 2px 16px;
  }

  .location-directory__pin {
    width: 46px;
    height: 46px;
  }

  .location-directory__groups {
    grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.85fr));
    gap: 12px;
  }

  .location-group--bandung {
    grid-row: auto;
  }

  .location-group {
    border-radius: 8px;
  }

  .location-group__heading {
    min-height: 48px;
    padding: 8px 13px;
  }

  .location-group__heading h3 {
    font-size: 1.25rem;
  }

  .location-link {
    min-height: 46px;
    padding: 6px 13px;
    font-size: 0.78rem;
    transition: background-color 180ms ease, color 180ms ease;
  }

  .location-link:hover {
    background: rgba(99, 196, 161, 0.13);
  }

  .location-link:hover i {
    transform: translate(2px, -2px);
  }

  .pill-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 980px;
    gap: 12px;
    margin-top: 36px;
  }

  .pill {
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 8px;
    text-align: center;
  }

  .pill-button:hover {
    border-color: var(--book-red);
    background: var(--white);
    color: var(--book-red-dark);
  }

  .panel-cta .panel-inner {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 0.7fr);
    align-items: center;
    gap: clamp(48px, 8vw, 130px);
  }

  .panel-cta .section-kicker,
  .panel-cta h2,
  .panel-cta .section-text {
    grid-column: 1;
  }

  .panel-cta .section-kicker {
    align-self: end;
  }

  .panel-cta h2 {
    align-self: center;
  }

  .panel-cta .section-text {
    max-width: 590px;
    align-self: start;
  }

  .cta-heading {
    grid-column: 1;
    align-self: center;
  }

  .contact-card {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin-top: 0;
    padding: 18px;
    border-radius: 8px;
  }

  .cta-booking {
    min-height: 94px;
    border-radius: 6px;
  }

  .cta-booking:hover {
    background-color: #817174;
    transform: translateY(-2px);
  }

  .cta-support {
    gap: 9px;
  }

  .cta-support__item {
    min-height: 56px;
    border-radius: 6px;
    padding-inline: 14px;
  }

  .cta-support__item:hover {
    border-color: rgba(99, 196, 161, 0.42);
    background: rgba(99, 196, 161, 0.1);
  }

  .cta-support__item:hover i {
    transform: translate(2px, -2px);
  }

  :is(.panel-story, .panel-services, .panel-collab, .panel-cta, .panel-custom-content) .panel-inner {
    height: 100%;
    min-height: 0;
    padding-top: clamp(32px, 8svh, 72px);
    padding-bottom: clamp(52px, 12svh, 110px);
  }

  :is(.panel-story, .panel-services, .panel-collab, .panel-cta, .panel-custom-content) h2 {
    font-size: clamp(3rem, min(6.2vw, 10svh), 6.5rem);
  }

  :is(.panel-story, .panel-services, .panel-collab, .panel-cta, .panel-custom-content) .section-text {
    font-size: clamp(0.82rem, min(1.04rem, 2.1svh), 1.04rem);
    line-height: clamp(1.4em, 3.1svh, 1.78em);
  }

  .panel-story .panel-inner,
  .panel-services .panel-inner,
  .panel-cta .panel-inner {
    gap: clamp(28px, min(6vw, 8svh), 96px);
  }

  .panel-story .about-collage {
    gap: clamp(12px, 2.6svh, 20px);
  }

  .panel-collab .pill-list {
    gap: clamp(7px, 1.6svh, 12px);
    margin-top: clamp(16px, 4.7svh, 36px);
  }

  .panel-collab .pill {
    min-height: clamp(34px, 6.3svh, 48px);
    font-size: clamp(0.72rem, min(0.9rem, 1.9svh), 0.9rem);
  }

  .panel-cta .contact-card {
    padding: clamp(16px, 3.7svh, 28px);
  }

  .panel-cta .contact-actions {
    gap: clamp(7px, 1.8svh, 14px);
  }

  .panel-cta .button {
    min-height: clamp(36px, 6.8svh, 52px);
    font-size: clamp(0.78rem, min(0.92rem, 1.9svh), 0.92rem);
  }

  .booking-modal,
  .location-modal {
    align-items: center;
    padding: 32px;
  }

  .booking-sheet {
    width: min(860px, calc(100vw - 64px));
    max-height: min(88vh, 820px);
    padding: 30px;
    border-radius: 8px;
    transform: translateY(18px) scale(0.98);
  }

  .booking-modal.is-open .booking-sheet {
    transform: translateY(0) scale(1);
  }

  .booking-sheet__close,
  .location-sheet__close {
    top: 16px;
    right: 16px;
  }

  .booking-sheet__title {
    max-width: 650px;
    font-size: 2.55rem;
  }

  .booking-engine {
    margin-top: 24px;
  }

  .booking-card-list,
  .booking-image-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .booking-image-list--columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-image-list--models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .booking-image-list--curl-shapes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-image-card--model {
    min-height: 190px;
  }

  .booking-select-card,
  .booking-image-card,
  .booking-style-card,
  .booking-time-slot,
  .booking-calendar__day,
  .booking-length-segments button,
  .booking-back,
  .booking-next {
    border-radius: 8px;
  }

  .booking-style-card {
    min-height: 0;
  }

  .booking-style-card__image {
    min-height: 280px;
  }

  .booking-style-card__info {
    min-height: 82px;
    padding: 16px 18px;
  }

  .booking-style-card__title {
    font-size: 1.18rem;
  }

  .booking-image-card {
    min-height: 220px;
  }

  .booking-image-card--compact {
    min-height: 190px;
  }

  .booking-calendar {
    padding-inline: 6px;
  }

  .booking-calendar__grid {
    gap: 9px;
  }

  .booking-time-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 330px;
  }

  .booking-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .booking-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 12px;
  }

  .booking-confirmed--success {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px 24px;
  }

  .booking-confirmed--success > strong {
    margin-top: 0;
    text-align: right;
    white-space: nowrap;
  }

  .booking-confirmed--success > small,
  .booking-confirmed--success > .booking-account-link {
    grid-column: 1 / -1;
  }

  .booking-discount-promos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-actions {
    width: min(480px, 100%);
    margin-left: auto;
  }

  .booking-actions--stacked {
    width: 100%;
  }

  .location-sheet {
    width: min(920px, calc(100vw - 64px));
    padding: 30px;
    border-radius: 8px;
    transform: translateY(18px) scale(0.98);
  }

  .location-modal.is-open .location-sheet {
    transform: translateY(0) scale(1);
  }

  .location-sheet__title {
    font-size: 2.55rem;
  }

  .location-sheet__map-frame {
    border-radius: 8px;
  }

  .location-sheet__map-frame iframe {
    height: min(62vh, 560px);
  }
}

@media (min-width: 1200px) {
  .panel-inner {
    width: min(1280px, calc(100vw - 144px));
  }

  .panel-story .panel-inner {
    grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
  }

  .panel-services .panel-inner {
    grid-template-columns: minmax(320px, 0.58fr) minmax(720px, 1.42fr);
  }
}

@media (min-width: 900px) and (max-height: 760px) {
  .brand-name-logo {
    width: clamp(250px, 24vw, 340px);
  }

  .brand-subtitle {
    font-size: 0.56rem;
  }

  .hero-copy {
    bottom: var(--hero-bottom);
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 4.25vw, 5rem);
  }

  .panel h2 {
    font-size: clamp(3.3rem, 5.4vw, 5.4rem);
  }

  .section-text {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .about-photo-top,
  .about-photo-bottom {
    max-width: 180px;
  }

  .comparison-showcase {
    width: 100%;
  }

  .panel-comparison .panel-inner {
    padding-bottom: clamp(44px, 10vh, 76px);
  }

  .panel-comparison h2 {
    font-size: clamp(2.5rem, min(5.4vw, 9svh), 5.4rem);
  }

  :is(.panel-story, .panel-services, .panel-collab, .panel-cta, .panel-custom-content) h2 {
    font-size: clamp(2.75rem, min(5.4vw, 9svh), 5.4rem);
  }

  .panel-story .about-collage {
    max-width: min(100%, 86svh);
    justify-self: center;
  }

  .panel-services .review-slide__gallery {
    height: min(54vh, 430px);
  }

  .panel-services .review-slide blockquote {
    font-size: clamp(0.65rem, 0.9vw, 0.9rem);
  }
}

@media (max-height: 700px) {
  .comparison-stage {
    height: min(45vh, 320px);
    aspect-ratio: auto;
  }

  .panel-story .about-collage {
    width: min(100%, 44svh);
    margin-inline: auto;
  }

  .panel-services .review-slide__gallery {
    height: min(25svh, 180px);
  }

  .panel-collab .panel-inner,
  .panel-cta .panel-inner {
    justify-content: center;
  }

  .panel-custom-content .custom-section-grid {
    gap: clamp(6px, 1.4svh, 14px);
  }

  .panel-custom-content .custom-section-column {
    padding: clamp(10px, 2.4svh, 18px);
  }
}

@media (min-width: 900px) and (max-height: 700px) {
  .comparison-stage {
    height: min(52vh, 360px);
  }

  .panel-services .review-slide__gallery {
    height: min(52vh, 340px);
  }
}

/* Keep every inner section balanced beneath the shared header. */
.panel:not(.panel-hero) .panel-inner {
  justify-content: center;
}

/* Global typography: keep the hero and logo subtitles in their original voices. */
html,
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.panel-hero {
  font-family: "Manrope", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.panel:not(.panel-hero) h2,
.custom-section-column h3,
.service-title,
.location-directory__header strong,
.location-group__heading h3,
.booking-sheet__title,
.collab-title,
.location-sheet__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.panel:not(.panel-hero) h2 {
  font-size: clamp(1.9rem, min(9.2vw, 5.6svh), 3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

#section-3 .comparison-title {
  font-size: clamp(1.42rem, 7.2vw, 1.78rem);
  letter-spacing: -0.04em;
}

@media (max-width: 899px) {
  .panel:not(.panel-hero):not(.panel-cta) h2 {
    font-size: clamp(1.42rem, 7.2vw, 1.78rem);
    letter-spacing: -0.04em;
  }
}

@media (min-width: 900px) {
  .panel:not(.panel-hero) h2 {
    font-size: clamp(2.8rem, min(4.4vw, 7svh), 4rem);
    line-height: 1.02;
  }

  #section-3 .comparison-title {
    font-size: clamp(2.2rem, 3.15vw, 3.15rem);
  }
}

.hero-copy h1 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-optical-sizing: auto;
  font-weight: 500;
}

.brand-subtitle,
.section-brand small {
  font-family: "Manrope", sans-serif;
}

.stat-value,
.review-slide blockquote,
.cta-card__intro > span,
.cta-booking strong,
.booking-confirmed span {
  font-family: "Poppins", sans-serif;
}

.review-slide blockquote {
  font-weight: 400;
}

/* FAQ — a quiet pause between social proof and choosing a studio. */
.panel-faq {
  --panel-copy-gap: clamp(8px, 1.7svh, 18px);
  height: 100vh;
  min-height: 100vh;
  background:
    radial-gradient(circle at 92% 12%, rgba(221, 134, 134, 0.18), transparent 28%),
    #f4efe8;
}

.panel-faq .panel-inner {
  height: 100%;
  min-height: 0;
  gap: clamp(18px, 3.2svh, 30px);
  padding-top: calc(clamp(96px, 16svh, 126px) + env(safe-area-inset-top));
  padding-bottom: calc(clamp(58px, 10svh, 82px) + env(safe-area-inset-bottom));
}

.faq-heading h2 {
  padding-bottom: 0;
}

.faq-heading .section-text {
  max-width: 35ch;
  margin-top: var(--panel-copy-gap);
  font-size: clamp(0.76rem, min(4vw, 1.8svh), 0.98rem);
  line-height: clamp(1.42em, 2.8svh, 1.7em);
}

.faq-list {
  width: 100%;
  max-height: min(50svh, 430px);
  overflow-y: auto;
  padding-right: 10px;
  border-top: 1px solid rgba(142, 127, 129, 0.28);
  scrollbar-width: thin;
  scrollbar-color: rgba(142, 127, 129, 0.45) transparent;
}

@media (max-width: 899px) {
  .faq-list {
    max-height: min(58svh, 430px);
    padding-right: 20px;
  }
}

.faq-item {
  border-bottom: 1px solid rgba(142, 127, 129, 0.28);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  align-items: center;
  gap: 16px;
  padding: clamp(11px, 2svh, 15px) 0;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.78rem, min(3.8vw, 1.75svh), 0.94rem);
  font-weight: 600;
  line-height: 1.35;
}

.faq-item summary i {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(221, 134, 134, 0.18);
  transition: transform 220ms ease, background-color 220ms ease;
}

.faq-item summary i::before,
.faq-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: #8e7f81;
  transform: translate(-50%, -50%);
}

.faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i {
  background: #dd8686;
  transform: rotate(45deg);
}

.faq-item[open] summary i::before,
.faq-item[open] summary i::after {
  background: #fff9f9;
}

.faq-item p {
  max-width: 58ch;
  margin: -2px 0 0;
  padding: 0 38px clamp(13px, 2.2svh, 18px) 0;
  color: var(--taupe);
  font-size: clamp(0.72rem, min(3.6vw, 1.65svh), 0.88rem);
  line-height: 1.62;
}

.faq-item summary:focus-visible {
  outline: 2px solid #dd8686;
  outline-offset: 4px;
}

@media (min-width: 900px) {
  .panel-faq .panel-inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
    align-items: center;
    gap: clamp(54px, 8vw, 132px);
    padding-top: clamp(88px, 13vh, 118px);
    padding-bottom: 110px;
  }

  .faq-heading .section-text {
    max-width: 420px;
    font-size: 1rem;
  }

  .faq-list {
    max-height: min(62vh, 510px);
  }

  .faq-item summary span {
    font-size: 1rem;
  }

  .faq-item p {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary i {
    transition: none;
  }

  .booking-modal__backdrop,
  .booking-sheet__close,
  .booking-select-card,
  .booking-style-card,
  .booking-style-card__radio,
  .booking-style-card__radio::after,
  .booking-image-card,
  .booking-image-card::before,
  .booking-calendar__header button,
  .booking-calendar__day,
  .booking-time-slot,
  .booking-length-segments button,
  .booking-form input,
  .booking-form select,
  .booking-region-picker__trigger,
  .booking-region-picker__trigger i,
  .collab-dropzone,
  .booking-back,
  .booking-next,
  .booking-discount-promo,
  .booking-discount-form input,
  .booking-discount-form button,
  .booking-discount-applied button,
  .booking-account-link {
    transition: none;
  }
}
