:root {
  color-scheme: dark;
  --bg: #11100f;
  --bg-soft: #171514;
  --surface: #1d1a19;
  --surface-raised: #25211f;
  --text: #f0ece5;
  --text-soft: #b0a8a0;
  --text-faint: #77706a;
  --accent: #d29aa4;
  --accent-strong: #e8b3bb;
  --accent-soft: rgba(210, 154, 164, 0.16);
  --on-accent: #241518;
  --line: rgba(240, 236, 229, 0.12);
  --line-strong: rgba(240, 236, 229, 0.22);
  --error: #ef9b8e;
  --font-body: "IBM Plex Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  --font-display: "Gowun Batang", "AppleMyungjo", serif;
  --content: 1180px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 5%, rgba(210, 154, 164, 0.08), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, video { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--content));
  height: 72px;
  margin: 0 auto;
}

.wordmark {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.wordmark-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--accent) 54%, transparent);
  border-radius: 50%;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.desktop-nav a {
  color: var(--text-soft);
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a:hover { color: var(--text); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: min(calc(100% - 40px), var(--content));
  min-height: calc(100dvh - 72px);
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.7vw, 60px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.22;
  text-wrap: balance;
}

.hero-lede {
  max-width: 520px;
  margin: 24px 0 32px;
  color: var(--text-soft);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.75;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.primary-action {
  background: var(--accent);
  color: var(--on-accent);
}

.primary-action:hover { background: var(--accent-strong); }
.primary-action:active, .secondary-action:active { transform: translateY(1px) scale(0.985); }

.secondary-action {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.hero-media {
  position: relative;
  width: min(100%, 480px);
  height: min(71dvh, 680px);
  min-height: 520px;
  justify-self: end;
}

.hero-media::before {
  position: absolute;
  right: 2%;
  bottom: 5%;
  width: 70%;
  height: 62%;
  border-radius: 50%;
  background: rgba(210, 154, 164, 0.12);
  filter: blur(70px);
  content: "";
}

.hero-main-image,
.hero-side-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(6, 4, 3, 0.38);
}

.hero-main-image {
  top: 0;
  right: 0;
  width: 67%;
  aspect-ratio: 941 / 1672;
}

.hero-side-image {
  bottom: 0;
  left: 0;
  width: 45%;
  aspect-ratio: 941 / 1672;
}

.hero-main-image img,
.hero-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 24px clamp(18px, 3vw, 38px);
}

.proof-strip p + p { border-left: 1px solid var(--line); }
.proof-strip strong { font-family: var(--font-display); font-size: 15px; }
.proof-strip span { color: var(--text-faint); font-size: 12px; }

.catalog-section {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 116px 0 128px;
}

.section-heading { margin-bottom: 40px; }
.section-heading h2,
.method-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}
.section-heading p,
.method-intro > p:last-child {
  max-width: 590px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 300;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 22px;
  align-items: center;
  margin-bottom: 30px;
}

.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 3px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.filter-row::-webkit-scrollbar { display: none; }

.filter-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 13px;
  scroll-snap-align: start;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}

.search-box { position: relative; display: block; }
.search-box > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
}
.search-box input::placeholder { color: #8f8780; }
.search-box input:focus { border-color: var(--accent); outline: none; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 18px;
}

.product-card {
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.product-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 941 / 1672;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms ease;
}

.product-art::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  content: "";
  pointer-events: none;
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-art,
.product-card:focus-visible .product-art {
  border-color: rgba(210, 154, 164, 0.58);
  transform: translateY(-5px);
}
.product-card:hover .product-art img { transform: scale(1.018); }

.product-info { padding: 14px 3px 0; }
.product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 8px;
}
.product-price {
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.product-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
  color: var(--text-faint);
  font-size: 11px;
}
.product-kicker span:last-child { color: var(--accent-strong); }
.product-info h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.45;
}
.product-info p {
  display: -webkit-box;
  margin: 7px 0 0;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-loading { display: contents; }
.catalog-loading i {
  display: block;
  aspect-ratio: 941 / 1672;
  border-radius: 18px;
  background: var(--surface);
}

@media (prefers-reduced-motion: no-preference) {
  .catalog-loading i {
    background: linear-gradient(110deg, var(--surface) 30%, var(--surface-raised) 44%, var(--surface) 58%);
    background-size: 220% 100%;
    animation: skeleton 1.6s ease-in-out infinite;
  }
  @keyframes skeleton { to { background-position-x: -220%; } }
}

.catalog-empty {
  padding: 72px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  text-align: center;
}
.catalog-empty strong { font-family: var(--font-display); font-size: 20px; }
.catalog-empty p { margin: 8px 0 0; color: var(--text-soft); font-size: 14px; }

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(52px, 10vw, 140px);
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto 130px;
  padding: 82px clamp(28px, 5vw, 70px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, var(--accent-soft), transparent 40%),
    var(--surface);
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: method;
}

.method-list li {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: method;
}
.method-list li:last-child { border-bottom: 0; }
.method-list span {
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.method-list p { margin: 0; color: var(--text-soft); font-size: 14px; }

.site-footer {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 34px 0 104px;
  border-top: 1px solid var(--line);
}

.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand strong { font-family: var(--font-display); font-size: 16px; }
.footer-brand p { margin: 2px 0 0; color: var(--text-faint); font-size: 11px; }
.footer-info { max-width: 680px; color: var(--text-faint); font-size: 11px; text-align: right; }
.footer-info p { margin: 3px 0; }

.mobile-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: var(--safe-bottom);
  border-top: 1px solid var(--line);
  background: rgba(17, 16, 15, 0.92);
  backdrop-filter: blur(18px);
}
.mobile-nav a {
  padding: 13px 8px 12px;
  color: var(--text-faint);
  font-size: 11px;
  text-align: center;
  text-decoration: none;
}
.mobile-nav a[aria-current="page"] { color: var(--accent-strong); }

/* Reading flow */
.reading-page {
  min-height: 100dvh;
  overflow: hidden;
  background: #0d0c0b;
}
.reading-page::before { z-index: 50; }
#reading-root { min-height: 100dvh; }

.reading-stage {
  position: relative;
  width: min(100%, 540px);
  height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background: #0d0c0b;
  box-shadow: 0 0 80px rgba(0,0,0,0.45);
}

.stage-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 58px;
  padding: env(safe-area-inset-top, 0px) 16px 0;
}

.back-button {
  justify-self: start;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  font-size: 13px;
}
.stage-wordmark {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
  font-size: 14px;
  text-decoration: none;
}
.stage-tools {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-self: end;
}
.sound-toggle {
  min-height: 29px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(10,8,8,0.46);
  color: rgba(255,255,255,0.76);
  cursor: pointer;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}
.sound-toggle:hover { border-color: rgba(255,255,255,0.36); color: #fff; }
.sound-toggle[aria-pressed="true"] {
  border-color: rgba(232,179,187,0.62);
  background: rgba(210,154,164,0.2);
  color: #fff;
}
.stage-count {
  color: rgba(255,255,255,0.58);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.stage-progress {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 13;
  height: 2px;
  background: rgba(255,255,255,0.12);
}
.stage-progress i {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--accent-strong);
  transition: width 380ms cubic-bezier(0.16, 1, 0.3, 1);
}

.scene-layer,
.scene-video,
.scene-poster,
.scene-scrim {
  position: absolute;
  inset: 0;
}

.scene-layer { z-index: 1; background: #12100f; }
.scene-poster,
.scene-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scene-video {
  opacity: 0;
  transition: opacity 500ms ease;
}
.scene-video.is-ready { opacity: 1; }

.scene-scrim {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(5,4,4,0.68) 0%, rgba(5,4,4,0.05) 34%, rgba(5,4,4,0.28) 58%, rgba(5,4,4,0.94) 100%);
}

.scene-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: calc(100dvh - 62px);
  padding: 24px 24px calc(34px + var(--safe-bottom));
  text-align: center;
}

.scene-content.is-changing { pointer-events: none; }
.scene-copy { width: 100%; animation: scene-in 560ms cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes scene-in {
  from { opacity: 0; transform: translateY(15px); }
}

.scene-character {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.66);
  font-size: 11px;
  font-weight: 500;
}
.scene-title {
  margin: 0;
  color: #f5f1ea;
  font-family: var(--font-display);
  font-size: clamp(24px, 7vw, 34px);
  line-height: 1.4;
  text-shadow: 0 2px 24px rgba(0,0,0,0.62);
}
.scene-subtitle {
  max-width: 390px;
  margin: 11px auto 0;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.scene-next {
  width: 100%;
  min-height: 54px;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: transform 150ms ease, background-color 150ms ease;
}
.scene-next:hover { background: var(--accent-strong); }
.scene-next:active { transform: translateY(1px) scale(0.985); }

.scene-content.has-form {
  top: 58px;
  bottom: 0;
  display: block;
  max-height: none;
  overflow-y: auto;
  padding: 24px 20px calc(30px + var(--safe-bottom));
  background: linear-gradient(to bottom, rgba(10,8,8,0.44), rgba(10,8,8,0.9));
  text-align: left;
  -webkit-overflow-scrolling: touch;
}
.scene-content.has-form .scene-copy { max-width: 430px; margin: 0 auto; }
.scene-content.has-form .scene-character,
.scene-content.has-form .scene-title,
.scene-content.has-form .scene-subtitle { text-align: center; }

.birth-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  background: rgba(20,17,17,0.82);
  backdrop-filter: blur(14px);
}

.form-field { display: grid; gap: 7px; }
.form-field > label,
.form-legend {
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 500;
}
.field-help { margin: -2px 0 0; color: rgba(255,255,255,0.5); font-size: 11px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(7,6,6,0.72);
  color: #f5f1ea;
  font-size: 14px;
}
.form-field textarea { min-height: 92px; padding-top: 12px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.46); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent-strong); outline: none; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-choice { margin: 0; padding: 0; border: 0; }
.choice-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 7px; }
.choice-buttons label { position: relative; }
.choice-buttons input { position: absolute; opacity: 0; }
.choice-buttons span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(7,6,6,0.72);
  color: rgba(255,255,255,0.68);
  cursor: pointer;
  font-size: 13px;
}
.choice-buttons input:checked + span {
  border-color: var(--accent-strong);
  background: var(--accent-soft);
  color: #fff;
}
.choice-buttons input:focus-visible + span { outline: 2px solid var(--accent-strong); outline-offset: 2px; }

.unknown-time {
  display: flex;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 12px;
}
.unknown-time input { width: 17px; height: 17px; accent-color: var(--accent); }

.partner-fields {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.partner-fields h3 { margin: 0; font-family: var(--font-display); font-size: 17px; }
.privacy-note { margin: 0; color: rgba(255,255,255,0.48); font-size: 11px; line-height: 1.6; }
.form-error {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(239,155,142,0.38);
  border-radius: 12px;
  background: rgba(239,155,142,0.1);
  color: var(--error);
  font-size: 12px;
}

.reading-error,
.handoff-panel {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 28px 20px;
}
.reading-error { text-align: center; }
.reading-error h1 { margin: 22px 0 8px; font-family: var(--font-display); font-size: 28px; }
.reading-error p { margin: 0 0 24px; color: var(--text-soft); }

.handoff-inner {
  width: min(100%, 540px);
  padding: clamp(28px, 6vw, 50px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  text-align: center;
}
.handoff-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border: 1px solid rgba(210,154,164,0.5);
  border-radius: 50%;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 23px;
}
.handoff-inner h1 { margin: 0; font-family: var(--font-display); font-size: 30px; line-height: 1.35; }
.handoff-inner > p:not(.eyebrow, .integration-note) { margin: 13px auto 24px; color: var(--text-soft); font-size: 14px; }
.answer-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  text-align: left;
}
.answer-summary dt { color: var(--text-faint); }
.answer-summary dd { margin: 0; color: var(--text); }
.handoff-actions { display: grid; gap: 10px; margin-top: 24px; }
.button-reset { width: 100%; border: 0; }
.integration-note { margin: 14px 0 0; color: var(--text-faint); font-size: 11px; }

@media (max-width: 900px) {
  .site-header { height: 64px; }
  .desktop-nav { display: none; }
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.78fr);
    gap: 32px;
    min-height: auto;
    padding: 34px 0 64px;
  }
  .hero h1 { font-size: clamp(38px, 6.7vw, 54px); }
  .hero-media { height: 540px; min-height: 0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .method-section { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 640px) {
  body { padding-bottom: calc(54px + var(--safe-bottom)); }
  .site-header { width: calc(100% - 32px); }
  .wordmark { font-size: 16px; }
  .wordmark-mark { width: 31px; height: 31px; }
  .mobile-nav { display: grid; }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    width: calc(100% - 32px);
    min-height: calc(100dvh - 64px - 54px);
    padding: 20px 0 34px;
  }
  .hero-copy { max-width: 370px; }
  .hero h1 { font-size: clamp(34px, 10.7vw, 44px); line-height: 1.25; }
  .hero-lede { margin: 18px 0 24px; font-size: 14px; }
  .eyebrow { margin-bottom: 11px; }
  .primary-action, .secondary-action { min-height: 48px; padding: 0 20px; font-size: 14px; }
  .hero-media {
    width: min(100%, 360px);
    height: 38dvh;
    min-height: 290px;
    max-height: 355px;
    justify-self: center;
  }
  .hero-main-image { right: 8%; width: 43%; }
  .hero-side-image { bottom: 2%; left: 10%; width: 31%; }

  .proof-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }
  .proof-strip p { padding: 16px 2px; }
  .proof-strip p + p { border-top: 1px solid var(--line); border-left: 0; }

  .catalog-section {
    width: calc(100% - 32px);
    padding: 82px 0 92px;
  }
  .section-heading { margin-bottom: 26px; }
  .section-heading h2, .method-section h2 { font-size: 32px; }
  .section-heading p { font-size: 14px; }
  .catalog-tools { grid-template-columns: 1fr; gap: 14px; margin-bottom: 22px; }
  .filter-row { margin-right: -16px; padding-right: 16px; }
  .filter-button { min-height: 38px; padding: 0 15px; }
  .product-grid { gap: 28px 10px; }
  .product-art { border-radius: 14px; }
  .product-info { padding-top: 11px; }
  .product-info h3 { font-size: 15px; }
  .product-title-row { display: block; }
  .product-price { display: block; margin-top: 4px; font-size: 13px; }
  .product-info p { font-size: 11.5px; }
  .product-kicker { font-size: 10px; }

  .method-section {
    width: calc(100% - 32px);
    margin-bottom: 82px;
    padding: 38px 20px;
    border-radius: 14px;
  }
  .method-list li { grid-template-columns: 88px 1fr; gap: 14px; }
  .method-list span { font-size: 16px; }
  .method-list p { font-size: 12.5px; }

  .site-footer {
    display: block;
    width: calc(100% - 32px);
    padding-bottom: 42px;
  }
  .footer-info { margin-top: 24px; text-align: left; }

  .reading-page { padding-bottom: 0; }
  .reading-stage { width: 100%; }
  .scene-content { padding-right: 18px; padding-left: 18px; }
  .birth-form { padding: 17px; }
  .birth-form,
  .partner-fields,
  .form-field { min-width: 0; }
  .form-field { grid-template-columns: minmax(0, 1fr); }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .form-field input[type="date"],
  .form-field input[type="time"] {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    inline-size: 100% !important;
    min-inline-size: 0 !important;
    max-inline-size: 100% !important;
    overflow: hidden;
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px;
  }
  .form-field input[type="date"]::-webkit-date-and-time-value,
  .form-field input[type="time"]::-webkit-date-and-time-value {
    width: 100%;
    min-width: 0;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .hero-media { min-height: 265px; }
  .hero h1 { font-size: 32px; }
  .product-info h3 { font-size: 14px; }
  .product-info p { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ── 동의 체크 · 원국 미리보기 · 리포트 화면 ── */
.consent-fields { display: grid; gap: 10px; margin-top: 14px; }
.consent-line { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; line-height: 1.5; color: var(--ink-soft, #cfc8bd); }
.consent-line input { margin-top: 3px; flex: none; }
.consent-line a { color: inherit; text-decoration: underline; }
.chart-preview { margin-top: 20px; text-align: left; }
.chart-preview-title { font-family: "Gowun Batang", serif; font-size: 1.05rem; margin: 14px 0 8px; }
.report-page main { max-width: 640px; margin: 0 auto; padding: 24px 20px 80px; }
.report-head { text-align: center; margin: 24px 0 8px; }
.report-head .eyebrow { letter-spacing: 0.2em; }
.report-title { font-family: "Gowun Batang", serif; font-size: 1.5rem; margin: 6px 0; }
.report-status { text-align: center; color: var(--ink-soft, #cfc8bd); margin: 16px 0; }
.report-chart, .report-section { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 18px 20px; margin: 14px 0; }
.report-section h2 { font-family: "Gowun Batang", serif; font-size: 1.1rem; margin: 0 0 10px; }
.report-section p { line-height: 1.75; margin: 0 0 12px; white-space: pre-wrap; }
.report-section p:last-child { margin-bottom: 0; }
.report-progress { height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; margin: 10px 0 20px; }
.report-progress i { display: block; height: 100%; width: 0; background: var(--blossom, #d8a7b1); transition: width 0.4s; }
.report-done { text-align: center; margin-top: 28px; }
