:root {
  --night: #0b1020;
  --night-2: #11172b;
  --night-3: #171f38;
  --ink: #202334;
  --ivory: #f6f1e8;
  --paper: #eee8dd;
  --lavender: #bbb9e8;
  --lavender-deep: #8583bb;
  --gold: #d8c58f;
  --muted: #abaec0;
  --line: rgba(187, 185, 232, 0.18);
  --line-strong: rgba(187, 185, 232, 0.34);
  --dark-text: #242637;
  --dark-muted: #676879;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --shadow: 0 30px 80px rgba(5, 8, 18, 0.28);
  --shell: min(1180px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--night);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Yu Gothic UI", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.045em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(187, 185, 232, 0.08), transparent 22%),
    radial-gradient(circle at 88% 30%, rgba(216, 197, 143, 0.06), transparent 24%);
}

img,
video {
  display: block;
  width: 100%;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

p,
h1,
h2,
h3,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--night);
  background: var(--lavender);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--night);
  background: var(--ivory);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.desktop-only {
  display: inline;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--lavender);
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

.eyebrow span {
  color: var(--gold);
}

.section {
  position: relative;
  padding: clamp(110px, 12vw, 180px) 0;
  overflow: clip;
}

.section-heading {
  max-width: 560px;
}

.section-heading h2,
.experience-copy h2,
.course-heading h2,
.therapist-copy h2,
.access-copy h2,
.final-inner h2 {
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.06em;
}

.section-heading > p:last-child {
  max-width: 500px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 15px;
}

.section-heading--center {
  max-width: 730px;
  margin: 0 auto 76px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:last-child {
  max-width: 660px;
  margin-inline: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 10px 22px;
  color: var(--night);
  background: var(--ivory);
  font-size: 12px;
}

.button--primary {
  color: var(--night);
  background: linear-gradient(135deg, #d5d3f4 0%, var(--lavender) 42%, #9996cb 100%);
  box-shadow: 0 14px 36px rgba(133, 131, 187, 0.28);
}

.button--primary:hover {
  background: linear-gradient(135deg, var(--ivory), #d5d3f4);
  box-shadow: 0 18px 42px rgba(187, 185, 232, 0.34);
}

.button--ghost {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line-strong);
}

.button--ghost:hover {
  background: rgba(187, 185, 232, 0.08);
  border-color: var(--lavender);
}

.button--wide {
  width: 100%;
}

.button--large {
  min-height: 64px;
  padding: 18px 34px;
  font-size: 15px;
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  color: var(--lavender);
  border-bottom: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--ivory);
  border-color: var(--ivory);
}

.text-link--light {
  color: var(--ivory);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 16px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transition: min-height 240ms ease, background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(11, 16, 32, 0.84);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-name {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.brand-sub {
  margin-top: 8px;
  color: var(--lavender);
  font-family: "Cormorant Garamond", serif;
  font-size: 8px;
  letter-spacing: 0.3em;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-meta span + span {
  position: relative;
  padding-left: 20px;
}

.header-meta span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 12px;
  content: "";
  background: var(--line-strong);
  transform: translateY(-50%);
}

.site-header .button {
  justify-self: end;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: max(820px, 100svh);
  align-items: center;
  overflow: hidden;
  background: var(--night);
}

.hero::before {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  content: "";
  background: radial-gradient(circle, rgba(187, 185, 232, 0.12), transparent 68%);
  filter: blur(20px);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 39%;
  background: var(--night-2);
}

.hero-media video {
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-video-label {
  display: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--night) 0%, rgba(11, 16, 32, 0.98) 34%, rgba(11, 16, 32, 0.62) 63%, rgba(11, 16, 32, 0.45) 100%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.08) 55%, var(--night) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.65fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: end;
  padding-top: 150px;
  padding-bottom: 90px;
}

.hero-copy {
  max-width: 700px;
}

.hero-credential {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  max-width: 610px;
  margin-bottom: 30px;
  padding: 16px 22px 17px 18px;
  background: linear-gradient(135deg, rgba(216, 197, 143, 0.15), rgba(23, 31, 56, 0.72));
  border: 1px solid rgba(216, 197, 143, 0.5);
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(2, 4, 12, 0.28), inset 0 0 28px rgba(216, 197, 143, 0.04);
  backdrop-filter: blur(18px);
}

.hero-credential-mark {
  display: grid;
  width: 68px;
  height: 68px;
  place-content: center;
  color: var(--gold);
  border: 1px solid rgba(216, 197, 143, 0.58);
  border-radius: 50%;
  font-family: "Shippori Mincho", serif;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-align: center;
}

.hero-credential-mark strong {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.hero-credential-org {
  display: block;
  color: #d8c58f;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.hero-credential p {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  align-items: baseline;
  margin-top: 3px;
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
}

.hero-credential p strong {
  color: #fff9e9;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.hero-credential p span {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.1em;
}

.hero-credential small {
  display: block;
  margin-top: 3px;
  color: #b9bac6;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.hero-copy .eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(51px, 7.2vw, 100px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.hero h1 em {
  color: var(--lavender);
  font-style: normal;
}

.hero-lead {
  margin-top: 36px;
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 2;
  letter-spacing: 0.08em;
}

.hero-description {
  max-width: 590px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.hero-points li {
  padding: 7px 13px;
  color: #d6d7e2;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.offer-card {
  position: relative;
  padding: 36px;
  background: linear-gradient(160deg, rgba(23, 31, 56, 0.92), rgba(11, 16, 32, 0.88));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.offer-card::before {
  position: absolute;
  inset: 9px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(216, 197, 143, 0.14);
  border-radius: 26px;
}

.offer-card > * {
  position: relative;
  z-index: 1;
}

.offer-kicker {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.offer-card h2 {
  margin-top: 18px;
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.07em;
}

.offer-menu-name {
  max-width: 220px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.offer-time {
  position: absolute;
  top: 30px;
  right: 38px;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.offer-time strong {
  color: var(--ivory);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.offer-price {
  margin: 28px 0 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-price > span {
  color: var(--muted);
  font-size: 11px;
  text-decoration: line-through;
}

.offer-price p {
  margin-top: 5px;
  color: var(--gold);
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
}

.offer-price strong {
  margin-left: 8px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
}

.offer-price small {
  color: var(--muted);
  font-size: 11px;
}

.offer-card .text-link {
  display: table;
  margin: 20px auto 0;
}

.offer-note {
  margin-top: 20px;
  color: #9295a8;
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}

/* Proof strip */
.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -34px auto 0;
  padding: 26px 16px;
  background: rgba(17, 23, 43, 0.97);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(2, 4, 12, 0.34);
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 0 24px;
  text-align: center;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-label {
  color: var(--lavender);
  font-family: "Cormorant Garamond", serif;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.24em;
}

.proof-item strong {
  margin-top: 7px;
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.proof-item > span:last-child,
.proof-item a {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.proof-item--rating strong span {
  color: var(--gold);
  font-family: sans-serif;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.proof-item--credential strong {
  color: var(--gold);
}

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

/* Concerns */
.section--intro {
  isolation: isolate;
  padding-top: clamp(150px, 15vw, 220px);
  background: var(--night);
}

.section--intro::before,
.section--intro::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.section--intro::before {
  background: url("../sleep_concerns_bg.webp") center 42% / cover no-repeat;
  filter: saturate(0.68) contrast(1.02) brightness(1.04);
  transform: scale(1.025);
}

.section--intro::after {
  background:
    radial-gradient(ellipse 42% 68% at 74% 42%, rgba(187, 185, 232, 0.08), transparent 70%),
    radial-gradient(ellipse 34% 44% at 13% 78%, rgba(216, 197, 143, 0.035), transparent 72%),
    linear-gradient(90deg, rgba(7, 11, 24, 0.88) 0%, rgba(8, 12, 26, 0.68) 42%, rgba(8, 12, 26, 0.46) 70%, rgba(7, 11, 24, 0.68) 100%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.52) 0%, rgba(11, 16, 32, 0.08) 44%, rgba(11, 16, 32, 0.68) 100%);
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.section--intro .section-heading,
.section--intro .concern-list {
  text-shadow: 0 2px 18px rgba(3, 6, 15, 0.88);
}

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

.concern-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}

.concern-list span {
  color: var(--lavender);
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.concern-list p {
  color: #d5d6df;
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* Sleep check */
.sleep-check-section {
  position: relative;
  padding: 0 0 clamp(48px, 6vw, 82px);
  overflow: clip;
  background: var(--night);
}

.sleep-check-section::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 460px;
  height: 460px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(187, 185, 232, 0.1), transparent 66%);
}

.sleep-check-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(320px, 1.15fr) minmax(240px, 0.72fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  padding: clamp(32px, 4vw, 54px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 50%, rgba(187, 185, 232, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(25, 33, 59, 0.98), rgba(15, 21, 40, 0.96));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(4, 7, 16, 0.34);
}

.sleep-check-card::after {
  position: absolute;
  right: -84px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(216, 197, 143, 0.08), transparent 68%);
}

.sleep-check-visual {
  position: relative;
  min-height: 206px;
  isolation: isolate;
}

.sleep-check-moon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--ivory);
  background: linear-gradient(145deg, rgba(216, 197, 143, 0.24), rgba(187, 185, 232, 0.18));
  border: 1px solid rgba(216, 197, 143, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 58px rgba(187, 185, 232, 0.18), inset -18px -14px 34px rgba(9, 13, 28, 0.3);
  font-family: "Cormorant Garamond", serif;
  font-size: 68px;
  line-height: 1;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.sleep-check-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  border: 1px solid rgba(187, 185, 232, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.sleep-check-orbit--one {
  width: 166px;
  height: 166px;
}

.sleep-check-orbit--two {
  width: 206px;
  height: 206px;
  border-color: rgba(216, 197, 143, 0.1);
}

.sleep-check-message {
  position: absolute;
  z-index: 3;
  padding: 7px 11px;
  color: #d8d7e4;
  background: rgba(11, 16, 32, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(3, 6, 15, 0.26);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.sleep-check-message--one {
  top: 20px;
  right: -4px;
}

.sleep-check-message--two {
  bottom: 18px;
  left: -4px;
  color: var(--gold);
}

.sleep-check-copy {
  position: relative;
  z-index: 1;
}

.sleep-check-copy .eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
}

.sleep-check-copy h2 {
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(25px, 2.7vw, 36px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.055em;
}

.sleep-check-copy > p:last-of-type {
  max-width: 560px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.sleep-check-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.sleep-check-badges li {
  padding: 5px 11px;
  color: #cac9db;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.sleep-check-action {
  position: relative;
  z-index: 1;
}

.sleep-check-button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 92px;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 2px 14px;
  padding: 18px 22px;
  color: var(--night);
  text-align: left;
  background: linear-gradient(135deg, #e2e0f9, #bbb9e8 55%, #aaa7d8);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(133, 131, 187, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sleep-check-button:hover {
  box-shadow: 0 20px 44px rgba(133, 131, 187, 0.38);
  transform: translateY(-2px);
}

.sleep-check-button span,
.sleep-check-button strong {
  grid-column: 1;
}

.sleep-check-button span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.sleep-check-button strong {
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.sleep-check-button i {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  font-size: 20px;
  font-style: normal;
}

.sleep-check-action > p {
  margin-top: 12px;
  color: #777a8d;
  font-size: 8px;
  line-height: 1.7;
}

/* Approach */
.section--approach {
  background:
    radial-gradient(circle at 50% 0, rgba(187, 185, 232, 0.1), transparent 36%),
    var(--night-2);
}

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

.approach-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 48px rgba(1, 4, 14, 0.16);
}

.approach-card::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  content: "";
  background: radial-gradient(circle, rgba(187, 185, 232, 0.13), transparent 68%);
  pointer-events: none;
}

.approach-media {
  position: relative;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: #171a2b;
}

.approach-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(11, 16, 32, 0.04) 48%, rgba(11, 16, 32, 0.64) 100%);
  pointer-events: none;
}

.approach-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (hover: hover) {
  .approach-card:hover .approach-media img {
    transform: scale(1.025);
  }
}

.approach-number {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 48px;
  height: 48px;
  color: rgba(246, 241, 232, 0.88);
  background: rgba(11, 16, 32, 0.72);
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1;
  place-items: center;
  backdrop-filter: blur(8px);
}

.approach-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 28px 30px;
}

.approach-en {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.approach-card h3 {
  margin-top: 13px;
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.approach-point {
  margin-top: 18px;
  padding-top: 16px;
  color: #e2d2a6;
  border-top: 1px solid rgba(216, 190, 126, 0.2);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.approach-description {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

/* Experience */
.section--experience {
  color: var(--dark-text);
  background: var(--paper);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.75fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.experience-media {
  position: relative;
  min-height: 710px;
}

.experience-main {
  width: 80%;
  height: 650px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 70px rgba(38, 39, 54, 0.2);
}

.experience-main img,
.experience-sub img {
  height: 100%;
  object-fit: cover;
}

.experience-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 280px;
  overflow: hidden;
  border: 8px solid var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(38, 39, 54, 0.18);
}

.experience-copy .eyebrow {
  color: var(--lavender-deep);
}

.experience-copy h2 {
  color: var(--dark-text);
}

.experience-lead {
  margin-top: 38px;
  color: var(--dark-text);
  font-family: "Shippori Mincho", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 2;
}

.experience-copy > p:not(.eyebrow, .experience-lead) {
  margin-top: 22px;
  color: var(--dark-muted);
  font-size: 14px;
}

.experience-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid rgba(36, 38, 55, 0.16);
}

.experience-details > div {
  padding: 17px 0;
  border-bottom: 1px solid rgba(36, 38, 55, 0.16);
}

.experience-details > div:nth-child(odd) {
  padding-right: 20px;
}

.experience-details > div:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid rgba(36, 38, 55, 0.16);
}

.experience-details dt {
  color: #777887;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.experience-details dd {
  margin-top: 4px;
  color: var(--dark-text);
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 500;
}

/* Course */
.section--course {
  background:
    radial-gradient(circle at 85% 20%, rgba(216, 197, 143, 0.08), transparent 28%),
    var(--night);
}

.course-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.course-heading {
  position: sticky;
  top: 120px;
}

.course-heading > p:last-child {
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
}

.course-card {
  position: relative;
  padding: clamp(34px, 5vw, 60px);
  background: linear-gradient(150deg, var(--night-3), #0d1325);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.course-card-top {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.course-badge {
  display: inline-block;
  padding: 5px 12px;
  color: var(--night);
  background: var(--gold);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.course-card h3 {
  margin-top: 16px;
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.6;
}

.course-card h3 + p {
  max-width: 470px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.course-card h3 + p strong {
  color: #d7d8e1;
  font-weight: 500;
}

.course-duration {
  display: flex;
  flex-direction: column;
  align-items: end;
  flex-shrink: 0;
  color: var(--lavender);
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.course-duration strong {
  color: var(--ivory);
  font-size: 66px;
  font-weight: 400;
}

.course-duration span {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.course-includes {
  padding: 26px 0;
}

.course-includes li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  color: #d8d8e0;
  border-bottom: 1px solid var(--line);
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
}

.course-includes span {
  color: var(--lavender);
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
}

.course-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 4px;
}

.course-price > span {
  color: var(--muted);
  font-size: 10px;
  text-decoration: line-through;
}

.course-price p {
  color: var(--gold);
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
}

.course-price strong {
  margin: 0 4px 0 8px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.course-price small {
  color: var(--muted);
  font-size: 10px;
}

.course-note {
  margin-top: 26px;
  padding-top: 18px;
  color: #85889a;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

/* Therapist */
.section--therapist {
  color: var(--dark-text);
  background: #f5f0e7;
}

.therapist-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.therapist-photo {
  position: relative;
}

.therapist-photo::before {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 50px;
  left: 32px;
  content: "";
  border: 1px solid rgba(133, 131, 187, 0.34);
  border-radius: var(--radius-sm);
}

.therapist-photo img {
  position: relative;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 70px rgba(38, 39, 54, 0.18);
}

.therapist-photo figcaption {
  position: relative;
  margin-top: 18px;
  color: #757686;
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.therapist-copy .eyebrow {
  color: var(--lavender-deep);
}

.therapist-credential {
  display: inline-grid;
  min-width: min(100%, 390px);
  margin: 0 0 34px;
  padding: 18px 24px;
  background: rgba(133, 131, 187, 0.08);
  border: 1px solid rgba(133, 131, 187, 0.34);
  border-radius: 16px;
}

.therapist-credential span {
  color: var(--lavender-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 9px;
  letter-spacing: 0.26em;
}

.therapist-credential strong {
  margin-top: 5px;
  color: var(--dark-text);
  font-family: "Shippori Mincho", serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.therapist-credential small {
  margin-top: 3px;
  color: var(--dark-muted);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.therapist-copy h2 {
  color: var(--dark-text);
}

.therapist-copy > p:not(.eyebrow, .therapist-name) {
  max-width: 580px;
  margin-top: 26px;
  color: var(--dark-muted);
  font-size: 14px;
}

.therapist-copy blockquote {
  margin-top: 40px;
  padding: 26px 0 26px 28px;
  color: var(--dark-text);
  border-left: 2px solid var(--lavender-deep);
  font-family: "Shippori Mincho", serif;
  font-size: 21px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.therapist-name {
  margin-top: 30px;
  color: var(--dark-text);
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.therapist-name span {
  display: block;
  margin-bottom: 4px;
  color: #777887;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 9px;
  letter-spacing: 0.12em;
}

/* Reviews */
.section--reviews {
  background: var(--night-2);
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.rating-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 12px;
  width: min(540px, 100%);
}

.rating-summary {
  display: grid;
  grid-template-columns: auto auto;
  gap: 3px 18px;
  align-items: end;
  min-width: 0;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.rating-summary--google {
  background:
    radial-gradient(circle at 88% 18%, rgba(216, 197, 143, 0.1), transparent 44%),
    rgba(255, 255, 255, 0.018);
  border-color: rgba(216, 197, 143, 0.24);
}

.rating-summary > span:first-child {
  grid-column: 1 / -1;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.rating-summary strong {
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.rating-summary .stars {
  align-self: center;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.rating-summary a {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: var(--lavender);
  font-size: 10px;
}

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

.review-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 36px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.review-quote {
  height: 54px;
  color: var(--lavender);
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  line-height: 1;
}

.review-card > p:nth-child(2) {
  color: #d3d4dd;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  line-height: 2.2;
}

.review-card footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--lavender);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.review-card footer span {
  color: #7f8296;
  font-size: 8px;
}

.reviews-note {
  margin-top: 24px;
  color: #73768a;
  font-size: 9px;
  text-align: right;
}

/* Flow */
.section--flow {
  background: var(--night);
}

.flow-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.flow-layout .section-heading {
  position: sticky;
  top: 120px;
}

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

.flow-list li {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.flow-number {
  color: var(--lavender);
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
}

.flow-list h3 {
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.flow-list p {
  max-width: 520px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.flow-time {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* FAQ */
.section--faq {
  color: var(--dark-text);
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.faq-layout .section-heading h2 {
  color: var(--dark-text);
}

.faq-layout .eyebrow {
  color: var(--lavender-deep);
}

.faq-list {
  border-top: 1px solid rgba(36, 38, 55, 0.18);
}

.faq-list details {
  border-bottom: 1px solid rgba(36, 38, 55, 0.18);
}

.faq-list summary {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 26px 54px 26px 0;
  color: var(--dark-text);
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--lavender-deep);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list summary span {
  flex-shrink: 0;
  color: var(--lavender-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
}

.faq-answer {
  padding: 0 54px 28px 38px;
}

.faq-answer p {
  color: var(--dark-muted);
  font-size: 13px;
}

.faq-answer a {
  color: var(--lavender-deep);
  border-bottom: 1px solid rgba(187, 185, 232, 0.45);
}

/* Access */
.section--access {
  background: var(--night-3);
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.access-list {
  margin: 40px 0 26px;
  border-top: 1px solid var(--line);
}

.access-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.access-list dt {
  color: var(--lavender);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.access-list dd {
  color: #d6d7df;
  font-size: 13px;
}

.access-list a {
  color: var(--ivory);
  border-bottom: 1px solid var(--line-strong);
}

.map-wrap {
  height: clamp(400px, 31vw, 430px);
  overflow: hidden;
  background: var(--night-2);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card {
  min-width: 0;
  overflow: hidden;
  background: var(--night-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.map-card-head {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--line);
}

.map-card-head strong {
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.map-card-head a {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.map-card-head a span {
  margin-left: 3px;
}

/* Final CTA */
.final-cta {
  position: relative;
  display: flex;
  min-height: 780px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(11, 16, 32, 0.84), rgba(11, 16, 32, 0.96)),
    url("https://cocorela.co.jp/story_08.jpg") center / cover no-repeat;
}

.final-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 740px;
  height: 740px;
  background: radial-gradient(circle, rgba(187, 185, 232, 0.16), transparent 62%);
  transform: translate(-50%, -50%);
}

.final-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 110px 24px;
  text-align: center;
}

.final-inner .eyebrow {
  justify-content: center;
}

.final-inner > p:nth-of-type(2) {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}

.final-offer {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.final-offer span {
  color: var(--muted);
  font-size: 11px;
}

.final-offer p {
  color: var(--gold);
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
}

.final-offer strong {
  margin: 0 4px;
  color: var(--ivory);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
}

.final-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.final-note {
  margin-top: 22px;
  color: #878a9d;
  font-size: 9px;
  letter-spacing: 0.1em;
}

/* Footer */
.site-footer {
  padding: 72px 0 110px;
  color: var(--muted);
  background: #070b16;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px 80px;
}

.footer-brand {
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.footer-brand + p {
  margin-top: 6px;
  color: var(--lavender);
  font-family: "Cormorant Garamond", serif;
  font-size: 8px;
  letter-spacing: 0.25em;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: end;
  font-size: 10px;
}

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

.footer-disclaimer {
  max-width: 760px;
  color: #66697a;
  font-size: 9px;
}

.copyright {
  color: #66697a;
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  text-align: right;
  letter-spacing: 0.12em;
}

/* Sleep check launcher and dialog */
.sleep-chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 88;
  display: flex;
  min-width: 168px;
  align-items: center;
  gap: 11px;
  padding: 11px 17px 11px 12px;
  color: var(--ivory);
  text-align: left;
  background: rgba(17, 23, 43, 0.94);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(3, 6, 15, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  backdrop-filter: blur(18px);
  transform: translateY(18px) scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease, border-color 180ms ease;
}

.sleep-chat-launcher.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sleep-chat-launcher:hover {
  border-color: rgba(216, 197, 143, 0.58);
  transform: translateY(-2px) scale(1);
}

.sleep-chat-launcher-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--night);
  background: linear-gradient(145deg, var(--ivory), var(--gold));
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  line-height: 1;
}

.sleep-chat-launcher > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.sleep-chat-launcher small {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.sleep-chat-launcher strong {
  margin-top: 2px;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

html.sleep-chat-is-open,
html.sleep-chat-is-open body {
  overflow: hidden;
}

html.sleep-chat-is-open .sleep-chat-launcher,
html.sleep-chat-is-open .mobile-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}

.sleep-chat-dialog {
  position: fixed;
  inset: 0;
  width: min(580px, calc(100vw - 32px));
  max-width: none;
  height: min(860px, calc(100dvh - 32px));
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--ivory);
  background: var(--night);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  box-shadow: 0 40px 110px rgba(2, 4, 11, 0.68);
}

.sleep-chat-dialog::backdrop {
  background: rgba(3, 6, 15, 0.78);
  backdrop-filter: blur(8px);
}

.sleep-chat-dialog-panel {
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background:
    radial-gradient(circle at 90% 0, rgba(187, 185, 232, 0.12), transparent 30%),
    var(--night);
}

.sleep-chat-dialog-head {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px 13px 22px;
  border-bottom: 1px solid var(--line);
}

.sleep-chat-dialog-head span {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 8px;
  line-height: 1.3;
  letter-spacing: 0.22em;
}

.sleep-chat-dialog-head h2 {
  margin-top: 2px;
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.sleep-chat-dialog-head button {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.sleep-chat-dialog-head button span {
  color: inherit;
  font-family: system-ui, sans-serif;
  font-size: 25px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0;
}

.sleep-chat-frame-wrap {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #141a2e;
}

.sleep-chat-frame-wrap iframe {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: #141a2e;
  border: 0;
  opacity: 0;
  transition: opacity 240ms ease;
}

.sleep-chat-frame-wrap.is-loaded iframe {
  opacity: 1;
}

.sleep-chat-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  color: var(--muted);
  text-align: center;
}

.sleep-chat-loading span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 1;
}

.sleep-chat-loading p {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.sleep-chat-dialog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 20px;
  color: #777a8d;
  border-top: 1px solid var(--line);
  font-size: 8px;
  line-height: 1.5;
}

.sleep-chat-dialog-foot a {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 9px;
  white-space: nowrap;
}

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: none;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 16, 32, 0.94);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -15px 40px rgba(3, 5, 12, 0.34);
  backdrop-filter: blur(16px);
  transform: translateY(120%);
  transition: transform 240ms ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta > div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.mobile-cta > div span {
  color: var(--muted);
  font-size: 8px;
}

.mobile-cta > div strong {
  color: var(--ivory);
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  white-space: nowrap;
}

.mobile-cta > a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--night);
  background: linear-gradient(135deg, #d5d3f4, var(--lavender));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .header-meta {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 760px;
    align-items: start;
    padding-top: 160px;
    padding-bottom: 120px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .offer-card {
    width: min(100%, 470px);
  }

  .proof-strip {
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, 1fr);
    padding-block: 16px;
  }

  .proof-item:nth-child(3) {
    border-left: 0;
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .intro-grid,
  .course-layout,
  .flow-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .course-heading,
  .flow-layout .section-heading {
    position: static;
  }

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

  .sleep-check-card {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .sleep-check-action {
    grid-column: 2;
  }

  .approach-card {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(260px, 40%) 1fr;
  }

  .approach-media {
    min-height: 300px;
    aspect-ratio: auto;
  }

  .approach-body {
    padding: 34px 36px 36px;
  }

  .experience-grid,
  .therapist-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .experience-copy,
  .therapist-copy,
  .access-copy {
    max-width: 650px;
  }

  .experience-media {
    width: min(100%, 680px);
  }

  .therapist-photo {
    width: min(80%, 520px);
  }

  .reviews-head {
    flex-direction: column;
    align-items: stretch;
  }

  .rating-platforms {
    width: 100%;
  }

  .map-wrap {
    height: auto;
    aspect-ratio: 16 / 9;
  }

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

  .review-card {
    min-height: auto;
  }

  .review-card footer {
    margin-top: 36px;
  }

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

  .site-footer nav {
    justify-content: start;
  }

  .copyright {
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 36px);
    --radius-lg: 24px;
  }

  body {
    font-size: 15px;
    line-height: 1.85;
  }

  html {
    scroll-padding-top: 78px;
  }

  .desktop-only {
    display: none;
  }

  .section {
    padding: 94px 0;
  }

  .sleep-check-section {
    padding-bottom: 38px;
  }

  .sleep-check-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 25px 22px 22px;
    border-radius: 24px;
  }

  .sleep-check-visual {
    min-height: 168px;
  }

  .sleep-check-moon {
    width: 92px;
    height: 92px;
    font-size: 56px;
  }

  .sleep-check-orbit--one {
    width: 132px;
    height: 132px;
  }

  .sleep-check-orbit--two {
    width: 164px;
    height: 164px;
  }

  .sleep-check-message--one {
    top: 12px;
    right: 4%;
  }

  .sleep-check-message--two {
    bottom: 10px;
    left: 3%;
  }

  .sleep-check-copy h2 {
    font-size: clamp(25px, 7.3vw, 31px);
  }

  .sleep-check-copy > p:last-of-type {
    font-size: 11px;
  }

  .sleep-check-action {
    grid-column: auto;
  }

  .sleep-check-button {
    min-height: 78px;
    border-radius: 16px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .eyebrow::before {
    width: 24px;
  }

  .section-heading h2,
  .experience-copy h2,
  .course-heading h2,
  .therapist-copy h2,
  .access-copy h2,
  .final-inner h2 {
    font-size: clamp(32px, 10.4vw, 43px);
    line-height: 1.52;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
    font-size: 13px;
  }

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

  .site-header.is-scrolled {
    min-height: 62px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-sub {
    margin-top: 6px;
    font-size: 6px;
  }

  .button--small {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 10px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 70px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #070b16;
    border-top: 1px solid rgba(187, 185, 232, 0.12);
    border-bottom: 1px solid rgba(187, 185, 232, 0.18);
  }

  .hero-media video {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.86;
    filter: saturate(0.78) contrast(1.03);
  }

  .hero-video-label {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 7px 11px;
    color: rgba(246, 241, 232, 0.92);
    background: rgba(7, 11, 24, 0.7);
    border: 1px solid rgba(216, 197, 143, 0.3);
    border-radius: 999px;
    font-family: "Shippori Mincho", serif;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
  }

  .hero-video-label span {
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .hero-shade {
    inset: 70px 0 auto;
    height: 56.25vw;
    background: linear-gradient(180deg, rgba(11, 16, 32, 0.03) 0%, rgba(11, 16, 32, 0.08) 66%, var(--night) 100%);
    pointer-events: none;
  }

  .hero-inner {
    gap: 44px;
    padding-top: 46px;
    padding-bottom: 92px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 22px;
  }

  .hero-credential {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 24px;
    padding: 14px 15px;
    border-radius: 16px;
  }

  .hero-credential-mark {
    width: 54px;
    height: 54px;
    font-size: 8px;
  }

  .hero-credential-mark strong {
    font-size: 12px;
  }

  .hero-credential-org {
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .hero-credential p {
    gap: 2px 7px;
  }

  .hero-credential p strong {
    font-size: clamp(19px, 6.1vw, 25px);
    letter-spacing: 0.05em;
  }

  .hero-credential p span {
    font-size: 11px;
  }

  .hero-credential small {
    font-size: 8px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 66px);
    line-height: 1.4;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 16px;
  }

  .hero-description {
    margin-top: 15px;
    font-size: 12px;
  }

  .hero-points {
    gap: 7px;
    margin-top: 24px;
  }

  .hero-points li {
    padding: 5px 10px;
    font-size: 9px;
  }

  .offer-card {
    padding: 30px 24px;
  }

  .offer-card::before {
    inset: 7px;
    border-radius: 18px;
  }

  .offer-card h2 {
    font-size: 21px;
  }

  .offer-time {
    top: 28px;
    right: 26px;
  }

  .offer-time strong {
    font-size: 30px;
  }

  .offer-price strong {
    font-size: 42px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-top: -24px;
    padding: 12px 20px;
  }

  .proof-item {
    min-height: 88px;
  }

  .proof-item + .proof-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section--intro {
    padding-top: 120px;
  }

  .section--intro::before {
    background-position: 36% center;
    transform: scale(1.08);
  }

  .section--intro::after {
    background:
      radial-gradient(ellipse 72% 42% at 78% 28%, rgba(187, 185, 232, 0.07), transparent 72%),
      linear-gradient(180deg, rgba(7, 11, 24, 0.68) 0%, rgba(8, 12, 26, 0.46) 48%, rgba(7, 11, 24, 0.74) 100%),
      linear-gradient(90deg, rgba(7, 11, 24, 0.32), rgba(7, 11, 24, 0.22));
  }

  .intro-grid,
  .course-layout,
  .flow-layout,
  .faq-layout {
    gap: 56px;
  }

  .concern-list li {
    grid-template-columns: 38px 1fr;
    min-height: 88px;
    padding: 19px 0;
  }

  .concern-list p {
    font-size: 14px;
  }

  .section-heading--center {
    margin-bottom: 52px;
    text-align: left;
  }

  .section-heading--center .eyebrow {
    justify-content: start;
  }

  .approach-grid {
    gap: 12px;
  }

  .approach-card {
    display: flex;
    min-height: 0;
    padding: 0;
  }

  .approach-media {
    min-height: 0;
    aspect-ratio: 8 / 5;
  }

  .approach-body {
    padding: 24px 24px 27px;
  }

  .approach-card h3 {
    font-size: 21px;
  }

  .approach-number {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .approach-point {
    margin-top: 16px;
    padding-top: 14px;
    font-size: 12px;
  }

  .approach-description {
    font-size: 12px;
  }

  .experience-grid,
  .therapist-grid,
  .access-grid {
    gap: 64px;
  }

  .therapist-grid {
    gap: 46px;
  }

  .experience-media {
    min-height: 500px;
  }

  .experience-main {
    width: 86%;
    height: 470px;
  }

  .experience-sub {
    width: 48%;
    height: 200px;
    border-width: 5px;
  }

  .experience-lead {
    margin-top: 28px;
    font-size: 16px;
  }

  .experience-details {
    margin-top: 34px;
  }

  .experience-details > div:nth-child(odd) {
    padding-right: 12px;
  }

  .experience-details > div:nth-child(even) {
    padding-left: 12px;
  }

  .course-card {
    padding: 28px 22px;
  }

  .course-card-top {
    display: block;
    padding-bottom: 26px;
  }

  .course-duration {
    position: absolute;
    top: 26px;
    right: 22px;
  }

  .course-duration strong {
    font-size: 48px;
  }

  .course-card h3 {
    max-width: 230px;
    margin-top: 18px;
    font-size: 20px;
  }

  .course-includes li {
    grid-template-columns: 36px 1fr;
    font-size: 12px;
  }

  .course-bottom {
    display: block;
  }

  .course-price strong {
    font-size: 44px;
  }

  .course-bottom .button {
    width: 100%;
    margin-top: 20px;
  }

  .therapist-photo {
    width: min(62vw, 240px);
    margin-inline: auto;
    justify-self: center;
  }

  .therapist-photo::before {
    top: -10px;
    right: -12px;
    bottom: 30px;
    left: 18px;
  }

  .therapist-photo img {
    width: 100%;
    height: min(62vw, 240px);
    aspect-ratio: 1;
    object-position: center;
  }

  .therapist-photo figcaption {
    margin-top: 14px;
    font-size: 8px;
    text-align: center;
  }

  .therapist-credential {
    width: 100%;
    margin-bottom: 28px;
    padding: 16px 18px;
  }

  .therapist-credential strong {
    font-size: 22px;
  }

  .therapist-copy > p:not(.eyebrow, .therapist-name) {
    font-size: 13px;
  }

  .therapist-copy blockquote {
    margin-top: 32px;
    padding-left: 20px;
    font-size: 18px;
  }

  .reviews-head {
    display: block;
  }

  .rating-platforms {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 36px;
  }

  .rating-summary {
    width: 100%;
    padding: 18px 20px;
  }

  .review-grid {
    margin-top: 24px;
  }

  .review-card {
    padding: 28px 24px;
  }

  .reviews-note {
    text-align: left;
  }

  .flow-list li {
    grid-template-columns: 36px 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .flow-list h3 {
    font-size: 17px;
  }

  .flow-time {
    grid-column: 2;
  }

  .faq-list summary {
    gap: 12px;
    padding: 22px 42px 22px 0;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 22px 24px 30px;
  }

  .access-list > div {
    grid-template-columns: 78px 1fr;
    gap: 14px;
  }

  .access-grid {
    gap: 28px;
  }

  .section--access .reveal {
    opacity: 1;
    transform: none;
  }

  .map-card {
    border-radius: 18px;
  }

  .map-card-head {
    min-height: 52px;
    gap: 12px;
    padding: 11px 14px;
  }

  .map-card-head strong {
    font-size: 12px;
  }

  .map-card-head a {
    font-size: 9px;
    line-height: 1.45;
    text-align: right;
  }

  .map-wrap {
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 280px;
  }

  .final-cta {
    min-height: 700px;
  }

  .final-inner {
    padding: 96px 18px 126px;
  }

  .final-offer {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 20px;
  }

  .final-offer p {
    margin-top: 6px;
  }

  .final-actions {
    flex-direction: column;
  }

  .final-actions .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 130px;
  }

  .footer-inner {
    gap: 34px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-cta {
    display: grid;
  }

  .sleep-chat-launcher {
    right: 14px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    min-width: 0;
    padding: 8px 12px 8px 8px;
  }

  .sleep-chat-launcher-icon {
    width: 34px;
    height: 34px;
    font-size: 23px;
  }

  .sleep-chat-launcher small {
    font-size: 6px;
  }

  .sleep-chat-launcher strong {
    font-size: 10px;
  }

  .sleep-chat-dialog {
    width: 100%;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .sleep-chat-dialog-head {
    min-height: calc(68px + env(safe-area-inset-top));
    padding-top: calc(9px + env(safe-area-inset-top));
    padding-right: 12px;
    padding-left: 18px;
  }

  .sleep-chat-dialog-head h2 {
    font-size: 15px;
  }

  .sleep-chat-dialog-foot {
    display: block;
    padding: 9px 16px calc(9px + env(safe-area-inset-bottom));
  }

  .sleep-chat-dialog-foot a {
    display: inline-block;
    margin-top: 3px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
