:root {
  --pink: #d94f7c;
  --pink-deep: #cf3f70;
  --pink-soft: #fde8ef;
  --pink-pale: #fff5f8;
  --ink: #46302d;
  --muted: #6f5b58;
  --line: #f0bfcc;
  --gold: #caa257;
  --white: #fff;
  --shadow: 0 18px 50px rgba(171, 78, 105, .13);
  --serif: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.75;
  background:
    radial-gradient(circle at 92% 12%, rgba(246, 206, 215, .45), transparent 28rem),
    radial-gradient(circle at 0% 55%, rgba(255, 232, 238, .9), transparent 34rem),
    #fff;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 30px;
  color: #3e2c28;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(255, 250, 251, .9);
  box-shadow: 0 8px 24px rgba(105, 62, 72, .08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand span {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 33px);
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  font-family: Georgia, serif;
  font-size: 12px;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  font-size: 13px;
  font-weight: 700;
}

.download-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 23px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #e86291);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(217, 79, 124, .23);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  padding: 94px 28px 88px;
  background:
    linear-gradient(92deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .72) 42%, rgba(255, 255, 255, .98) 100%),
    linear-gradient(180deg, #fff 0%, #fff9fa 100%);
}

.hero::after {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -54px;
  height: 132px;
  content: "";
  background: #fff;
  border-radius: 50% 50% 0 0 / 72% 72% 0 0;
  box-shadow: 0 -28px 60px rgba(255, 214, 224, .45);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.22) 42%, rgba(255,255,255,.86) 66%, rgba(255,255,255,.98) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 70%, rgba(255,255,255,.78) 100%),
    url("assets/biyou_background.png") center center / cover no-repeat;
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(330px, 560px);
  align-items: center;
  justify-content: end;
  width: min(1180px, 100%);
  min-height: 500px;
  margin: 0 auto;
  padding-left: 0;
}

.hero-copy {
  max-width: 540px;
  margin-left: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 30px;
  padding: 8px 18px;
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 19px);
  background: rgba(255, 255, 255, .66);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--line);
}

.lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: .08em;
}

h1,
.feature h2,
.line-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .04em;
}

h1 {
  margin-top: 4px;
  font-size: clamp(49px, 6.4vw, 86px);
  line-height: 1.08;
}

h1 span {
  color: var(--pink);
}

.hero-text {
  max-width: 520px;
  margin: 24px 0 30px;
  font-weight: 700;
  letter-spacing: .03em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 230px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .03em;
}

.button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #e86291);
  box-shadow: 0 14px 24px rgba(217, 79, 124, .23);
}

.button-primary::after,
.button-secondary::after {
  content: "›";
  margin-left: auto;
  font-size: 26px;
  line-height: 1;
}

.button-secondary {
  color: var(--pink);
  background: rgba(255, 255, 255, .86);
  border-color: #f2c4d0;
}

@keyframes salonFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes salonImageBloom {
  from {
    opacity: 0;
    transform: scale(1.035);
    filter: blur(12px) saturate(.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes salonScriptFloat {
  from {
    opacity: 0;
    transform: translate3d(-16px, 18px, 0) rotate(-2deg);
    filter: blur(8px);
  }
  to {
    opacity: .8;
    transform: translate3d(0, 0, 0) rotate(-2deg);
    filter: blur(0);
  }
}

.hero-photo {
  animation: salonImageBloom 1.5s ease both;
}

.hero-copy > * {
  opacity: 0;
  animation: salonFadeUp .9s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-copy > *:nth-child(1) { animation-delay: .12s; }
.hero-copy > *:nth-child(2) { animation-delay: .24s; }
.hero-copy > *:nth-child(3) { animation-delay: .36s; }
.hero-copy > *:nth-child(4) { animation-delay: .48s; }
.hero-copy > *:nth-child(5) { animation-delay: .6s; }

.script-word {
  animation: salonScriptFloat 1.15s ease .78s both;
}

.salon-fade {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  filter: blur(10px);
  transition:
    opacity .82s ease var(--salon-delay, 0ms),
    filter .82s ease var(--salon-delay, 0ms),
    transform .82s cubic-bezier(.22, 1, .36, 1) var(--salon-delay, 0ms);
  will-change: opacity, filter, transform;
}

.salon-fade.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.photo-mosaic img.salon-fade,
.service-card img.salon-fade,
.results-box > img.salon-fade {
  transform: translate3d(0, 24px, 0) scale(1.035);
}

.photo-mosaic img.salon-fade.is-visible,
.service-card img.salon-fade.is-visible,
.results-box > img.salon-fade.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.device-stage {
  position: relative;
  min-height: 330px;
}

.laptop {
  position: absolute;
  top: 18px;
  right: 34px;
  width: min(440px, 86vw);
  padding: 12px;
  background: #171717;
  border-radius: 18px;
  transform: perspective(900px) rotateY(-7deg) rotateZ(1deg);
  box-shadow: 0 34px 54px rgba(35, 22, 24, .2);
}

.screen {
  overflow: hidden;
  min-height: 250px;
  background: #fff9fa;
  border-radius: 8px;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  font-size: 7px;
  color: #44312f;
}

.mock-header strong {
  margin-right: auto;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
}

.mock-header b {
  padding: 5px 10px;
  color: #fff;
  background: var(--pink);
  border-radius: 999px;
}

.mock-hero {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 14px;
  padding: 8px 18px 12px;
  align-items: center;
}

.mock-hero img {
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 0 44px 0 0;
}

.mock-hero p {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
}

.mock-hero button,
.phone-screen button {
  border: 0;
  color: #fff;
  font-weight: 700;
  background: var(--pink);
  border-radius: 999px;
}

.mock-hero button {
  padding: 10px 18px;
  font-size: 9px;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 0 18px 15px;
}

.mock-cards img {
  aspect-ratio: 1.16;
  object-fit: cover;
  border-radius: 7px;
}

.phone {
  position: absolute;
  right: 0;
  bottom: -3px;
  width: 150px;
  padding: 8px;
  background: #151515;
  border-radius: 24px;
  box-shadow: 0 28px 42px rgba(35, 22, 24, .28);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 58px;
  height: 15px;
  background: #111;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  overflow: hidden;
  min-height: 282px;
  background: #fff;
  border-radius: 18px;
  font-size: 9px;
}

.phone-bar {
  display: flex;
  justify-content: space-between;
  padding: 18px 9px 7px;
  font-family: var(--serif);
}

.phone-bar i,
.phone-bar i::before,
.phone-bar i::after {
  display: block;
  width: 14px;
  height: 1px;
  background: var(--pink);
  content: "";
}

.phone-bar i::before {
  transform: translateY(-4px);
}

.phone-bar i::after {
  transform: translateY(3px);
}

.phone-screen > img {
  width: 84px;
  height: 98px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 40px 40px 0 0;
}

.phone-screen h2 {
  margin: 9px 12px 3px;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.4;
}

.phone-screen p {
  margin: 0 12px 8px;
  line-height: 1.5;
}

.phone-screen button {
  margin: 0 12px;
  padding: 8px 16px;
  font-size: 9px;
}

.mini-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 7px;
  margin: 14px 10px;
  padding: 7px;
  background: #fff5f7;
  border-radius: 8px;
}

.mini-card img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 6px;
}

.script-word,
.script-label,
.vertical-script {
  color: rgba(226, 104, 136, .55);
  font-family: "Brush Script MT", "Snell Roundhand", cursive;
  font-weight: 400;
}

.script-word {
  position: absolute;
  z-index: 3;
  left: clamp(34px, 7vw, 92px);
  bottom: 72px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  transform: rotate(-8deg);
}

.section-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.worries {
  position: relative;
  padding: 44px 0 38px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 225, 233, .7), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #fff8fa 100%);
}

.worries h2 {
  margin: 0 0 22px;
  color: var(--pink);
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 29px);
  font-weight: 500;
  text-align: center;
  letter-spacing: .08em;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.worry-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 20px;
  min-height: 104px;
  padding: 22px 32px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 218, 226, .72);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.worry-card svg {
  width: 56px;
  height: 56px;
  color: var(--pink);
}

.worry-card p {
  margin: 0;
  font-weight: 700;
}

.feature {
  padding: 62px 0 58px;
  background: linear-gradient(180deg, #fff8fa, #fff);
}

.feature-grid {
  display: grid;
  grid-template-columns: .9fr 1.25fr;
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}

.script-label {
  margin: 0 0 6px;
  font-size: clamp(34px, 4vw, 52px);
  transform: rotate(-7deg);
}

.feature-copy h2 {
  font-size: clamp(30px, 3.8vw, 45px);
  line-height: 1.65;
}

.feature-copy > p:not(.script-label) {
  max-width: 460px;
  margin: 20px 0 32px;
  font-weight: 600;
}

.flow-list {
  display: flex;
  align-items: center;
  gap: 9px;
}

.flow-list div {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  padding: 12px;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(171, 78, 105, .1);
}

.flow-list svg {
  width: 29px;
  height: 29px;
  margin-bottom: 7px;
  color: var(--pink);
}

.flow-list span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.flow-list b {
  color: var(--pink);
  font-family: var(--serif);
  font-weight: 400;
}

.photo-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  grid-auto-rows: 150px;
  gap: 8px;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-main {
  grid-row: span 2;
  border-radius: 0 0 0 86px;
}

.photo-mosaic img:nth-of-type(2) {
  border-radius: 0 56px 0 0;
}

.photo-mosaic img:nth-of-type(3) {
  border-radius: 70px 0 0 0;
}

.photo-mosaic img:nth-of-type(4) {
  border-radius: 0 0 58px 0;
}

.vertical-script {
  position: absolute;
  top: 0;
  right: -44px;
  font-size: 32px;
  writing-mode: vertical-rl;
}

.can-do {
  padding: 28px 0 72px;
  background:
    radial-gradient(circle at 92% 70%, rgba(236, 226, 214, .42), transparent 16rem),
    #fff;
}

.line-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.line-title span {
  height: 1px;
  background-image: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
}

.line-title h2 {
  font-size: clamp(22px, 2.5vw, 30px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 24px 20px 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 220, 228, .8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  color: var(--pink);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.45;
}

.service-card p {
  min-height: 74px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 7px;
}

.cta {
  position: relative;
  overflow: hidden;
  min-height: 186px;
  padding: 42px 0 38px;
  background: linear-gradient(100deg, #ffe0e8 0%, #fff6f8 48%, #fff 100%);
}

.cta::before {
  position: absolute;
  inset: -76px -10% auto;
  height: 116px;
  content: "";
  background: #fff;
  border-radius: 0 0 50% 50% / 0 0 90% 90%;
}

.cta-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(42vw, 560px);
  background:
    linear-gradient(90deg, rgba(255, 232, 238, .95), rgba(255, 255, 255, .2) 48%, rgba(255, 255, 255, 0)),
    url("assets/shampoo.png") right center / cover no-repeat;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  text-align: center;
  letter-spacing: .08em;
}

.trust {
  padding: 24px 0 30px;
  background: rgba(255, 255, 255, .9);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust article {
  position: relative;
  display: grid;
  min-height: 106px;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-right: 1px dashed #edc3cb;
}

.trust article:last-child {
  border-right: 0;
}

.trust h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.trust p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.laurel {
  position: absolute;
  top: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 70px;
  line-height: 1;
  transform: translateY(-50%);
}

.laurel:first-child {
  left: 16px;
}

.laurel:last-child {
  right: 16px;
}

.trial-panel,
.results,
.voices,
.plans,
.steps {
  background: #fff;
}

.trial-panel {
  padding: 8px 0 22px;
}

.trial-box {
  display: grid;
  grid-template-columns: .8fr 1.35fr .8fr;
  align-items: center;
  gap: 24px;
  min-height: 230px;
  padding: 30px 44px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .86), transparent 12rem),
    linear-gradient(100deg, #fff2f6, #fff8fa 52%, #fde7ee);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trial-checks ul,
.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trial-checks li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 32px;
  font-weight: 700;
}

.trial-checks li::before {
  position: absolute;
  left: 0;
  top: .25em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  content: "✓";
  background: var(--pink);
  border-radius: 50%;
}

.trial-preview {
  text-align: center;
}

.trial-preview h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: .06em;
}

.preview-stack {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 118px;
}

.preview-card {
  width: 178px;
  height: 116px;
  padding: 9px;
  background: #fff;
  border: 1px solid #f3c5d0;
  border-radius: 4px;
  box-shadow: 0 16px 28px rgba(168, 74, 101, .13);
}

.preview-card img {
  width: 100%;
  height: 62px;
  object-fit: cover;
  border-radius: 3px;
}

.preview-card span {
  display: block;
  height: 6px;
  margin-top: 7px;
  background: #f8d5de;
  border-radius: 999px;
}

.preview-card span:nth-of-type(2) {
  width: 72%;
}

.preview-card span:nth-of-type(3) {
  width: 52%;
}

.preview-card-1 {
  transform: rotate(-4deg) translateX(28px);
}

.preview-card-2 {
  z-index: 2;
  transform: translateY(-10px);
}

.preview-card-3 {
  transform: rotate(4deg) translateX(-28px);
}

.trial-action {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.trial-action .script-label {
  margin: 0;
  font-size: 46px;
}

.results {
  padding: 0 0 38px;
}

.results-box {
  display: grid;
  grid-template-columns: 1.55fr .95fr;
  overflow: hidden;
  min-height: 176px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 220, 228, .76);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.results-copy {
  display: grid;
  align-content: center;
  padding: 30px 44px;
}

.results h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(21px, 2.4vw, 29px);
  font-weight: 500;
  letter-spacing: .06em;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.metrics article {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 96px;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.metrics p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.metrics strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  min-height: 48px;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

.metrics small {
  font-family: var(--sans);
  font-size: .44em;
  font-weight: 700;
  letter-spacing: .04em;
}

.results-box > img {
  width: 100%;
  height: 100%;
  min-height: 176px;
  object-fit: cover;
}

.voices {
  padding: 28px 0 46px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.voice-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  min-height: 190px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 220, 228, .76);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.voice-card img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--pink-pale);
}

.voice-card:nth-child(2) img {
  object-position: 52% 42%;
  filter: hue-rotate(-7deg) saturate(.96);
}

.voice-card:nth-child(3) img {
  object-position: 48% 45%;
  filter: saturate(.88) brightness(1.03);
}

.voice-card h3 {
  margin: 0 0 9px;
  color: var(--pink);
  font-size: 16px;
}

.voice-card p {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
}

.voice-card small {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.plans {
  padding: 4px 0 44px;
}

.plan-layout {
  display: grid;
  grid-template-columns: 140px repeat(3, 1fr);
  align-items: center;
  gap: 22px;
}

.support-note {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  color: var(--pink);
  text-align: center;
  font-weight: 700;
  line-height: 1.65;
  background: #fff1f5;
  border: 1px dashed #f2bccc;
  border-radius: 50%;
}

.plan-card {
  position: relative;
  display: grid;
  min-height: 342px;
  padding: 34px 38px 28px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 220, 228, .82);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.plan-card h3 {
  margin: 0 0 4px;
  font-size: 20px;
  text-align: center;
}

.plan-card > p {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.plan-card strong {
  display: block;
  margin-bottom: 20px;
  color: #5a4a47;
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}

.plan-card strong small {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
}

.plan-card li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 14px;
  font-size: 13px;
  font-weight: 600;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--pink);
  content: "・";
}

.plan-card a {
  align-self: end;
  display: grid;
  place-items: center;
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid #bfb8b8;
  border-radius: 5px;
  font-weight: 700;
}

.plan-featured {
  background: linear-gradient(180deg, #fff, #fff3f7);
  border-color: var(--pink);
}

.plan-featured h3,
.plan-featured strong {
  color: var(--pink);
}

.plan-featured a {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #e86291);
  border-color: transparent;
}

.badge {
  position: absolute;
  top: -18px;
  right: -14px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  background: #fff;
  border: 1px solid var(--pink);
  border-radius: 50%;
}

.plan-caption {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.steps {
  padding: 0 0 54px;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 158px;
  padding: 22px 18px;
  text-align: center;
  background: #fff3f6;
  border-radius: 50%;
}

.step-list li:not(:last-child)::after {
  position: absolute;
  right: -23px;
  top: 50%;
  color: var(--pink);
  font-size: 36px;
  content: "›";
  transform: translateY(-50%);
}

.step-list svg {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  color: var(--pink);
}

.step-list strong {
  color: var(--pink);
  font-size: 13px;
}

.step-list p {
  margin: 7px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 48px 0 42px;
  background:
    radial-gradient(circle at 6% 28%, rgba(255, 255, 255, .4) 0 34px, transparent 35px),
    radial-gradient(circle at 96% 72%, rgba(255, 255, 255, .42) 0 28px, transparent 29px),
    linear-gradient(100deg, #f7a9bf, #ffdce6 52%, #fff2f6);
}

.final-photo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(32vw, 390px);
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 216, 226, .05), rgba(255, 216, 226, .72) 92%),
    url("assets/hero-woman.png") left bottom / cover no-repeat;
}

.final-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 24px;
  padding-left: min(18vw, 170px);
  padding-right: min(23vw, 240px);
}

.final-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .06em;
}

.final-device {
  position: absolute;
  right: clamp(20px, 6vw, 96px);
  bottom: 20px;
  width: 250px;
  height: 150px;
}

.mini-laptop {
  top: 8px;
  right: 22px;
  width: 210px;
  padding: 7px;
}

.mini-laptop .screen {
  min-height: 118px;
}

.mini-laptop .mock-header {
  padding: 7px;
  gap: 6px;
}

.mini-laptop .mock-hero {
  grid-template-columns: 46% 1fr;
  padding: 4px 9px;
}

.mini-laptop .mock-hero p {
  font-size: 11px;
}

.mini-laptop .mock-hero button {
  padding: 6px 8px;
}

.mini-phone {
  right: 0;
  bottom: 0;
  width: 64px;
  padding: 4px;
  border-radius: 12px;
}

.mini-phone .phone-notch {
  top: 4px;
  width: 28px;
  height: 7px;
}

.mini-phone .phone-screen {
  min-height: 128px;
  border-radius: 9px;
}

.mini-phone .phone-bar {
  padding: 10px 5px 4px;
  font-size: 5px;
}

.mini-phone .phone-screen > img {
  width: 42px;
  height: 42px;
}

.mini-phone .phone-screen h2 {
  margin: 5px;
  font-size: 8px;
}

.mini-phone .phone-screen button {
  margin: 0 5px;
  padding: 4px 5px;
  font-size: 5px;
}

.contact-strip {
  padding: 24px 0 32px;
  background: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px 36px;
  text-align: center;
}

.contact-inner p {
  grid-column: 1 / -1;
  margin: 0;
  font-weight: 700;
}

.tel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1;
}

.tel-link svg {
  width: 30px;
  height: 30px;
}

.contact-inner span {
  font-size: 13px;
  font-weight: 700;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 54px;
  color: var(--pink);
  border: 1px solid #f1bac8;
  border-radius: 999px;
  font-weight: 700;
}

.contact-button::after {
  margin-left: 20px;
  font-size: 24px;
  content: "›";
}

.floating-reserve {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 52px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #e86291);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(217, 79, 124, .28);
  font-weight: 800;
  letter-spacing: .06em;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(.96);
  transition: opacity .28s ease, transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease;
}

.floating-reserve::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 9px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2v4M17 2v4M4 9h16M6 4h12a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.floating-reserve.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.floating-reserve:hover {
  box-shadow: 0 20px 42px rgba(217, 79, 124, .34);
  transform: translate3d(0, -2px, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero-copy > *,
  .salon-fade {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
    justify-content: end;
    padding-left: 0;
  }

  .device-stage {
    min-height: 350px;
  }

  .laptop {
    left: 0;
    right: auto;
  }

  .phone {
    left: min(390px, 57vw);
    right: auto;
  }

  .worry-grid,
  .feature-grid,
  .service-grid,
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trial-box,
  .results-box {
    grid-template-columns: 1fr;
  }

  .trial-box {
    text-align: center;
  }

  .trial-checks li {
    display: inline-block;
    margin-inline: 10px;
    text-align: left;
  }

  .results-copy {
    text-align: center;
  }

  .results-box > img {
    max-height: 260px;
  }

  .plan-layout {
    grid-template-columns: repeat(3, 1fr);
  }

  .support-note {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .step-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-list li:not(:last-child)::after {
    display: none;
  }

  .final-photo {
    opacity: .38;
  }

  .final-inner {
    padding-inline: 0;
  }

  .final-device {
    display: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 15px 18px;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--pink);
    background: rgba(255, 255, 255, .86);
    border: 1px solid #f0c6d1;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(217, 79, 124, .12);
  }

  .nav-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    flex: 0 0 auto;
  }

  .global-nav {
    position: fixed;
    top: 70px;
    right: 16px;
    display: grid;
    width: min(290px, calc(100% - 32px));
    padding: 18px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #f3cbd5;
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: .2s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .download-link {
    justify-content: center;
  }

  .hero {
    padding: 96px 20px 70px;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    opacity: 1;
    background:
      linear-gradient(90deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.58) 48%, rgba(255,255,255,.96) 100%),
      linear-gradient(180deg, rgba(255,255,255,0) 58%, rgba(255,255,255,.9) 100%),
      url("assets/biyou_background.png") 32% center / cover no-repeat;
  }

  .hero-inner {
    gap: 18px;
    min-height: 0;
    padding-left: 0;
  }

  .eyebrow {
    font-size: 14px;
  }

  .hero-actions,
  .cta .hero-actions {
    display: grid;
    width: 100%;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .script-word {
    display: none;
  }

  .section-shell {
    width: min(100% - 32px, 1120px);
  }

  .worry-grid,
  .feature-grid,
  .service-grid,
  .trust-grid,
  .voice-grid,
  .plan-layout,
  .step-list,
  .metrics {
    grid-template-columns: 1fr;
  }

  .trial-box {
    padding: 28px 20px;
  }

  .trial-checks li {
    display: block;
    margin-inline: 0;
  }

  .preview-stack {
    min-height: 250px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .preview-card {
    width: min(260px, 100%);
    height: auto;
    transform: none;
  }

  .preview-card img {
    height: 86px;
  }

  .results-copy {
    padding: 28px 20px;
  }

  .results-box > img {
    min-height: 170px;
  }

  .voice-card {
    grid-template-columns: 76px 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .voice-card img {
    width: 70px;
    height: 70px;
  }

  .support-note {
    width: 120px;
    height: 120px;
    font-size: 13px;
  }

  .plan-card {
    min-height: 0;
    padding: 30px 26px 24px;
  }

  .badge {
    right: 10px;
  }

  .step-list {
    gap: 14px;
  }

  .step-list li {
    min-height: 0;
    border-radius: 8px;
  }

  .final-cta {
    padding: 42px 0 36px;
  }

  .final-photo {
    width: 100%;
    opacity: .2;
  }

  .contact-button {
    width: 100%;
    min-width: 0;
  }

  .worry-card {
    padding: 20px;
  }

  .flow-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .flow-list b {
    display: none;
  }

  .photo-mosaic {
    grid-auto-rows: 118px;
  }

  .vertical-script {
    right: 8px;
    color: rgba(226, 104, 136, .72);
  }

  .line-title {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .line-title span {
    display: none;
  }

  .service-card p {
    min-height: 0;
  }

  .cta-bg {
    width: 100%;
    opacity: .36;
  }

  .trust article {
    border-right: 0;
    border-bottom: 1px dashed #edc3cb;
  }

  .trust article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 480px) {
  .brand span {
    font-size: 23px;
  }

  h1 {
    font-size: 45px;
  }

  .lead {
    font-size: 24px;
  }

  .device-stage {
    min-height: 292px;
    transform: scale(.72);
  }

  .phone {
    left: 334px;
  }

  .worries {
    padding-top: 18px;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 104px;
  }

  .flow-list div {
    width: 132px;
    height: 132px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
    line-height: 1.7;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    font-size: 22px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    gap: 4px;
  }

  .global-nav {
    top: 64px;
  }

  .hero {
    min-height: auto;
    padding: 82px 20px 46px;
  }

  .hero-photo {
    background:
      linear-gradient(90deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,.78) 48%, rgba(255,255,255,.98) 100%),
      linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.16) 52%, rgba(255,255,255,.94) 100%),
      url("assets/biyou_background.png") 10% center / auto 100% no-repeat;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.5;
  }

  .eyebrow span {
    width: 18px;
  }

  .lead {
    font-size: clamp(19px, 6vw, 22px);
    line-height: 1.45;
  }

  h1 {
    font-size: clamp(34px, 10vw, 39px);
    line-height: 1.18;
  }

  .hero-text {
    margin: 18px 0 22px;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    min-height: 50px;
    padding: 0 20px;
    font-size: 14px;
  }

  .button svg {
    width: 20px;
    height: 20px;
  }

  .section-shell {
    width: min(100% - 32px, 1120px);
  }

  .worries,
  .feature,
  .can-do,
  .trial-panel,
  .results,
  .voices,
  .plans,
  .steps {
    padding-block: 44px;
  }

  .worry-card {
    min-height: 0;
    padding: 18px 18px;
    font-size: 14px;
  }

  .worry-card svg,
  .service-card svg,
  .step-list svg {
    width: 28px;
    height: 28px;
  }

  .feature-copy {
    gap: 14px;
  }

  .feature-copy h2,
  .line-title h2,
  .trial-preview h2,
  .results-copy h2,
  .voices h2,
  .plans h2,
  .steps h2,
  .final-inner h2 {
    font-size: clamp(21px, 7vw, 27px);
    line-height: 1.45;
  }

  .feature-copy > p,
  .results-copy > p,
  .final-inner p {
    font-size: 14px;
    line-height: 1.75;
  }

  .flow-list {
    gap: 10px;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
  }

  .flow-list div {
    width: auto;
    height: auto;
    min-height: 92px;
    padding: 14px 10px;
    border-radius: 18px;
    font-size: 12px;
    inline-size: 100%;
  }

  .flow-list svg {
    width: 26px;
    height: 26px;
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 92px;
    gap: 8px;
  }

  .vertical-script {
    display: none;
  }

  .service-grid {
    gap: 14px;
  }

  .service-card {
    padding: 18px 16px 14px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.65;
  }

  .service-card img {
    aspect-ratio: 2 / 1;
  }

  .trial-box {
    gap: 22px;
    padding: 24px 18px;
  }

  .trial-checks li {
    padding-left: 24px;
    font-size: 13px;
    line-height: 1.65;
  }

  .preview-stack {
    min-height: 190px;
  }

  .preview-card {
    width: min(220px, 100%);
  }

  .preview-card img {
    height: 68px;
  }

  .trial-action {
    gap: 12px;
  }

  .results-copy {
    padding: 22px 18px;
  }

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

  .metrics {
    gap: 10px;
  }

  .metrics article {
    padding: 12px 8px;
  }

  .metrics strong {
    font-size: 24px;
  }

  .results-box > img {
    min-height: 140px;
    max-height: 180px;
  }

  .voice-card {
    grid-template-columns: 62px 1fr;
    gap: 14px;
    padding: 20px 16px;
  }

  .voice-card img {
    width: 58px;
    height: 58px;
  }

  .voice-card h3 {
    font-size: 16px;
  }

  .voice-card p,
  .voice-card small {
    font-size: 12px;
    line-height: 1.65;
  }

  .plan-layout {
    gap: 14px;
  }

  .plan-lead {
    min-height: 0;
    padding: 20px 18px;
  }

  .plan-card {
    padding: 22px 20px 20px;
  }

  .plan-card h3 {
    font-size: 18px;
  }

  .plan-card > p,
  .plan-card li {
    font-size: 13px;
    line-height: 1.65;
  }

  .plan-card strong {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .support-note {
    width: 104px;
    height: 104px;
    font-size: 12px;
  }

  .step-list {
    gap: 10px;
  }

  .step-list li {
    padding: 18px 16px;
  }

  .step-list p {
    font-size: 12px;
    line-height: 1.65;
  }

  .final-cta {
    padding: 36px 0 30px;
  }

  .contact-strip {
    padding: 22px 0 28px;
  }

  .contact-inner {
    gap: 12px;
  }

  .tel-link {
    font-size: 28px;
  }

  .tel-link svg {
    width: 24px;
    height: 24px;
  }

  .contact-inner p,
  .contact-inner span {
    font-size: 13px;
    line-height: 1.65;
  }

  .contact-button {
    min-height: 50px;
    font-size: 14px;
  }

  .floating-reserve {
    left: 18px;
    right: 18px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    min-width: 0;
    min-height: 52px;
    font-size: 15px;
  }
}


.availability-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(253, 232, 239, .95), transparent 28rem),
    radial-gradient(circle at 94% 42%, rgba(246, 206, 215, .68), transparent 30rem),
    #fffdfd;
}

.availability-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 92px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 245, 248, .9)),
    url("assets/biyou_background.png") center / cover no-repeat;
}

.availability-hero::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  content: "";
  background: rgba(217, 79, 124, .1);
  border-radius: 999px;
  filter: blur(2px);
}

.availability-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.availability-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(42px, 7vw, 82px);
}

.availability-hero p:not(.script-label) {
  max-width: 650px;
  margin: 0 0 28px;
  font-weight: 700;
  color: var(--muted);
}

.availability-hero-card {
  position: relative;
  padding: 16px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(240, 191, 204, .8);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.availability-hero-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

.availability-hero-card span {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 6px 14px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(217, 79, 124, .82);
  border-radius: 999px;
}

.availability-section,
.availability-message {
  padding: 86px 0;
}

.availability-title-row {
  margin-bottom: 16px;
}

.availability-note {
  margin: 0 0 30px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.availability-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 22px;
  padding: 14px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(240, 191, 204, .7);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(171, 78, 105, .08);
}

.availability-filter label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.availability-filter input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  background: #fff;
  border: 1px solid rgba(240, 191, 204, .9);
  border-radius: 999px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-chips button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--pink);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  border: 1px solid rgba(240, 191, 204, .85);
  border-radius: 999px;
}

.filter-chips button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #e86291);
  border-color: transparent;
  box-shadow: 0 10px 20px rgba(217, 79, 124, .18);
}

.availability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.availability-day-group {
  overflow: hidden;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(240, 191, 204, .75);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(171, 78, 105, .08);
}

.availability-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(253, 232, 239, .96), rgba(255, 255, 255, .9));
  border-bottom: 1px solid rgba(240, 191, 204, .72);
}

.availability-day-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.availability-day-head span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  border: 1px solid rgba(240, 191, 204, .85);
  border-radius: 999px;
}

.slot-list {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.slot-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(240, 191, 204, .75);
  border-radius: 16px;
  box-shadow: none;
}

.slot-main {
  display: grid;
  grid-template-columns: 86px minmax(140px, 1fr) 92px;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.slot-card strong {
  display: block;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.1;
}

.slot-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.slot-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 82px;
  padding: 4px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), #e86291);
  border-radius: 999px;
}

.slot-card button {
  flex: 0 0 auto;
  min-width: 116px;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: not-allowed;
  opacity: .82;
}

.slot-card.is-full {
  color: rgba(70, 48, 45, .55);
  background: rgba(255, 255, 255, .52);
}

.slot-card.is-full .slot-status,
.slot-card.is-full button {
  background: #b9aaa7;
}

.availability-message-inner {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(255, 245, 248, .92));
  border: 1px solid rgba(240, 191, 204, .75);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.availability-message-inner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 28px;
}

.availability-message h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.35;
}

.availability-message p:not(.script-label) {
  margin: 0 0 24px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 900px) {
  .availability-hero-inner,
  .availability-message-inner {
    grid-template-columns: 1fr;
  }

  .availability-filter {
    align-items: stretch;
    flex-direction: column;
  }

  .availability-filter label {
    min-width: 0;
  }

  .filter-chips {
    justify-content: flex-start;
  }

  .slot-main {
    grid-template-columns: 78px minmax(130px, 1fr) 86px;
  }
}

@media (max-width: 760px) {
  .availability-hero {
    padding: 116px 0 54px;
  }

  .availability-hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .availability-hero-card {
    padding: 10px;
    border-radius: 24px;
    transform: none;
  }

  .availability-hero-card img,
  .availability-message-inner img {
    height: 190px;
    border-radius: 18px;
  }

  .availability-section,
  .availability-message {
    padding: 54px 0;
  }

  .availability-note {
    text-align: left;
    font-size: 13px;
  }

  .availability-filter {
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .availability-filter label {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

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

  .filter-chips button {
    padding: 0 8px;
    font-size: 12px;
  }

  .availability-grid {
    gap: 12px;
  }

  .availability-day-group {
    border-radius: 18px;
  }

  .availability-day-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
  }

  .availability-day-head h3 {
    font-size: 20px;
  }

  .slot-list {
    gap: 7px;
    padding: 8px;
  }

  .slot-card {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    padding: 12px;
    border-radius: 14px;
  }

  .slot-main {
    grid-template-columns: 72px 1fr;
    gap: 8px 10px;
  }

  .slot-card strong {
    font-size: 22px;
  }

  .slot-card p {
    font-size: 13px;
  }

  .slot-status {
    grid-column: 1 / -1;
    justify-self: start;
    min-width: 74px;
    font-size: 11px;
  }

  .slot-card button {
    width: 100%;
    min-height: 38px;
  }

  .availability-message-inner {
    padding: 18px;
    border-radius: 24px;
  }
}
