/* === Lulu Body Care — Production styles (Pastel watercolor) === */
:root {
  --ink: #3a3530;
  --ink-2: #5a5249;
  --ink-soft: #8a8378;
  --paper: #fdfaf3;
  --paper-2: #f8f0e3;
  --paper-3: #f0e6d3;
  --rule: #e2d8c2;
  --rule-soft: #ede4d0;

  /* Pastel palette — soft & dreamy */
  --pink: #e8a8a3;
  --pink-2: #d99691;
  --pink-soft: #f6dad6;
  --pink-wash: #fbeae7;
  --green: #b3c5a3;
  --green-2: #94a884;
  --green-soft: #d8e1cb;
  --green-wash: #ebf0e1;
  --lav: #c9bcd6;
  --lav-soft: #e3dcec;
  --peach: #f3c8a8;
  --peach-soft: #f9e2cf;
  --sky: #b8d3df;
  --sky-soft: #d8e6ed;
  --yellow: #f3dca0;
  --yellow-soft: #faf0d0;
  --cream: #f6ecd6;
  --gold: #c89b3e;

  --serif: "Shippori Mincho", "Noto Serif JP", serif;
  --sans: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
  --hand: "Klee One", "Yuji Mai", cursive;
  --hand-en: "Caveat", cursive;
  --mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 900px 600px at 8% 5%, rgba(232,168,163,0.18), transparent 60%),
    radial-gradient(ellipse 800px 700px at 95% 30%, rgba(201,188,214,0.18), transparent 60%),
    radial-gradient(ellipse 700px 600px at 10% 60%, rgba(179,197,163,0.18), transparent 60%),
    radial-gradient(ellipse 800px 700px at 92% 92%, rgba(243,200,168,0.18), transparent 60%),
    var(--paper);
  background-attachment: fixed;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* === Watercolor blob backdrop helper === */
.bg-watercolor {
  position: relative;
  overflow: hidden;
}
.bg-watercolor::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 380px at 12% 18%, rgba(232,168,163,0.32), transparent 60%),
    radial-gradient(circle 320px at 86% 28%, rgba(201,188,214,0.30), transparent 60%),
    radial-gradient(circle 360px at 18% 82%, rgba(179,197,163,0.28), transparent 60%),
    radial-gradient(circle 340px at 88% 80%, rgba(243,200,168,0.30), transparent 60%);
  filter: blur(4px);
  z-index: 0;
}
.bg-watercolor > * { position: relative; z-index: 1; }

/* === Layout shell === */
.shell { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }

aside.side {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 220px;
  padding: 32px 24px;
  background:
    radial-gradient(circle 280px at 30% 20%, rgba(232,168,163,0.22), transparent 65%),
    radial-gradient(circle 260px at 70% 75%, rgba(179,197,163,0.22), transparent 65%),
    rgba(253,250,243,0.85);
  backdrop-filter: blur(8px);
  border-right: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  z-index: 10;
}
.side-logo { display: flex; flex-direction: column; gap: 4px; }
.side-logo-img { width: 100%; max-width: 170px; height: auto; }
.side-logo .mark {
  font-family: var(--hand-en);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #d99691 0%, #c9bcd6 50%, #94a884 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.side-logo .sub { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.32em; color: var(--pink-2); }

.nav { margin-top: 44px; display: flex; flex-direction: column; gap: 4px; }
.nav a {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 13px;
  color: var(--ink-soft);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: color 0.2s, padding-left 0.2s;
}
.nav a .num { font-family: var(--mono); font-size: 9px; color: var(--pink-2); letter-spacing: 0.15em; min-width: 18px; }
.nav a:hover { color: var(--ink); padding-left: 4px; }
.nav a.active { color: var(--ink); font-weight: 500; }
.nav a.active .num { color: var(--green-2); }

.side-foot { margin-top: auto; }
.side-foot .label { font-family: var(--mono); font-size: 9px; letter-spacing: 0.25em; color: var(--ink-soft); }
.side-foot .hours { font-family: var(--serif); font-size: 12px; line-height: 1.7; margin-top: 6px; }
.side-cta { display: flex; flex-direction: column; gap: 6px; margin-top: 18px; }
.side-cta .btn-dm {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--peach) 100%);
  color: #fff;
  font-family: var(--serif);
  font-size: 12px;
  padding: 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  transition: filter 0.2s;
}
.side-cta .btn-dm:hover { filter: brightness(0.95); }
.side-cta .btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.side-cta .btn-mini {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.7);
  font-family: var(--serif);
  font-size: 11px;
  padding: 8px 4px;
  border-radius: 999px;
  color: var(--ink);
}
.side-cta .btn-mini:hover { background: #fff; }

main { grid-column: 2; min-width: 0; }

/* === Hero soft (calming opening) === */
.hero-soft { height: 760px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-img-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(2px) saturate(0.7) brightness(1.18); transform: scale(1.06); }
.hero-wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(253,250,243,0.45) 0%, rgba(253,250,243,0.7) 100%),
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(253,250,243,0.55) 0%, rgba(253,250,243,0.85) 70%),
    radial-gradient(circle 600px at 15% 20%, rgba(232,168,163,0.35), transparent 60%),
    radial-gradient(circle 500px at 85% 25%, rgba(201,188,214,0.30), transparent 60%),
    radial-gradient(circle 550px at 80% 85%, rgba(243,200,168,0.30), transparent 60%),
    radial-gradient(circle 500px at 20% 90%, rgba(179,197,163,0.30), transparent 60%);
}
.hero-petals { position: absolute; inset: 0; pointer-events: none; }
.hero-petals .petal { position: absolute; width: 14px; height: 14px; border-radius: 50% 0 50% 50%; opacity: 0.55; }
.hero-petals .p1 { top: 12%; left: 18%; background: var(--pink-soft); transform: rotate(20deg); }
.hero-petals .p2 { top: 22%; right: 14%; background: var(--lav-soft); transform: rotate(-30deg); width: 18px; height: 18px; }
.hero-petals .p3 { bottom: 18%; left: 12%; background: var(--peach-soft); transform: rotate(45deg); width: 16px; height: 16px; }
.hero-petals .p4 { bottom: 24%; right: 18%; background: var(--green-soft); transform: rotate(-15deg); }
.hero-petals .p5 { top: 50%; left: 8%; background: var(--pink-wash); transform: rotate(60deg); width: 22px; height: 22px; opacity: 0.4; }
.hero-center { position: relative; text-align: center; max-width: 640px; padding: 56px 48px; z-index: 2; }
.hero-logo-big { width: 130px; height: auto; margin: 0 auto 22px; display: block; opacity: 0.95; filter: drop-shadow(0 4px 14px rgba(0,0,0,0.05)); }
.hero-eyebrow-soft {
  display: inline-block;
  font-family: var(--hand); font-size: 15px; letter-spacing: 0.32em;
  color: var(--ink); margin-bottom: 22px;
  padding: 4px 14px;
  background: rgba(255,255,255,0.65);
  border-radius: 999px;
  backdrop-filter: blur(2px);
}
.hero-title-soft {
  font-family: var(--serif); font-size: 44px; font-weight: 500;
  letter-spacing: 0.08em; line-height: 1.65;
  color: var(--ink); margin: 0;
  text-shadow:
    0 0 12px rgba(255,255,255,0.9),
    0 0 24px rgba(255,255,255,0.7),
    0 0 40px rgba(253,250,243,0.55);
}
.hero-title-soft em {
  font-style: normal;
  background: linear-gradient(transparent 62%, rgba(232,168,163,0.55) 62%, rgba(232,168,163,0.55) 94%, transparent 94%);
  padding: 0 4px;
}
.hero-sub-soft {
  font-family: var(--serif); font-size: 14.5px;
  line-height: 2.2; margin-top: 28px;
  letter-spacing: 0.08em; color: var(--ink);
  font-weight: 500;
  text-shadow:
    0 0 6px rgba(255,255,255,1),
    0 0 12px rgba(255,255,255,0.95),
    0 0 22px rgba(255,255,255,0.9),
    0 0 36px rgba(253,250,243,0.85),
    0 0 56px rgba(253,250,243,0.7),
    0 0 80px rgba(253,250,243,0.5);
}

/* === Hero === */
.hero { position: relative; height: 720px; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(58,53,48,0.45) 0%, rgba(232,168,163,0.18) 45%, rgba(201,188,214,0.12) 70%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 22% 30%, var(--gold) 1px, transparent 1.5px),
    radial-gradient(circle at 78% 22%, var(--gold) 1px, transparent 1.5px),
    radial-gradient(circle at 82% 70%, var(--gold) 1px, transparent 1.5px);
  opacity: 0.3;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  top: 50%; left: 72px; transform: translateY(-50%);
  color: #fff;
  max-width: 540px;
}
.hero-eyebrow { font-family: var(--hand); font-size: 14px; letter-spacing: 0.3em; opacity: 0.95; margin-bottom: 22px; }
.hero-title {
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(transparent 70%, rgba(232,168,163,0.85) 70%);
  padding: 0 2px;
}
.hero-sub { font-family: var(--serif); font-size: 14px; line-height: 2.1; margin-top: 28px; opacity: 0.95; letter-spacing: 0.06em; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid currentColor;
  transition: all 0.25s;
  cursor: pointer;
  background: transparent;
}
.btn-fill {
  background: linear-gradient(135deg, var(--pink) 0%, var(--peach) 100%);
  border-color: transparent;
  color: #fff;
}
.btn-fill:hover { filter: brightness(0.95); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-line { color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }

.hero-logo-corner {
  position: absolute; top: 36px; right: 56px;
  width: 110px; height: 110px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}
.hero-logo-corner .logo-mark {
  font-family: var(--hand-en);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #d99691 0%, #c9bcd6 50%, #94a884 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: #fff; font-family: var(--mono); font-size: 9px; letter-spacing: 0.3em; opacity: 0.7;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after { content: ""; width: 1px; height: 28px; background: rgba(255,255,255,0.5); }

/* === Sections === */
section { padding: 110px 72px; position: relative; }
section.tight { padding: 80px 72px; }
.section-eyebrow { font-family: var(--hand-en); font-size: 14px; letter-spacing: 0.4em; color: var(--green-2); text-transform: uppercase; }
.section-title { font-family: var(--serif); font-size: 32px; font-weight: 500; letter-spacing: 0.06em; margin: 10px 0 0; line-height: 1.5; }
.section-rule { width: 36px; height: 1px; background: var(--pink); margin: 22px auto; }

.philosophy {
  text-align: center;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(232,168,163,0.28), transparent 55%),
    radial-gradient(ellipse at 82% 32%, rgba(201,188,214,0.25), transparent 55%),
    radial-gradient(ellipse at 50% 85%, rgba(179,197,163,0.25), transparent 55%),
    var(--paper);
}
.philosophy .quote {
  font-family: var(--serif); font-size: 26px; line-height: 2.2;
  letter-spacing: 0.08em; max-width: 720px; margin: 30px auto 0;
}
.philosophy .quote em {
  font-style: normal; color: var(--pink-2);
  background: linear-gradient(transparent 68%, rgba(246,218,214,0.7) 68%);
}
.philosophy .signature { font-family: var(--hand); font-size: 14px; color: var(--ink-soft); margin-top: 28px; letter-spacing: 0.1em; }

.concept-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.concept-step { padding: 40px 32px; border-right: 1px solid var(--rule-soft); }
.concept-step:last-child { border-right: none; }
.concept-step .step-num { font-family: var(--hand-en); font-size: 36px; color: var(--pink); line-height: 1; }
.concept-step .step-title { font-family: var(--serif); font-size: 22px; margin: 14px 0 12px; letter-spacing: 0.08em; }
.concept-step .step-text { font-family: var(--serif); font-size: 13px; line-height: 2; color: var(--ink-2); }

.trio { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.trio > * { aspect-ratio: 1 / 1.05; }
.trio img { width: 100%; height: 100%; object-fit: cover; }
.trio .copy-block {
  background: linear-gradient(135deg, var(--green-soft) 0%, var(--lav-soft) 100%);
  padding: 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.trio .copy-block .label { font-family: var(--hand-en); font-size: 12px; letter-spacing: 0.4em; color: var(--green-2); margin-bottom: 18px; }
.trio .copy-block .text { font-family: var(--serif); font-size: 18px; line-height: 2; letter-spacing: 0.04em; }

.feature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.feature-img-wrap { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 4px; }
.feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { list-style: none; padding: 0; margin: 32px 0 0; }
.feature-list li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--serif); font-size: 15px; letter-spacing: 0.06em;
}
.feature-list .num { font-family: var(--hand-en); font-size: 18px; color: var(--pink); min-width: 32px; }

.menu-section {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(232,168,163,0.20), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(243,220,160,0.25), transparent 55%),
    var(--paper-2);
}
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 56px; max-width: 880px; margin-left: auto; margin-right: auto; }
.menu-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  padding: 32px;
  border-radius: 4px;
  border: 1px solid var(--rule-soft);
  position: relative;
}
.menu-card.feature {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95) 0%, var(--pink-wash) 60%, var(--peach-soft) 100%);
  display: block;
}
.menu-card .menu-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
.menu-card .menu-name { font-family: var(--serif); font-size: 22px; letter-spacing: 0.06em; }
.menu-card .menu-price { font-family: var(--serif); font-size: 22px; color: var(--pink-2); }
.menu-card .menu-time { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.1em; margin-top: 4px; }
.menu-card .menu-desc { font-family: var(--serif); font-size: 13px; line-height: 1.95; color: var(--ink-2); margin-top: 14px; }
.menu-note { text-align: center; font-family: var(--hand); font-size: 13px; color: var(--ink-soft); margin-top: 36px; letter-spacing: 0.08em; }

.therapist { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 64px; align-items: start; }
.therapist-photo {
  aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  max-width: 280px; margin: 0 auto;
  border: 6px solid #fff;
  box-shadow: 0 0 0 1px var(--rule), 0 12px 30px rgba(0,0,0,0.08);
  background: linear-gradient(135deg, var(--pink-soft), var(--lav-soft));
}
.therapist-photo img { width: 100%; height: 100%; object-fit: cover; }
.therapist-name { font-family: var(--serif); font-size: 22px; letter-spacing: 0.1em; text-align: center; margin-top: 22px; }
.therapist-name-en { font-family: var(--hand-en); font-size: 16px; color: var(--ink-soft); text-align: center; letter-spacing: 0.1em; }
.therapist-words { font-family: var(--serif); font-size: 17px; line-height: 2.3; margin: 30px 0; letter-spacing: 0.06em; }
.therapist-words em {
  font-style: normal;
  background: linear-gradient(transparent 65%, var(--green-soft) 65%, var(--green-soft) 90%, transparent 90%);
}
.therapist-bio { font-family: var(--serif); font-size: 13px; line-height: 2.1; color: var(--ink-2); letter-spacing: 0.04em; }
.therapist-history { margin-top: 28px; display: grid; grid-template-columns: 70px 1fr; gap: 8px 18px; font-family: var(--mono); font-size: 11px; }
.therapist-history dt { color: var(--pink-2); }
.therapist-history dd { margin: 0; color: var(--ink-2); font-family: var(--serif); font-size: 13px; }

.voice-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,188,214,0.22), transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(184,211,223,0.22), transparent 55%),
    var(--paper);
}
.voice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.voice-card {
  position: relative; padding: 38px 32px 26px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
}
.voice-card::before {
  content: "“"; position: absolute; top: -18px; left: 22px;
  font-family: var(--serif); font-size: 86px; color: var(--pink-soft); line-height: 1;
}
.voice-body { font-family: var(--serif); font-size: 15px; line-height: 2; letter-spacing: 0.04em; }
.voice-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding-top: 16px; border-top: 1px dotted var(--rule); font-size: 12px; }
.voice-meta .who { font-family: var(--serif); }
.voice-meta .topic { font-family: var(--mono); color: var(--green-2); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }

.access-section {
  background:
    radial-gradient(ellipse at 12% 20%, rgba(179,197,163,0.22), transparent 55%),
    radial-gradient(ellipse at 88% 80%, rgba(243,200,168,0.20), transparent 55%),
    var(--paper-2);
}
.access-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; margin-top: 48px; }
.access-map {
  aspect-ratio: 16 / 10;
  position: relative; border-radius: 4px; border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--green-wash);
}
.access-map iframe { width: 100%; height: 100%; }
.access-map .pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%);
  font-family: var(--serif); font-size: 13px;
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: #fff; padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.access-map .pin::after {
  content: ""; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-top: 6px solid var(--pink);
}
.access-info dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--green-2); margin-top: 18px; }
.access-info dt:first-child { margin-top: 0; }
.access-info dd { margin: 6px 0 0; font-family: var(--serif); font-size: 14px; line-height: 1.9; }

.cta-strip {
  background:
    radial-gradient(ellipse at 25% 30%, rgba(232,168,163,0.45), transparent 60%),
    radial-gradient(ellipse at 75% 70%, rgba(201,188,214,0.45), transparent 60%),
    linear-gradient(135deg, #94a884 0%, #b3c5a3 100%);
  color: #fff;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.cta-strip > * { position: relative; }
.cta-strip .eyebrow { font-family: var(--hand); font-size: 14px; letter-spacing: 0.3em; opacity: 0.95; }
.cta-strip h3 { font-family: var(--serif); font-size: 32px; font-weight: 400; letter-spacing: 0.1em; margin: 14px 0 10px; }
.cta-strip p { font-family: var(--serif); font-size: 14px; line-height: 2; opacity: 0.95; max-width: 480px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn-light { background: #fff; color: var(--green-2); border-color: #fff; }
.cta-buttons .btn-light:hover { background: var(--paper-2); }

footer {
  background: linear-gradient(180deg, #3a3530 0%, #2a2520 100%);
  color: var(--paper);
  padding: 60px 72px 28px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle 300px at 10% 20%, rgba(232,168,163,0.12), transparent 60%),
    radial-gradient(circle 300px at 90% 80%, rgba(201,188,214,0.10), transparent 60%);
}
footer > * { position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-brand .mark {
  font-family: var(--hand-en); font-size: 36px; font-weight: 600;
  background: linear-gradient(135deg, #f6dad6 0%, #e3dcec 50%, #d8e1cb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-brand .tagline { font-family: var(--serif); font-size: 12px; margin-top: 6px; opacity: 0.7; line-height: 1.8; }
.footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.25em; font-weight: 500; margin: 0 0 14px; opacity: 0.6; }
.footer-col p, .footer-col a { font-family: var(--serif); font-size: 12px; line-height: 2; display: block; opacity: 0.85; }
.footer-col a:hover { opacity: 1; }
.footer-copy { margin-top: 24px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; opacity: 0.5; text-align: center; }

.page-header {
  padding: 90px 72px 50px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232,168,163,0.25), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(201,188,214,0.22), transparent 55%),
    var(--paper-2);
  border-bottom: 1px solid var(--rule-soft);
}
.page-header .crumbs { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--ink-soft); }
.page-header h1 { font-family: var(--serif); font-size: 38px; font-weight: 500; letter-spacing: 0.1em; margin: 14px 0 6px; }
.page-header .lead { font-family: var(--hand-en); font-size: 18px; color: var(--pink-2); letter-spacing: 0.2em; }

@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; }
  aside.side {
    position: static; width: 100%; flex-direction: row;
    justify-content: space-between; align-items: center;
    padding: 16px 20px; border-right: none;
    border-bottom: 1px solid var(--rule-soft);
  }
  .nav { display: none; }
  .side-foot { display: none; }
  main { grid-column: 1; }
  section { padding: 70px 24px; }
  .page-header { padding: 50px 24px 30px; }
  .hero { height: 580px; }
  .hero-content { left: 28px; right: 28px; }
  .hero-title { font-size: 32px; }
  .hero-logo-corner { width: 76px; height: 76px; top: 18px; right: 22px; }
  .concept-grid { grid-template-columns: 1fr; }
  .concept-step { border-right: none; border-bottom: 1px solid var(--rule-soft); }
  .trio { grid-template-columns: 1fr; }
  .trio > * { aspect-ratio: 16/10; }
  .feature, .therapist, .access-grid { grid-template-columns: 1fr; gap: 32px; }
  .menu-grid, .voice-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
