@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;700;800;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");

:root {
  --pink: #ff4fb8;
  --violet: #7b4dff;
  --aqua: #59d7ff;
  --navy: #10132b;
  --ink: #202033;
  --muted: #66657c;
  --paper: #fff7fd;
  --white: #ffffff;
  --line: rgba(32, 32, 51, 0.12);
  --shadow: 0 24px 70px rgba(16, 19, 43, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.lead,
.btn,
summary {
  word-break: auto-phrase;
  text-wrap: balance;
}

.en {
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0.08em;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: 0 18px;
  pointer-events: none;
  transition: top 0.35s ease;
}

.site-header.is-condensed {
  top: 8px;
}

.site-header__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  width: auto;
  max-width: calc(100vw - 36px);
  padding: 11px 14px 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50px;
  background: rgba(16, 19, 43, 0.48);
  color: var(--white);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.68);
  animation: header-pill-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.brand__mark {
  width: 64px;
  height: 46px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav a {
  position: relative;
  font-size: 13.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--pink);
  transition: width 0.25s ease;
}

.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.site-nav a:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-1px);
}

.pc-mega-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: 900 10px/1 "Inter", system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.pc-mega-toggle i {
  position: relative;
  display: block;
  width: 13px;
  height: 13px;
}

.pc-mega-toggle i::before,
.pc-mega-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 13px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.pc-mega-toggle i::after { transform: rotate(90deg); }
.pc-mega-toggle.is-current,
.pc-mega-open .pc-mega-toggle { background: var(--pink); border-color: var(--pink); }
.pc-mega-open .pc-mega-toggle i::before { transform: rotate(45deg); }
.pc-mega-open .pc-mega-toggle i::after { transform: rotate(-45deg); }

.pc-mega-shade {
  position: fixed;
  inset: 0;
  z-index: 58;
  visibility: hidden;
  opacity: 0;
  background: rgba(10, 9, 27, 0.36);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.pc-mega-menu {
  position: fixed;
  left: 50%;
  top: 94px;
  z-index: 59;
  width: min(calc(100vw - 36px), 1180px);
  padding: 22px 24px 0;
  border: 1px solid rgba(32, 32, 51, 0.12);
  border-radius: 8px;
  color: #202033;
  background: rgba(252, 251, 255, 0.98);
  box-shadow: 0 34px 70px -28px rgba(12, 11, 31, 0.55);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.pc-mega-open .pc-mega-shade { visibility: visible; opacity: 1; }
.pc-mega-open .pc-mega-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }

.pc-mega__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
}

.pc-mega__head small,
.pc-mega__head b { display: block; }
.pc-mega__head small { color: #ff3fa6; font: 900 9px/1.4 "Inter", system-ui, sans-serif; }
.pc-mega__head b { margin-top: 3px; font-size: 17px; }

.pc-mega__close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(32, 32, 51, 0.18);
  border-radius: 50%;
  color: #202033;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

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

@media (min-width: 901px) {
  .pc-mega__cards {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }
}

.pc-mega__card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 2.75;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
}

.pc-mega__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.pc-mega__card:first-child img { object-position: center 44%; }
.pc-mega__card:nth-child(2) img { object-position: center 48%; }
.pc-mega__card:nth-child(3) img { object-position: center 50%; }
.pc-mega__card:nth-child(4) img { object-position: center 28%; }
.pc-mega__card:nth-child(5) img { object-position: center 44%; }
.pc-mega__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 13, 35, 0.02) 22%, rgba(14, 13, 35, 0.86) 100%);
}

.pc-mega__card span {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 13px;
  z-index: 1;
}

.pc-mega__card small,
.pc-mega__card b,
.pc-mega__card em { display: block; }
.pc-mega__card small { color: #8deaff; font: 900 8px/1.4 "Inter", system-ui, sans-serif; }
.pc-mega__card b { margin-top: 3px; font-size: 15px; }
.pc-mega__card em { margin-top: 2px; font-size: 9px; font-style: normal; opacity: 0.78; }
.pc-mega__card:hover img,
.pc-mega__card:focus-visible img { transform: scale(1.06); }

.pc-mega__all {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 18px;
  padding: 13px 0 15px;
  border-top: 1px solid rgba(32, 32, 51, 0.12);
}

.pc-mega__all span { color: rgba(32, 32, 51, 0.45); font: 900 8px/1.4 "Inter", system-ui, sans-serif; }
.pc-mega__all a { color: #202033; font-size: 11.5px; font-weight: 800; text-decoration: none; }
.pc-mega__all a:hover,
.pc-mega__all a:focus-visible { color: #ff3fa6; }

.sp-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.sp-menu-shade,
.sp-menu-sheet {
  display: none;
}

@keyframes header-pill-in {
  from {
    opacity: 0;
    transform: translateY(-26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 18px;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section--soft {
  background: linear-gradient(180deg, #fff 0%, #fff7fd 100%);
}

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

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--pink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.section-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.32;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 38em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 16px 34px rgba(255, 79, 184, 0.3);
}

.btn--ghost {
  border: 1px solid rgba(32, 32, 51, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: 150px 0 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 16%, rgba(89, 215, 255, 0.42), transparent 30%),
    radial-gradient(circle at 20% 22%, rgba(255, 79, 184, 0.45), transparent 34%),
    linear-gradient(135deg, #171338, #10132b 60%, #291044);
  overflow: hidden;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.2;
}

.page-hero p {
  max-width: 46em;
  color: rgba(255, 255, 255, 0.78);
}

.grid-2 {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

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

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.stack {
  display: grid;
  gap: 18px;
}

.mini-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.mini-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

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

.text-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.text-panel h2,
.text-panel h3 {
  margin-top: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 79, 184, 0.22);
  border-radius: 999px;
  color: var(--pink);
  background: #fff0fa;
  font-size: 12px;
  font-weight: 900;
}

.hair-list {
  border-top: 1px solid var(--line);
}

.hair-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.hair-item__no {
  color: transparent;
  -webkit-text-stroke: 1.2px var(--pink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 54px;
  font-weight: 900;
  line-height: 0.9;
}

.hair-item h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.hair-item p {
  margin: 0;
  color: var(--muted);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  min-height: 180px;
}

.tile--big {
  grid-column: span 2;
  grid-row: span 2;
}

.tile--wide {
  grid-column: span 2;
}

.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.tile:hover img {
  transform: scale(1.05);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 19, 43, 0.1), rgba(16, 19, 43, 0.78));
}

.tile__body {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.tile__body small {
  display: block;
  margin-bottom: 6px;
  color: #aeefff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tile__body h3 {
  margin: 0;
  font-size: 22px;
}

.tile__body p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.stats-field {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  margin-top: 34px;
}

.stat-main {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-main strong {
  display: block;
  color: var(--pink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(88px, 15vw, 180px);
  font-weight: 900;
  line-height: 0.9;
}

.stat-main span {
  color: var(--muted);
}

.stat-stack {
  display: grid;
  gap: 16px;
}

.stat-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.stat-card b {
  display: block;
  color: var(--violet);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 44px;
  line-height: 1;
}

.voice-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.voice-large {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
}

.voice-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-large__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}

.voice-list {
  display: grid;
  gap: 14px;
}

.voice-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.price-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.price-table th:first-child,
.price-table td:first-child {
  text-align: left;
  font-weight: 900;
}

.price-table thead th {
  color: var(--pink);
  background: #fff0fa;
}

.price-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.price-cards {
  display: none;
  gap: 12px;
  margin-top: 18px;
}

.price-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-card b {
  display: block;
  color: var(--pink);
  font-size: 20px;
}

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

.schedule-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.schedule-card h3 {
  margin: 0 0 12px;
  color: var(--pink);
}

.schedule-card ul,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule-card li,
.plain-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.plain-list li:last-child,
.schedule-card li:last-child {
  border-bottom: 0;
}

.info-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-table table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 180px;
  color: var(--pink);
  background: #fff0fa;
}

.process {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.process-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.process-step:last-child {
  border-bottom: 0;
}

.process-step__num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--violet));
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: start;
}

.faq-side {
  position: sticky;
  top: 110px;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-q span:first-child {
  color: var(--pink);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
}

.faq-q strong {
  font-size: 16px;
}

.faq-icon::before {
  content: "+";
  color: var(--violet);
  font-size: 24px;
  font-weight: 900;
}

.faq-item.is-open .faq-icon::before {
  content: "-";
}

.faq-a {
  display: none;
  padding: 0 0 24px 62px;
  color: var(--muted);
}

.faq-item.is-open .faq-a {
  display: block;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.news-item img {
  width: 140px;
  height: 92px;
  object-fit: cover;
  border-radius: 6px;
}

.contact-embed {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.final-cta {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 19, 43, 0.52), rgba(16, 19, 43, 0.88));
  z-index: 1;
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 48px));
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.28;
}

.final-cta p {
  max-width: 34em;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 79, 184, 0.1), transparent 28%, rgba(89, 215, 255, 0.1) 72%, transparent),
    linear-gradient(180deg, #fff9fe 0%, #f6f1fb 100%);
  border-top: 1px solid rgba(123, 77, 255, 0.12);
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: -1;
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--aqua));
  opacity: 0.7;
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid rgba(32, 32, 51, 0.1);
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.35;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 1.3fr 0.95fr;
  gap: 46px;
  padding: 54px 0 40px;
}

.footer-main p,
.footer-main a {
  color: rgba(32, 32, 51, 0.64);
  font-size: 14px;
  text-decoration: none;
}

.footer-main a {
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-main a:hover,
.footer-main a:focus-visible {
  color: var(--pink);
  transform: translateX(3px);
}

.footer-main h3,
.footer-main h4 {
  margin: 0 0 12px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand__logo {
  width: 104px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(123, 77, 255, 0.12));
}

.footer-brand h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.footer-brand p {
  max-width: 31em;
  margin: 0;
  line-height: 1.9;
}

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

.footer-main h4 {
  color: var(--violet);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-info {
  align-self: stretch;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(123, 77, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 44px rgba(32, 32, 51, 0.06);
}

.footer-info__label {
  color: var(--pink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-info p {
  margin: 8px 0 0;
}

.footer-info__line {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(255, 79, 184, 0.18);
}

.footer-info__line:hover,
.footer-info__line:focus-visible {
  transform: translateY(-2px);
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(32, 32, 51, 0.1);
  color: rgba(32, 32, 51, 0.46);
  font-size: 12px;
}

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

.reveal {
  opacity: 1;
}

@media (max-width: 980px) {
  .pc-mega-toggle,
  .pc-mega-menu,
  .pc-mega-shade {
    display: none !important;
  }

  .site-header__pill {
    gap: 12px;
  }

  .grid-2,
  .voice-grid,
  .faq-layout,
  .stats-field,
  .footer-cta,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .faq-side {
    position: static;
  }

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

  .schedule-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    display: none;
  }

  .sp-menu-toggle {
    display: inline-flex;
  }

  body.sp-menu-open {
    overflow: hidden;
  }

  .sp-menu-shade {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(8, 7, 18, 0.58);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.34s ease, visibility 0.34s ease;
  }

  body.sp-menu-open .sp-menu-shade {
    visibility: visible;
    opacity: 1;
  }

  .sp-menu-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: block;
    max-height: min(82svh, 680px);
    overflow: auto;
    padding-bottom: max(22px, env(safe-area-inset-bottom));
    border-radius: 26px 26px 0 0;
    color: var(--ink);
    background:
      radial-gradient(circle at 18% 4%, rgba(255, 79, 184, 0.14), transparent 32%),
      radial-gradient(circle at 88% 24%, rgba(89, 215, 255, 0.14), transparent 34%),
      #fff;
    box-shadow: 0 -28px 56px -24px rgba(9, 8, 23, 0.52);
    visibility: hidden;
    pointer-events: none;
    transform: translateY(108%);
    transition: visibility 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  body.sp-menu-open .sp-menu-sheet {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sp-menu__grab {
    width: 44px;
    height: 5px;
    margin: 12px auto 6px;
    border-radius: 999px;
    background: rgba(32, 32, 51, 0.16);
  }

  .sp-menu__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 22px 15px;
    border-bottom: 1px solid rgba(32, 32, 51, 0.1);
  }

  .sp-menu__head b {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .sp-menu__head small {
    color: var(--pink);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .sp-menu__tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 16px 18px 6px;
  }

  .sp-menu__tile {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 94px;
    padding: 14px;
    border: 1px solid rgba(32, 32, 51, 0.1);
    border-radius: 14px;
    color: var(--ink);
    background: rgba(246, 242, 248, 0.78);
    text-decoration: none;
  }

  .sp-menu__tile span {
    color: var(--pink);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .sp-menu__tile b {
    font-size: 15px;
    font-weight: 900;
  }

  .sp-menu__tile small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.55;
  }

  .sp-menu__rows {
    padding: 8px 18px 12px;
  }

  .sp-menu__rows a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 6px;
    border-bottom: 1px dashed rgba(32, 32, 51, 0.14);
    color: var(--ink);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
  }

  .sp-menu__rows a span {
    color: var(--pink);
    font-family: "Inter", system-ui, sans-serif;
  }

  .sp-menu__foot {
    padding: 10px 18px 0;
  }

  .sp-menu__foot a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--pink), var(--violet));
    box-shadow: 0 16px 28px -16px rgba(255, 79, 184, 0.72);
    font-weight: 900;
    text-decoration: none;
  }

  .sp-menu__foot small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 12px;
  }

  .brand__mark {
    width: 52px;
    height: 38px;
  }

  .site-header {
    padding: 0 10px;
  }

  .site-header__pill {
    gap: 8px;
    max-width: calc(100vw - 20px);
    padding: 8px 9px 8px 14px;
  }

  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .footer-main {
    gap: 26px;
    padding: 38px 0 28px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .copyright {
    display: grid;
  }

  .tile--big,
  .tile--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hair-item,
  .process-step,
  .news-item {
    grid-template-columns: 1fr;
  }

  .news-item img {
    width: 100%;
    height: 180px;
  }

  .faq-a {
    padding-left: 0;
  }

  .price-cards {
    display: grid;
  }

  .price-table {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header__pill,
  .site-nav a::after,
  .header-cta {
    animation: none;
    transition: none;
  }
}

/* Fixed pages v2 ---------------------------------------------------------- */
.subpage-v2 {
  --sub-ink: #1b1a2b;
  --sub-muted: #686779;
  --sub-line: rgba(27, 26, 43, 0.14);
  color: var(--sub-ink);
  background: #fff;
}

.sub-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sub-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #111326;
}

.sub-hero__media,
.sub-hero__media::after {
  position: absolute;
  inset: 0;
}

.sub-hero__media {
  z-index: -2;
  margin: 0;
}

.sub-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: sub-hero-drift 16s ease-in-out infinite alternate;
}

.sub-hero__media::after {
  content: "";
  background: linear-gradient(90deg, rgba(8, 9, 27, 0.91) 0%, rgba(8, 9, 27, 0.6) 46%, rgba(8, 9, 27, 0.12) 78%), linear-gradient(0deg, rgba(8, 9, 27, 0.72), transparent 48%);
}

@keyframes sub-hero-drift {
  from { transform: scale(1.01); }
  to { transform: scale(1.06); }
}

.sub-hero__inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  padding: 142px 0 70px;
}

.sub-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #8ee9ff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sub-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.sub-hero h1 {
  max-width: 10em;
  margin: 18px 0 0;
  font-size: clamp(54px, 8vw, 108px);
  line-height: 1;
  letter-spacing: 0;
}

.sub-hero__lead {
  max-width: 48em;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.9;
}

.sub-section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.sub-section--mist { background: #f5f8ff; }
.sub-section--blush { background: #fff5fa; }
.sub-section--paper { background: #fff; }
.sub-section--night { color: #fff; background: #111326; }

.sub-heading {
  margin: 14px 0 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.14;
  letter-spacing: 0;
}

.sub-lead {
  max-width: 48em;
  margin: 22px 0 0;
  color: var(--sub-muted);
  font-size: 16px;
  line-height: 2;
}

.class-faq__more { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; color: var(--sub-ink); font-size: 13px; font-weight: 900; text-decoration: none; }
.class-faq__more::after { content: "\2192"; color: #ff4fb8; font-size: 18px; transition: transform .25s ease; }
.class-faq__more:hover::after, .class-faq__more:focus-visible::after { transform: translateX(5px); }

.sub-section--night .sub-lead { color: rgba(255, 255, 255, 0.68); }

.sub-rule-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--sub-line);
}

.sub-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.sub-motion .sub-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.sub-motion .sub-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.sub-cta {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-align: center;
  background: #111326;
}

.sub-cta > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
}

.sub-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 11, 32, 0.62);
}

.sub-cta__inner {
  width: min(760px, calc(100% - 40px));
  padding: 90px 0;
}

.sub-cta h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.1;
}

.sub-cta p {
  margin: 20px auto 28px;
  color: rgba(255, 255, 255, 0.76);
}

/* Price — sec-pricing-03 comparison matrix */
.price-v2 .sub-hero { min-height: 640px; }
.price-v2 .sub-hero__media img { object-position: center 46%; }

.price-v2__trial-section {
  z-index: 3;
  padding: 34px 0 44px;
  overflow: hidden;
}

.price-v2__trial {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  width: min(820px, 100%);
  min-height: 156px;
  margin: 0 auto;
  padding: 0 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(27, 26, 43, 0.12);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 34px 80px -38px rgba(17, 19, 38, 0.5);
}

.price-v2__trial-mark {
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #ff48ad;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
  text-align: center;
}

.price-v2__trial-main small,
.price-v2__trial-main strong {
  display: block;
}

.price-v2__trial-main small {
  color: #ff3fa6;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-v2__trial-main strong {
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.2;
}

.price-v2__trial-main strong b {
  color: #ff3fa6;
  font-size: 1.38em;
}

.price-v2__trial-facts {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 18px;
  margin: 0;
}

.price-v2__trial-facts div {
  padding-left: 18px;
  border-left: 1px solid var(--sub-line);
}

.price-v2__trial-facts dt {
  color: var(--sub-muted);
  font-size: 9px;
  font-weight: 800;
}

.price-v2__trial-facts dd {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 900;
}

.price-v2__matrix {
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid var(--sub-line);
  background: #fff;
  box-shadow: 0 30px 80px -58px rgba(17, 19, 43, 0.45);
}

.price-v2__row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--sub-line);
}

.price-v2__row:last-child { border-bottom: 0; }

.price-v2__cell {
  min-width: 0;
  padding: 20px 22px;
  border-right: 1px solid var(--sub-line);
  text-align: center;
}

.price-v2__cell:last-child { border-right: 0; }
.price-v2__cell:first-child { text-align: left; font-weight: 800; }
.price-v2__row--head .price-v2__cell { padding-block: 30px; }
.price-v2__row--head .price-v2__cell:nth-child(2) { background: #fff0f7; }
.price-v2__row--head .price-v2__cell:nth-child(3) { background: #eef9ff; }
.price-v2__row--head .price-v2__cell:nth-child(4) { background: #fff8d8; }

.price-v2__plan {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-v2__row--head h3 {
  min-height: 3em;
  margin: 8px 0 12px;
  font-size: 20px;
  line-height: 1.45;
}

.price-v2__price {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1;
}

.price-v2__price small { font-size: 11px; }
.price-v2__value { font-size: 13px; font-weight: 800; }
.price-v2__dash { color: #b3b1bd; }

.price-v2__mobile { display: none; }

.price-v2__notes {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.price-v2__note-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--sub-line);
}

.price-v2__note-list li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid var(--sub-line);
  color: var(--sub-muted);
  font-size: 14px;
}

.price-v2__note-list li::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4fb8;
}

.price-v2__private {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 480px;
  background: #fff;
}

.price-v2__private-copy {
  align-self: center;
  padding: 64px;
}

.price-v2__private-media { margin: 0; overflow: hidden; }
.price-v2__private-media img { width: 100%; height: 100%; object-fit: cover; }

.price-private {
  background: #fff8fc;
}

.price-private__intro {
  display: block;
  min-height: 0;
  background: #fff;
  box-shadow: 0 34px 90px -62px rgba(17, 19, 43, 0.5);
}

.price-private__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: #edf1f7;
}

.price-private__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.price-private__media figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.price-private__copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
  align-items: start;
  padding: clamp(44px, 6vw, 82px);
}

.price-private__copy-head .sub-heading {
  max-width: none;
  font-size: clamp(36px, 4.2vw, 54px);
}

.price-private__copy-body .sub-lead {
  margin-top: 0;
}

.price-private__copy .sub-kicker { color: #ff3fa6; }

.price-private__fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--sub-line);
  list-style: none;
}

.price-private__fit li {
  position: relative;
  padding: 15px 0 15px 20px;
  border-bottom: 1px solid var(--sub-line);
  color: var(--sub-muted);
  font-size: 12px;
  font-weight: 700;
}

.price-private__fit li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4fb8;
}

.price-private__head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.price-private__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--sub-line);
  background: #fff;
  box-shadow: 0 30px 80px -60px rgba(17, 19, 43, 0.5);
}

.price-private__swipe {
  display: none;
  margin: 0 0 10px;
  color: #ff3fa6;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.price-private__table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
  text-align: center;
}

.price-private__table th,
.price-private__table td {
  padding: 20px 18px;
  border-right: 1px solid var(--sub-line);
  border-bottom: 1px solid var(--sub-line);
}

.price-private__table tr:last-child td { border-bottom: 0; }
.price-private__table th:last-child,
.price-private__table td:last-child { border-right: 0; }

.price-private__table thead th {
  color: #fff;
  background: #292842;
  font-size: 12px;
  font-weight: 900;
}

.price-private__table thead th:first-child {
  background: #ff4fb8;
}

.price-private__table tbody th {
  color: #ff3fa6;
  background: #fff1f8;
  font-size: 13px;
  text-align: left;
}

.price-private__table td {
  color: #27263b;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.price-private__table-note {
  margin: 18px 0 0;
  color: var(--sub-muted);
  font-size: 12px;
}

.price-private__area {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--sub-line);
  background: var(--sub-line);
}

.price-private__area article {
  padding: 30px;
  background: #fff;
}

.price-private__area small {
  color: #ff3fa6;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-private__area h3 {
  margin: 7px 0 10px;
  font-size: 20px;
}

.price-private__area p {
  margin: 0;
  color: var(--sub-muted);
  font-size: 13px;
}

.price-private__process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.price-private__step {
  position: relative;
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.price-private__step:last-child { border-right: 0; }

.price-private__step b {
  display: block;
  color: #8ee9ff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 54px;
  line-height: 1;
}

.price-private__step small {
  display: block;
  margin-top: 18px;
  color: #ff71c4;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-private__step h3 {
  margin: 7px 0 0;
  font-size: 18px;
}

.price-private__step p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.price-private__policy {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.price-private__policy-list {
  margin: 0;
  border-top: 1px solid var(--sub-ink);
}

.price-private__policy-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--sub-line);
}

.price-private__policy-list dt {
  font-size: 14px;
  font-weight: 800;
}

.price-private__policy-list dd {
  margin: 0;
  color: #ff3fa6;
  font-size: 18px;
  font-weight: 900;
}

.price-private__policy-note {
  margin-top: 22px;
  color: var(--sub-muted);
  font-size: 12px;
}

.price-private__faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--sub-line);
  background: var(--sub-line);
}

.price-private__faq article {
  padding: 30px;
  background: #fff;
}

.price-private__faq b {
  color: #ff3fa6;
  font-family: "Inter", system-ui, sans-serif;
}

.price-private__faq h3 {
  margin: 10px 0 12px;
  font-size: 18px;
}

.price-private__faq p {
  margin: 0;
  color: var(--sub-muted);
  font-size: 13px;
}

.private-v2 .sub-hero__media img { object-position: center 42%; }

@media (max-width: 768px) {
  .private-v2 .sub-hero__media img { object-position: 58% center; }
}

.price-v2__final {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #111326;
}

.price-v2__final > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.price-v2__final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(12, 12, 34, 0.62);
}

.price-v2__final-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
  padding: 90px 0;
}

.price-v2__final h2 {
  margin: 15px 0 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
}

.price-v2__final-actions {
  display: grid;
  gap: 12px;
}

.price-v2__final-actions .btn {
  justify-content: center;
}

.price-v2__final-actions p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  text-align: center;
}

/* Schedule — monthly calendar and editorial weekly setlist */
.schedule-v2 .sub-hero__media img { object-position: center 53%; }

.schedule-current {
  color: var(--sub-ink);
  background: #f7f5fb;
}

.schedule-current__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  margin-top: 52px;
}

.schedule-current__calendar-wrap {
  min-width: 0;
  border-top: 5px solid #1b1a2b;
  background: #fff;
  box-shadow: 0 30px 80px -64px rgba(17, 19, 38, 0.6);
}

.schedule-current__month-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px 22px;
  border-right: 1px solid var(--sub-line);
  border-bottom: 1px solid var(--sub-line);
  border-left: 1px solid var(--sub-line);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.schedule-current__month-head span { color: #ff3fa6; }

.schedule-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-left: 1px solid var(--sub-line);
}

.schedule-calendar__weekday {
  min-width: 0;
  padding: 12px 6px;
  border-right: 1px solid var(--sub-line);
  border-bottom: 1px solid var(--sub-line);
  color: var(--sub-muted);
  text-align: center;
}

.schedule-calendar__weekday small,
.schedule-calendar__weekday strong { display: block; }
.schedule-calendar__weekday small { font-family: "Inter", system-ui, sans-serif; font-size: 8px; font-weight: 900; }
.schedule-calendar__weekday strong { margin-top: 2px; font-size: 11px; }
.schedule-calendar__weekday.is-sunday { color: #dc4660; }
.schedule-calendar__weekday.is-saturday { color: #318bc3; }

.schedule-calendar__cell {
  position: relative;
  min-width: 0;
  min-height: 94px;
  padding: 10px;
  overflow: hidden;
  border-right: 1px solid var(--sub-line);
  border-bottom: 1px solid var(--sub-line);
  background: #fff;
}

.schedule-calendar__cell.is-empty { background: #faf9fc; }
.schedule-calendar__cell.is-sunday .schedule-calendar__date { color: #dc4660; }
.schedule-calendar__cell.is-saturday .schedule-calendar__date { color: #318bc3; }

.schedule-calendar__date {
  position: relative;
  z-index: 2;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.schedule-calendar__marker {
  position: absolute;
  right: 9px;
  bottom: 10px;
  left: 9px;
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 5px;
  border-radius: 2px;
  color: #1b1a2b;
  background: var(--day-color);
  font-size: 8px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.schedule-calendar__cell.is-closed {
  color: #a12c40;
  background: #fff2f4;
}

.schedule-calendar__status {
  position: absolute;
  right: 6px;
  bottom: 11px;
  left: 6px;
  color: #c53f57;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.schedule-current__date-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-right: 1px solid var(--sub-line);
  border-bottom: 1px solid var(--sub-line);
  border-left: 1px solid var(--sub-line);
}

.schedule-current__date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 14px 18px;
  border-right: 1px solid var(--sub-line);
  border-bottom: 1px solid var(--sub-line);
  font-size: 12px;
}

.schedule-current__date-row:nth-child(2n) { border-right: 0; }
.schedule-current__date-row:nth-last-child(-n + 2) { border-bottom: 0; }
.schedule-current__date-row strong { font-size: 13px; }
.schedule-current__date-row.is-closed { color: #bd3f54; }

.schedule-current__date-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sub-muted);
  font-weight: 800;
}

.schedule-current__date-name::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--day-color, #ef4d67);
}

.schedule-current__flyer {
  position: sticky;
  top: 118px;
  margin: 0;
}

.schedule-current__flyer a {
  display: block;
  padding: 12px;
  border: 1px solid rgba(27, 26, 43, 0.12);
  background: #fff;
  box-shadow: 0 34px 80px -58px rgba(17, 19, 38, 0.55);
}

.schedule-current__flyer img {
  display: block;
  width: 100%;
  height: auto;
}

.schedule-current__flyer figcaption {
  margin-top: 10px;
  color: var(--sub-muted);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.schedule-weekly { background: #edf5ff; }

.schedule-v2__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
}

.schedule-v2__legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sub-muted);
  font-size: 12px;
  font-weight: 800;
}

.schedule-v2__legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.schedule-v2__week {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 50px;
  border: 1px solid var(--sub-line);
  background: var(--sub-line);
}

.schedule-v2__day {
  min-width: 0;
  background: #fff;
}

.schedule-v2__day-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  min-height: 170px;
  padding: 30px;
  color: #1b1a2b;
  background: var(--day-color, #fa5bab);
}

.schedule-v2__day-head small,
.schedule-v2__day-head strong { display: block; }
.schedule-v2__day-head small { font-family: "Inter", system-ui, sans-serif; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.schedule-v2__day-head strong { margin-top: 4px; font-size: 35px; line-height: 1; }
.schedule-v2__day-head b { font-family: "Inter", system-ui, sans-serif; font-size: 56px; line-height: 0.8; opacity: 0.28; }

.schedule-v2__tracks { margin: 0; padding: 0; list-style: none; }

.schedule-v2__track {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  min-height: 96px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--sub-line);
}

.schedule-v2__track:last-child { border-bottom: 0; }
.schedule-v2__track time { font-family: "Inter", system-ui, sans-serif; font-size: 13px; font-weight: 900; }
.schedule-v2__track strong { display: block; font-size: 15px; }
.schedule-v2__track small { display: block; margin-top: 3px; color: var(--sub-muted); font-size: 10px; font-weight: 700; }

.schedule-v2__notice {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.schedule-v2__notice-no {
  color: #ff4fb8;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(90px, 15vw, 190px);
  font-weight: 900;
  line-height: 0.8;
}

.schedule-v2__access {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 580px;
}

.schedule-v2__access-media { margin: 0; overflow: hidden; }
.schedule-v2__access-media img { width: 100%; height: 100%; object-fit: cover; }
.schedule-v2__access-copy { align-self: center; padding: 70px; }
.schedule-v2__address { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--sub-line); font-weight: 800; }

.schedule-studio {
  color: var(--sub-ink);
  background: #fcfbfd;
}

.schedule-studio .sub-kicker { color: #ff3fa6; }
.schedule-studio .sub-lead { color: var(--sub-muted); }

.schedule-studio__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 70px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--sub-line);
}

.schedule-studio__venue {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  margin-top: 50px;
  border: 1px solid var(--sub-line);
  background: #fff;
  box-shadow: 0 34px 80px -64px rgba(17, 19, 38, 0.5);
}

.schedule-studio__name {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  padding: 38px;
  border-right: 1px solid var(--sub-line);
  background: #f4f0f7;
  color: #1b1a2b;
}

.schedule-studio__name small {
  color: #ff3fa6;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.schedule-studio__name strong {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(38px, 5vw, 67px);
  line-height: 0.92;
}

.schedule-studio__days { display: grid; }

.schedule-studio__row {
  position: relative;
  display: grid;
  grid-template-columns: 50px 100px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--sub-line);
}

.schedule-studio__row:last-child { border-bottom: 0; }
.schedule-studio__row::before { content: ""; width: 9px; height: 9px; position: absolute; background: var(--day-color); }
.schedule-studio__index { padding-left: 20px; color: rgba(27, 26, 43, 0.38); font-family: "Inter", system-ui, sans-serif; font-size: 11px; font-weight: 900; }
.schedule-studio__row strong { font-size: 20px; }
.schedule-studio__row span:not(.schedule-studio__index) { color: var(--sub-muted); font-size: 13px; font-weight: 700; }
.schedule-studio__row b { font-family: "Inter", system-ui, sans-serif; font-size: 15px; }

.schedule-studio__access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 28px 0 0;
}

.schedule-studio__access p { display: grid; grid-template-columns: 90px 1fr; gap: 18px; margin: 0; }
.schedule-studio__access strong { color: #ff3fa6; font-family: "Inter", system-ui, sans-serif; font-size: 9px; }
.schedule-studio__access span { color: var(--sub-muted); font-size: 12px; }

.schedule-studio__map {
  margin-top: 28px;
  min-height: 320px;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 1px solid var(--sub-line);
  background: #fff;
}

.schedule-studio__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Maya — sec-about-03 editorial spread */
.maya-v2 .sub-hero__media img { object-position: center 38%; }

.maya-v2__spread {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  margin-top: 48px;
}

.maya-v2__portrait {
  position: sticky;
  top: 110px;
  height: 660px;
  margin: 0;
  overflow: hidden;
}

.maya-v2__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.maya-v2__portrait figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.maya-v2__quote {
  margin: 0 0 36px;
  font-size: clamp(27px, 3.6vw, 48px);
  font-weight: 900;
  line-height: 1.4;
}

.maya-v2__bio {
  margin: 0;
  border-top: 1px solid var(--sub-ink);
}

.maya-v2__bio > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sub-line);
}

.maya-v2__bio dt {
  color: #ff4fb8;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.maya-v2__bio dd { margin: 0; color: var(--sub-muted); font-size: 14px; }

.maya-v2__numbers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  border: 1px solid var(--sub-line);
  background: var(--sub-line);
}

.maya-v2__number { padding: 30px; background: #fff; }
.maya-v2__number strong { display: block; color: #ff4fb8; font-family: "Inter", system-ui, sans-serif; font-size: clamp(48px, 6vw, 78px); line-height: 1; }
.maya-v2__number small { display: block; margin-top: 10px; color: var(--sub-muted); font-size: 12px; font-weight: 800; }

.maya-v2__practice {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: start;
}

.maya-v2__index { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, 0.28); }
.maya-v2__index li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.maya-v2__index b { color: #8ee9ff; font-family: "Inter", system-ui, sans-serif; }
.maya-v2__index strong { display: block; font-size: 19px; }
.maya-v2__index p { margin: 7px 0 0; color: rgba(255, 255, 255, 0.64); font-size: 13px; }

.maya-v2__gallery {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  grid-template-rows: 310px 310px;
  gap: 14px;
  margin-top: 48px;
}

.maya-v2__gallery figure { margin: 0; overflow: hidden; }
.maya-v2__gallery figure:first-child { grid-row: 1 / 3; }
.maya-v2__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.maya-v2__gallery figure:hover img { transform: scale(1.04); }

.maya-v2__info {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.maya-v2__info dl { margin: 0; border-top: 1px solid var(--sub-line); }
.maya-v2__info dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--sub-line); }
.maya-v2__info dt { font-size: 12px; font-weight: 900; }
.maya-v2__info dd { margin: 0; color: var(--sub-muted); font-size: 13px; }

/* FAQ — sec-faq-05 category tabs */
.faq-v2 .sub-hero__media img { object-position: center 46%; }

.faq-v2__layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 74px;
  align-items: start;
}

.faq-v2__side {
  position: sticky;
  top: 118px;
}

.faq-v2__side-index {
  display: block;
  margin-bottom: 18px;
  color: #ff4fb8;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(72px, 9vw, 130px);
  font-weight: 900;
  line-height: 0.8;
}

.faq-v2__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.faq-v2__tab {
  min-height: 44px;
  padding: 0 19px;
  border: 1px solid var(--sub-line);
  border-radius: 999px;
  color: var(--sub-muted);
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.faq-v2__tab.is-active {
  border-color: #1b1a2b;
  color: #fff;
  background: #1b1a2b;
}

.faq-v2__panel[hidden] { display: none; }
.faq-v2__list { border-top: 1px solid var(--sub-ink); }

.faq-v2__item { border-bottom: 1px solid var(--sub-line); }

.faq-v2__q {
  width: 100%;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 36px;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  border: 0;
  color: var(--sub-ink);
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.faq-v2__q b { color: #ff4fb8; font-family: "Inter", system-ui, sans-serif; font-size: 12px; }
.faq-v2__q strong { font-size: 16px; }
.faq-v2__plus { position: relative; width: 32px; height: 32px; border: 1px solid var(--sub-line); border-radius: 50%; }
.faq-v2__plus::before, .faq-v2__plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: #ff4fb8; transform: translate(-50%, -50%); transition: transform 0.25s ease; }
.faq-v2__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-v2__item.is-open .faq-v2__plus::after { transform: translate(-50%, -50%) rotate(0); }

.faq-v2__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-v2__a > div { overflow: hidden; }
.faq-v2__a p { margin: 0; padding: 0 52px 24px 64px; color: var(--sub-muted); font-size: 14px; line-height: 1.9; }
.faq-v2__item.is-open .faq-v2__a { grid-template-rows: 1fr; }

.faq-v2__contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--sub-line);
}

@media (max-width: 900px) {
  .sub-rule-head,
  .price-v2__notes,
  .price-private__head,
  .price-private__policy,
  .price-v2__final-grid,
  .schedule-v2__notice,
  .maya-v2__practice,
  .maya-v2__info,
  .faq-v2__layout { grid-template-columns: 1fr; gap: 34px; }

  .schedule-v2__week { grid-template-columns: 1fr; }
  .schedule-v2__day-head { min-height: 126px; }
  .schedule-current__layout { grid-template-columns: 1fr; }
  .schedule-current__flyer { position: static; width: min(560px, 100%); margin: 0 auto; }
  .schedule-studio__head,
  .schedule-studio__venue { grid-template-columns: 1fr; }
  .schedule-studio__name { min-height: 280px; border-right: 0; border-bottom: 1px solid var(--sub-line); }
  .maya-v2__spread { gap: 42px; }
  .faq-v2__side { position: static; }
  .faq-v2__side-index { font-size: 74px; }
}

@media (max-width: 768px) {
  .sub-wrap,
  .sub-hero__inner { width: min(100% - 32px, 560px); }
  .sub-hero { min-height: 570px; }
  .sub-hero__inner { padding: 126px 0 48px; }
  .sub-hero__media::after { background: linear-gradient(180deg, rgba(8, 9, 27, 0.15), rgba(8, 9, 27, 0.92) 78%); }
  .sub-hero h1 { font-size: clamp(45px, 14vw, 66px); }
  .sub-hero__lead { font-size: 14px; }
  .sub-section { padding: 78px 0; }
  .sub-heading { font-size: 36px; }
  .sub-lead { font-size: 14px; }
  .sub-cta { min-height: 440px; }

  .price-v2__trial { grid-template-columns: 1fr; gap: 8px; margin-top: -24px; padding: 24px; }
  .price-v2 .sub-hero { min-height: 600px; }
  .price-v2__trial-section { padding: 22px 0 34px; }
  .price-v2__trial { width: 100%; min-height: 0; margin: 0 auto; padding: 0 22px 24px; overflow: hidden; }
  .price-v2__trial-mark { width: calc(100% + 44px); height: 42px; margin: 0 -22px 12px; writing-mode: horizontal-tb; }
  .price-v2__trial-facts { width: 100%; grid-template-columns: 1fr 1fr; margin-top: 10px; }
  .price-v2__trial-facts div { padding-left: 12px; }
  .price-v2__matrix { display: none; }
  .price-v2__mobile { display: grid; gap: 12px; margin-top: 34px; }
  .price-v2__ticket { padding: 24px; border: 1px solid var(--sub-line); background: #fff; }
  .price-v2__ticket:nth-child(1) { background: #fff0f7; }
  .price-v2__ticket:nth-child(2) { background: #eef9ff; }
  .price-v2__ticket:nth-child(3) { background: #fff8d8; }
  .price-v2__ticket h3 { margin: 7px 0 12px; font-size: 22px; }
  .price-v2__ticket strong { display: block; font-size: 34px; line-height: 1; }
  .price-v2__ticket strong small { font-size: 11px; }
  .price-v2__ticket ul { margin: 20px 0 0; padding: 16px 0 0; border-top: 1px solid var(--sub-line); list-style: none; }
  .price-v2__ticket li { padding: 5px 0; font-size: 13px; }
  .price-v2__private { grid-template-columns: 1fr; }
  .price-v2__private-copy { padding: 34px 24px 42px; }
  .price-v2__private-media { min-height: 320px; order: -1; }

  .price-private__media { min-height: 0; aspect-ratio: 16 / 9; }
  .price-private__copy { grid-template-columns: 1fr; gap: 24px; padding: 38px 24px 44px; }
  .price-private__copy-head .sub-heading { max-width: none; }
  .price-private__fit { grid-template-columns: 1fr; }
  .price-private__table-wrap { margin-right: -16px; }
  .price-private__swipe { display: block; }
  .price-private__area { grid-template-columns: 1fr; }
  .price-private__process { grid-template-columns: 1fr; }
  .price-private__step { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .price-private__step:last-child { border-bottom: 0; }
  .price-private__policy-list > div { grid-template-columns: 1fr; gap: 5px; }
  .price-private__faq { grid-template-columns: 1fr; }
  .price-v2__final { min-height: 600px; }

  .schedule-v2__day-head strong { font-size: 30px; }
  .schedule-current__layout { margin-top: 34px; }
  .schedule-current__month-head { padding: 20px 16px 17px; }
  .schedule-calendar__weekday { padding: 9px 2px; }
  .schedule-calendar__weekday small { font-size: 7px; }
  .schedule-calendar__cell { min-height: 65px; padding: 7px; }
  .schedule-calendar__marker { right: 5px; bottom: 6px; left: 5px; min-height: 25px; padding: 3px; font-size: 0; }
  .schedule-calendar__marker::after { content: "LESSON"; font-family: "Inter", system-ui, sans-serif; font-size: 6px; }
  .schedule-calendar__status { right: 3px; bottom: 7px; left: 3px; font-size: 6px; }
  .schedule-current__date-summary { grid-template-columns: 1fr; }
  .schedule-current__date-row,
  .schedule-current__date-row:nth-child(2n),
  .schedule-current__date-row:nth-last-child(-n + 2) { border-right: 0; border-bottom: 1px solid var(--sub-line); }
  .schedule-current__date-row:last-child { border-bottom: 0; }
  .schedule-studio__head { grid-template-columns: 1fr; gap: 28px; }
  .schedule-studio__name { min-height: 230px; padding: 28px 24px; }
  .schedule-studio__row { grid-template-columns: 34px 76px minmax(0, 1fr); gap: 10px; padding: 22px 18px; }
  .schedule-studio__row b { grid-column: 2 / 4; }
  .schedule-studio__index { padding-left: 14px; }
  .schedule-studio__access { grid-template-columns: 1fr; gap: 16px; }
  .schedule-studio__access p { grid-template-columns: 72px 1fr; }
  .schedule-studio__map { min-height: 280px; aspect-ratio: 4 / 3; }
  .schedule-v2__access { grid-template-columns: 1fr; }
  .schedule-v2__access-media { min-height: 350px; }
  .schedule-v2__access-copy { padding: 40px 24px; }

  .maya-v2__spread { grid-template-columns: 1fr; }
  .maya-v2__portrait { position: relative; top: auto; height: 500px; }
  .maya-v2__bio > div { grid-template-columns: 90px 1fr; gap: 16px; }
  .maya-v2__numbers { grid-template-columns: 1fr; }
  .maya-v2__gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 220px; }
  .maya-v2__gallery figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .maya-v2__gallery figure:first-child img { object-position: center 18%; }
  .maya-v2__info dl > div { grid-template-columns: 95px 1fr; }

  .faq-v2__tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .faq-v2__tab:last-child { grid-column: 1 / 3; }
  .faq-v2__q { grid-template-columns: 34px minmax(0, 1fr) 32px; gap: 10px; }
  .faq-v2__q strong { font-size: 14px; }
  .faq-v2__a p { padding: 0 0 22px 44px; font-size: 13px; }
  .faq-v2__contact { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .sub-hero__media img { animation: none; }
  .sub-reveal { opacity: 1; transform: none; transition: none; }
}
