﻿:root {
  --book-sky: #8fd3ef;
  --book-blue: #45b4d8;
  --book-deep-blue: #227ca0;
  --paper: #f8fbfc;
  --white: #ffffff;
  --soft-gray: #eaf2f5;
  --line: #d8e7ed;
  --ink: #172026;
  --muted: #6f7f87;
  --shadow: 0 24px 70px rgba(23, 111, 186, .12);
  --max: 1180px;
  --source-base: "https://secret-mama.vercel.app/";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  word-break: keep-all;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin: 0; }

.page { overflow: hidden; background: var(--paper); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 104px 0; position: relative; }
.section.soft { background: var(--soft-gray); }
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--book-deep-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.section-title {
  max-width: 820px;
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.14;
  font-weight: 700;
}
.lead {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 251, 252, .88);
  border-bottom: 1px solid rgba(216, 231, 237, .8);
  backdrop-filter: blur(16px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: grid;
  gap: 2px;
}
.brand strong {
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 19px;
  line-height: 1;
}
.brand span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .18em;
}
.menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.menu a {
  padding: 10px 12px;
  color: #40505a;
  font-size: 14px;
  font-weight: 750;
  border-radius: 999px;
}
.menu a:hover,
.menu a.active {
  background: var(--white);
  color: var(--book-deep-blue);
  box-shadow: 0 8px 22px rgba(23, 111, 186, .08);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--book-deep-blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 18px 38px rgba(34, 124, 160, .18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: #176886; }
.btn.line {
  background: rgba(255, 255, 255, .76);
  border-color: var(--line);
  color: var(--book-deep-blue);
  box-shadow: none;
}
.btn.line:hover { background: var(--white); border-color: rgba(34, 124, 160, .34); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 96px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(143, 211, 239, .42), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .88fr;
  gap: 70px;
  align-items: center;
}
.hero h1 {
  max-width: 720px;
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 1.08;
  font-weight: 700;
}
.hero-copy {
  max-width: 650px;
  margin-top: 26px;
  color: #42535d;
  font-size: 18px;
  line-height: 1.78;
}
.book-cover {
  position: relative;
  width: min(410px, 100%);
  margin-left: auto;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.book-cover::after {
  content: "";
  position: absolute;
  inset: 36px -18px -18px 36px;
  z-index: -1;
  border: 1px solid rgba(69, 180, 216, .28);
}
.book-cover img { width: 100%; aspect-ratio: 3 / 4.2; object-fit: cover; }

.person-hero {
  background:
    radial-gradient(circle at 72% 18%, rgba(143, 211, 239, .46), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 46%, var(--paper) 100%);
}
.person-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.portrait-hero {
  width: min(470px, 92%);
  margin: 0;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.portrait-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(.08) contrast(1.02);
}
.book-note {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 190px;
  margin: 0;
  padding: 10px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(23, 111, 186, .16);
}
.book-note img {
  width: 100%;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
}
.book-note figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.identity-strip {
  padding: 28px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.identity-card {
  min-height: 154px;
  padding: 26px;
  background: var(--paper);
}
.identity-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--book-blue);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 28px;
  line-height: 1;
}
.identity-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.4;
}
.identity-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.evidence-section {
  background: linear-gradient(180deg, var(--paper) 0%, #ffffff 100%);
}
.evidence-grid,
.final-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.evidence-card,
.final-cta-card {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.evidence-card small,
.final-cta-card small {
  color: var(--book-deep-blue);
  font-weight: 850;
  letter-spacing: .16em;
}
.evidence-card h3,
.final-cta-card h3 {
  margin-top: 24px;
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 25px;
  line-height: 1.26;
}
.evidence-card p,
.final-cta-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.72;
}
.final-cta-card .btn {
  margin-top: auto;
}

.quote-band {
  padding: 110px 0;
  background: var(--white);
  text-align: center;
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 900px;
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.42;
}
.quote-band p { margin-top: 22px; color: var(--muted); }

.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  min-height: 150px;
  padding: 28px;
  background: var(--white);
  display: grid;
  align-content: center;
  gap: 10px;
}
.stat strong {
  color: var(--book-deep-blue);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 34px;
  line-height: 1;
}
.stat span { color: var(--muted); font-size: 14px; line-height: 1.55; }

.portrait-frame {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px;
  box-shadow: var(--shadow);
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(.18) contrast(1.03);
}
.story-list {
  display: grid;
  gap: 22px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.story-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding-top: 24px;
}
.story-item span {
  color: var(--book-blue);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 26px;
}
.story-item p { color: #344750; font-size: 17px; line-height: 1.72; }

.remodel-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: start;
}
.remodel-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.remodel-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.remodel-list strong {
  color: var(--book-deep-blue);
  font-size: 18px;
  line-height: 1.45;
}
.remodel-list p {
  color: #344750;
  font-size: 17px;
  line-height: 1.72;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 42px;
}
.trust-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
}
.trust-card small {
  display: block;
  margin-bottom: 18px;
  color: var(--book-deep-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
}
.trust-card strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
}
.trust-card p { margin-top: 12px; color: var(--muted); line-height: 1.7; }

.archive-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
  margin-top: 44px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
}
.facts {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.fact {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.fact span:first-child {
  color: var(--book-deep-blue);
  font-size: 13px;
  font-weight: 850;
}
.fact span:last-child { color: #364850; line-height: 1.6; }
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.photo-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.video-frame {
  margin-top: 32px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(23, 32, 38, .1);
  box-shadow: 0 28px 80px rgba(23, 32, 38, .16);
}
.video-frame iframe,
.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}
.video-link-frame a {
  position: relative;
  display: block;
  color: var(--white);
}
.video-link-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(.78) saturate(1.03);
}
.video-link-frame span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--book-deep-blue);
  font-size: 16px;
  font-weight: 850;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 42px;
}
.space-photo {
  min-height: 280px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
}
.space-photo.is-placeholder {
  display: grid;
  place-items: end start;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(23, 32, 38, .42)),
    linear-gradient(135deg, rgba(143, 211, 239, .36), rgba(255, 255, 255, .9));
}
.space-photo span {
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
  text-shadow: 0 2px 12px rgba(23, 32, 38, .22);
}

.cta-band {
  padding: 88px 0;
  background:
    linear-gradient(135deg, rgba(143, 211, 239, .26), rgba(255, 255, 255, .92)),
    var(--white);
  text-align: center;
}
.cta-band h2 {
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.2;
}
.cta-band p {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.cta-band .actions { justify-content: center; }
.final-cta {
  text-align: left;
}
.final-cta h2 {
  max-width: 780px;
}
.final-cta .eyebrow {
  margin-bottom: 18px;
}

.current-chat {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 44px;
  align-items: center;
  margin-top: 46px;
}
.poster-card {
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.poster-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.info-panel {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
}
.info-panel h2 {
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.14;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
}
.info-grid .fact {
  display: block;
  padding: 20px;
  border: 0;
  background: var(--paper);
}
.info-grid .fact b {
  display: block;
  margin-bottom: 10px;
  color: var(--book-deep-blue);
  font-size: 13px;
}
.info-grid .fact span { color: #33464f; line-height: 1.6; }

.archive-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 44px;
}
.archive-tab {
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.archive-tab:hover,
.archive-tab.active {
  transform: translateY(-2px);
  border-color: rgba(34, 124, 160, .42);
  background: #f1f9fc;
}
.archive-tab .num {
  display: block;
  margin-bottom: 18px;
  color: var(--book-blue);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 28px;
}
.archive-tab .date { display: block; color: var(--muted); font-size: 12px; }
.archive-tab strong { display: block; margin-top: 8px; line-height: 1.4; }
.archive-tab p { margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.55; }

.event-detail {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  margin-top: 24px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}
.event-detail h3 {
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 34px;
  line-height: 1.22;
}
.event-detail blockquote {
  margin: 22px 0 0;
  color: var(--book-deep-blue);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 24px;
  line-height: 1.55;
}
.event-detail p { margin-top: 18px; color: var(--muted); line-height: 1.75; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery img,
.placeholder-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--soft-gray);
}
.placeholder-img {
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}
.contact-card {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-card small {
  color: var(--book-deep-blue);
  font-weight: 850;
  letter-spacing: .14em;
}
.contact-card h3 {
  margin-top: 22px;
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 25px;
  line-height: 1.25;
}
.contact-card p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.72;
}
.contact-card .btn {
  margin-top: auto;
  box-shadow: none;
}
.location-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 44px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
}
.map-placeholder {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    linear-gradient(rgba(69, 180, 216, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 180, 216, .12) 1px, transparent 1px),
    var(--soft-gray);
  background-size: 28px 28px;
  color: var(--book-deep-blue);
  text-align: center;
  border: 1px solid var(--line);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero-grid,
  .intro-grid,
  .split-grid,
  .archive-panel,
  .current-chat,
  .event-detail,
  .location-box,
  .remodel-panel {
    grid-template-columns: 1fr;
  }
  .book-cover { margin: 0; }
  .archive-tabs { grid-template-columns: repeat(2, 1fr); }
  .person-visual { justify-content: center; min-height: 520px; }
  .book-note { left: 18px; }
  .contact-grid,
  .trust-grid,
  .identity-grid,
  .evidence-grid,
  .final-cta-grid,
  .space-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, var(--max)); }
  .section { padding: 72px 0; }
  .nav { min-height: auto; padding: 14px 0; align-items: flex-start; flex-direction: column; gap: 12px; }
  .menu { width: 100%; justify-content: space-between; gap: 2px; }
  .menu a { padding: 8px 7px; font-size: 12px; }
  .hero { min-height: auto; padding: 72px 0; }
  .hero h1 { font-size: 42px; }
  .person-visual { min-height: auto; display: block; }
  .portrait-hero { width: 100%; }
  .book-note {
    position: relative;
    left: auto;
    bottom: auto;
    width: 66%;
    margin: -72px 0 0 auto;
  }
  .quote-band { padding: 78px 0; }
  .stat-row,
  .info-grid,
  .archive-tabs,
  .photo-strip,
  .gallery {
    grid-template-columns: 1fr;
  }
  .archive-panel,
  .info-panel,
  .event-detail,
  .location-box {
    padding: 24px;
  }
  .evidence-card,
  .final-cta-card {
    min-height: auto;
    padding: 24px;
  }
  .space-photo { min-height: 220px; }
  .fact { grid-template-columns: 1fr; gap: 6px; }
  .identity-card { min-height: auto; padding: 22px; }
  .remodel-list article { grid-template-columns: 1fr; gap: 10px; }
}

/* Secret Mama V4: life remodeler profile */
.relife-page {
  --life-green: #2a8fbd;
  --life-mint: #e4f6fb;
  --life-yellow: #d9f0ff;
  --life-coral: #2fb7d4;
  --life-cream: #f6fbfe;
  --life-ink: #172026;
  background: var(--life-cream);
}
.relife-header {
  background: rgba(255, 250, 240, .9);
}
.relife-page .brand span { color: var(--life-green); }
.relife-page .menu a.active,
.relife-page .menu a:hover { color: #227ca0; }
.relife-page .eyebrow { color: #227ca0; }
.relife-page .btn {
  background: #227ca0;
  box-shadow: 0 18px 38px rgba(34, 124, 160, .18);
}
.relife-page .btn:hover { background: #176886; }
.relife-page .btn.line {
  background: rgba(255, 255, 255, .76);
  color: #227ca0;
}
.relife-hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 96px 0;
  background:
    linear-gradient(120deg, rgba(223, 244, 228, .9) 0%, rgba(255, 250, 240, .72) 48%, rgba(255, 230, 167, .55) 100%),
    var(--life-cream);
}
.relife-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
}
.relife-hero h1,
.relife-final h2 {
  max-width: 760px;
  color: var(--life-ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1.08;
  font-weight: 700;
}
.relife-quote {
  display: inline-block;
  margin-top: 26px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(34, 124, 160, .22);
  color: #176886;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 24px;
  line-height: 1.4;
}
.relife-visual {
  position: relative;
  min-height: 570px;
}
.relife-main-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: min(440px, 82%);
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(34, 124, 160, .18);
  box-shadow: 0 28px 80px rgba(34, 124, 160, .14);
}
.relife-main-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.relife-book-chip {
  position: absolute;
  left: 6px;
  bottom: 28px;
  width: 188px;
  margin: 0;
  padding: 10px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(34, 124, 160, .18);
  box-shadow: 0 20px 50px rgba(23, 32, 38, .14);
}
.relife-book-chip img { width: 100%; aspect-ratio: 3 / 4.1; object-fit: cover; }
.relife-book-chip figcaption { margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.relife-floating-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 190px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(34, 124, 160, .18);
  box-shadow: 0 20px 50px rgba(23, 32, 38, .12);
}
.relife-floating-card strong {
  display: block;
  color: #227ca0;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 40px;
  line-height: 1;
}
.relife-floating-card span { display: block; margin-top: 8px; color: #52645a; line-height: 1.5; }
.relife-service-strip {
  padding: 28px 0;
  background: #fff;
  border-top: 1px solid rgba(34, 124, 160, .16);
  border-bottom: 1px solid rgba(34, 124, 160, .16);
}
.relife-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(34, 124, 160, .18);
  border: 1px solid rgba(34, 124, 160, .18);
}
.relife-strip-grid article {
  min-height: 160px;
  padding: 28px;
  background: #f6fbfe;
}
.relife-strip-grid span,
.journey-grid small {
  color: var(--life-coral);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 28px;
}
.relife-strip-grid strong { display: block; margin-top: 12px; font-size: 20px; }
.relife-strip-grid p { margin-top: 10px; color: var(--muted); line-height: 1.65; }
.relife-soft { background: #eaf6fb; }
.relife-two-col,
.community-grid,
.profile-layout,
.final-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.journey-grid article,
.profile-cards article,
.offer-grid article,
.final-actions-card {
  background: #fff;
  border: 1px solid rgba(34, 124, 160, .18);
  padding: 28px;
  min-height: 230px;
}
.journey-grid h3,
.offer-grid h3 {
  margin-top: 18px;
  color: var(--life-ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 25px;
}
.journey-grid p,
.offer-grid p,
.profile-cards p,
.final-actions-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.72;
}
.community-collage {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 12px;
}
.community-collage img {
  width: 100%;
  min-height: 190px;
  aspect-ratio: 1 / .86;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 18px 48px rgba(23, 32, 38, .1);
}
.community-collage img:nth-child(1) { grid-row: span 2; aspect-ratio: 1 / 1.45; }
.community-collage img:nth-child(3) { object-position: center; }
.profile-cards,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.profile-cards strong {
  display: block;
  color: #227ca0;
  font-size: 19px;
  line-height: 1.4;
}
.relife-final {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(255, 230, 167, .64), rgba(223, 244, 228, .9)),
    #fff;
}
.relife-final h2 { font-size: clamp(34px, 5vw, 60px); }
.relife-final p { margin-top: 22px; color: #52645a; font-size: 17px; line-height: 1.8; }
.final-actions-card strong {
  display: block;
  color: var(--life-ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 28px;
  line-height: 1.25;
}
@media (max-width: 980px) {
  .relife-hero-grid,
  .relife-two-col,
  .community-grid,
  .profile-layout,
  .final-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .relife-strip-grid,
  .profile-cards,
  .offer-grid { grid-template-columns: 1fr; }
  .relife-visual { min-height: 560px; }
}
@media (max-width: 640px) {
  .relife-hero { min-height: auto; padding: 72px 0; }
  .relife-hero h1 { font-size: 43px; }
  .relife-quote { font-size: 20px; }
  .relife-visual { min-height: auto; }
  .relife-main-photo { position: relative; width: 100%; }
  .relife-book-chip { position: relative; left: auto; bottom: auto; width: 66%; margin: -70px 0 0 auto; }
  .relife-floating-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 14px; }
  .journey-grid,
  .community-collage { grid-template-columns: 1fr; }
  .journey-grid article,
  .profile-cards article,
  .offer-grid article,
  .final-actions-card { min-height: auto; padding: 24px; }
}

/* Secret Mama V5: blue life remodeler layout */
.mama-blue-page {
  --life-green: #2a8fbd;
  --life-mint: #e4f6fb;
  --life-yellow: #d9f0ff;
  --life-coral: #2fb7d4;
  --life-cream: #f6fbfe;
  --life-ink: #172026;
  background: #f6fbfe;
}
.mama-blue-page .relife-header { background: rgba(246, 251, 254, .9); }
.mama-blue-page .brand span,
.mama-blue-page .eyebrow,
.mama-blue-page .menu a.active,
.mama-blue-page .menu a:hover { color: #227ca0; }
.mama-blue-page .btn { background: #227ca0; box-shadow: 0 18px 38px rgba(34, 124, 160, .18); }
.mama-blue-page .btn:hover { background: #176886; }
.mama-blue-page .btn.line { color: #227ca0; background: rgba(255, 255, 255, .78); }
.mama-blue-page .relife-hero {
  background:
    radial-gradient(circle at 78% 14%, rgba(143, 211, 239, .5), transparent 32%),
    linear-gradient(120deg, #ffffff 0%, #e8f7fc 52%, #f6fbfe 100%);
}
.mama-blue-page .relife-quote,
.mama-blue-page .relife-main-photo,
.mama-blue-page .relife-book-chip,
.mama-blue-page .relife-floating-card,
.mama-blue-page .journey-grid article,
.mama-blue-page .profile-cards article,
.mama-blue-page .offer-grid article,
.mama-blue-page .final-actions-card,
.mama-profile-card {
  border-color: rgba(34, 124, 160, .2);
}
.mama-blue-page .relife-quote,
.mama-blue-page .relife-floating-card strong,
.mama-blue-page .profile-cards strong,
.mama-profile-list b { color: #227ca0; }
.mama-blue-page .relife-service-strip {
  border-top-color: rgba(34, 124, 160, .16);
  border-bottom-color: rgba(34, 124, 160, .16);
}
.mama-blue-page .relife-strip-grid {
  background: rgba(34, 124, 160, .16);
  border-color: rgba(34, 124, 160, .16);
}
.mama-blue-page .relife-strip-grid article { background: #f6fbfe; }
.mama-blue-page .relife-strip-grid span { color: #45b4d8; }
.mama-blue-page .relife-soft { background: #eaf6fb; }
.mama-blue-page .relife-final {
  background:
    radial-gradient(circle at 84% 20%, rgba(143, 211, 239, .55), transparent 28%),
    linear-gradient(135deg, rgba(234, 246, 251, .95), rgba(255, 255, 255, .92));
}
.mama-profile-section {
  background: #fff;
}
.mama-profile-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: start;
}
.mama-profile-card {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(234, 246, 251, .58), rgba(255, 255, 255, .96));
  border: 1px solid rgba(34, 124, 160, .2);
  box-shadow: 0 24px 70px rgba(34, 124, 160, .1);
}
.profile-mini-head {
  display: grid;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(34, 124, 160, .18);
}
.profile-mini-head strong {
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
}
.profile-mini-head span {
  color: #227ca0;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .16em;
}
.mama-profile-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.mama-profile-list li {
  position: relative;
  padding-left: 22px;
  color: #344750;
  font-size: 17px;
  line-height: 1.62;
}
.mama-profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 8px;
  height: 8px;
  background: #45b4d8;
  border-radius: 50%;
}
.profile-offers-section {
  background: #fff;
}
@media (max-width: 980px) {
  .mama-profile-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .mama-profile-card { padding: 24px; }
  .mama-profile-list li { font-size: 16px; }
}


/* Secret Mama V7: image-led one-column scenes */
.relife-feature-stack {
  background: #fff;
}
.feature-stack-list {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}
.feature-row {
  display: grid;
  grid-template-columns: minmax(240px, .52fr) 1fr;
  gap: 34px;
  align-items: stretch;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(234, 246, 251, .62), rgba(255, 255, 255, .96));
  border: 1px solid rgba(34, 124, 160, .18);
}
.feature-row figure {
  margin: 0;
  min-height: 260px;
  background: #eaf6fb;
  overflow: hidden;
}
.feature-row img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.feature-row div {
  display: grid;
  align-content: center;
  padding: 28px 20px;
}
.feature-row span {
  color: #45b4d8;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 34px;
  line-height: 1;
}
.feature-row strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.16;
}
.feature-row p {
  max-width: 620px;
  margin-top: 18px;
  color: #52645a;
  font-size: 17px;
  line-height: 1.75;
}
.clean-contact-grid .contact-card {
  min-height: 220px;
}
@media (max-width: 980px) {
  .feature-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .feature-row { padding: 12px; gap: 18px; }
  .feature-row figure,
  .feature-row img { min-height: 220px; }
  .feature-row div { padding: 18px 12px 22px; }
}

/* Secret Mama V8: live field film */
.mama-live-film {
  background: #eaf6fb;
}
.live-film-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 56px;
  align-items: center;
}
.live-video-frame {
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(34, 124, 160, .2);
  box-shadow: 0 28px 80px rgba(34, 124, 160, .16);
}
.live-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
@media (max-width: 900px) {
  .live-film-grid { grid-template-columns: 1fr; }
}

/* Secret Mama v9 layout rhythm */
.hero-proof-links {
  padding: 24px 0;
  background: #ffffff;
  border-top: 1px solid rgba(34, 124, 160, .14);
  border-bottom: 1px solid rgba(34, 124, 160, .14);
}
.proof-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(34, 124, 160, .16);
  border: 1px solid rgba(34, 124, 160, .16);
}
.proof-link-grid a {
  display: block;
  min-height: 150px;
  padding: 26px;
  background: #f6fbfe;
  transition: transform .2s ease, background .2s ease;
}
.proof-link-grid a:hover {
  transform: translateY(-2px);
  background: #ffffff;
}
.proof-link-grid span {
  display: block;
  color: #227ca0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
}
.proof-link-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 24px;
  line-height: 1.25;
}
.proof-link-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.feature-stack-list .feature-row:nth-child(even) {
  grid-template-columns: 1fr minmax(240px, .52fr);
}
.feature-stack-list .feature-row:nth-child(even) figure {
  order: 2;
}
.mama-meet-cards article a {
  display: inline-flex;
  margin-top: 20px;
  color: #227ca0;
  font-size: 14px;
  font-weight: 850;
}
@media (max-width: 980px) {
  .proof-link-grid { grid-template-columns: 1fr; }
  .feature-stack-list .feature-row:nth-child(even) { grid-template-columns: 1fr; }
  .feature-stack-list .feature-row:nth-child(even) figure { order: 0; }
}

/* Secret Mama memory archive marquee */
.mama-memory-marquee {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fcff 0%, #eaf6fb 100%);
}
.memory-head {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}
.memory-head .lead {
  max-width: 620px;
  margin-left: auto;
}
.memory-marquee {
  width: 100%;
  overflow: hidden;
  padding: 6px 0 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.memory-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: mamaMemorySlide 54s linear infinite;
}
.memory-track:hover {
  animation-play-state: paused;
}
.memory-track figure {
  position: relative;
  flex: 0 0 clamp(210px, 23vw, 330px);
  height: clamp(280px, 32vw, 420px);
  margin: 0;
  overflow: hidden;
  background: #dff1f8;
  box-shadow: 0 24px 60px rgba(34, 124, 160, .12);
}
.memory-track img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}
.memory-track figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(18, 40, 51, .58);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
@keyframes mamaMemorySlide {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 9px), 0, 0); }
}
@media (max-width: 900px) {
  .memory-head { grid-template-columns: 1fr; gap: 18px; }
  .memory-head .lead { margin-left: 0; }
  .memory-track { gap: 12px; animation-duration: 42s; }
  .memory-track figure { flex-basis: 230px; height: 300px; }
}
@media (prefers-reduced-motion: reduce) {
  .memory-track { animation: none; transform: none; overflow-x: auto; }
}
/* Secret Mama homepage V2 rebuild */
.mama-v2-page {
  --v2-blue: #1677a8;
  --v2-sky: #dff4fb;
  --v2-ice: #f5fbff;
  --v2-ink: #142633;
  --v2-muted: #5b7180;
  color: var(--v2-ink);
  background: #f8fcff;
}
.v2-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  padding: 92px 0 70px;
  background:
    linear-gradient(120deg, rgba(245, 251, 255, .98) 0%, rgba(226, 246, 253, .92) 58%, rgba(255, 255, 255, .95) 100%),
    url("../../image/live/thumb/thumb-022.jpg") center/cover no-repeat;
}
.v2-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(248,252,255,0), #f8fcff);
  pointer-events: none;
}
.v2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  gap: 70px;
  align-items: center;
}
.v2-hero-copy h1 {
  margin: 22px 0 24px;
  color: var(--v2-ink);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(52px, 7.4vw, 104px);
  line-height: .98;
  letter-spacing: 0;
}
.v2-profile-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 30px;
}
.v2-profile-line span {
  padding: 9px 13px;
  border: 1px solid rgba(22, 119, 168, .18);
  background: rgba(255,255,255,.72);
  color: #24586f;
  font-size: 13px;
  font-weight: 800;
}
.v2-hero-stage {
  position: relative;
  min-height: 620px;
}
.v2-hero-stage figure { margin: 0; overflow: hidden; background: #e5f4f9; box-shadow: 0 30px 90px rgba(19, 92, 124, .18); }
.v2-hero-stage img { display: block; width: 100%; height: 100%; object-fit: cover; }
.v2-portrait-card {
  position: absolute;
  inset: 22px 88px 72px 54px;
}
.v2-book-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 250px;
  border: 10px solid #fff;
}
.v2-book-card img { aspect-ratio: 3 / 4.15; }
.v2-book-card figcaption {
  padding: 14px;
  background: #fff;
  color: var(--v2-ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}
.v2-memory-card {
  position: absolute;
  left: 0;
  top: 0;
  width: 230px;
  height: 168px;
  border: 10px solid #fff;
}
.v2-link-band { background: #fff; border-top: 1px solid rgba(22,119,168,.14); border-bottom: 1px solid rgba(22,119,168,.14); }
.v2-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.v2-link-grid a {
  min-height: 170px;
  padding: 30px;
  border-right: 1px solid rgba(22,119,168,.14);
  transition: background .2s ease, transform .2s ease;
}
.v2-link-grid a:last-child { border-right: 0; }
.v2-link-grid a:hover { background: #f0f9fd; transform: translateY(-2px); }
.v2-link-grid span, .v2-proof-cards span, .v2-meet-list span { color: var(--v2-blue); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.v2-link-grid strong { display: block; margin-top: 16px; font-family: Georgia, "Noto Serif KR", serif; font-size: 28px; line-height: 1.2; }
.v2-link-grid p { margin-top: 10px; color: var(--v2-muted); line-height: 1.65; }
.v2-proof-section { background: #f8fcff; }
.v2-proof-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; align-items: start; }
.v2-proof-intro { position: sticky; top: 110px; }
.v2-proof-cards { display: grid; gap: 18px; }
.v2-proof-cards article {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(22,119,168,.14);
  box-shadow: 0 22px 70px rgba(19,92,124,.08);
}
.v2-proof-cards img { width: 100%; height: 240px; object-fit: cover; background: #e1f4fb; }
.v2-proof-cards div { display: grid; align-content: center; padding-right: 14px; }
.v2-proof-cards strong { display: block; margin-top: 14px; color: var(--v2-ink); font-family: Georgia, "Noto Serif KR", serif; font-size: 34px; line-height: 1.16; }
.v2-proof-cards p { margin-top: 14px; color: var(--v2-muted); font-size: 16px; line-height: 1.75; }
.v2-memory-section { overflow: hidden; background: linear-gradient(180deg, #e8f7fd 0%, #ffffff 100%); }
.v2-section-head { display: grid; grid-template-columns: .86fr 1.14fr; gap: 44px; align-items: end; margin-bottom: 34px; }
.v2-section-head .lead { max-width: 650px; margin-left: auto; }
.v2-memory-marquee, .v2-live-strip { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%); }
.v2-memory-track { display: flex; gap: 18px; width: max-content; animation: v2MamaSlide 62s linear infinite; }
.v2-memory-track:hover, .v2-live-track:hover { animation-play-state: paused; }
.v2-memory-track figure { position: relative; flex: 0 0 clamp(230px, 24vw, 360px); height: clamp(300px, 34vw, 460px); margin: 0; overflow: hidden; background: #d7eef7; box-shadow: 0 26px 70px rgba(19,92,124,.14); }
.v2-memory-track img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-memory-track figcaption { position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 12px 14px; color: #fff; background: rgba(16, 38, 51, .62); backdrop-filter: blur(10px); font-weight: 850; }
.v2-live-section { overflow: hidden; background: #102633; color: #fff; }
.v2-live-section .section-title, .v2-live-section .lead { color: #fff; }
.v2-live-section .eyebrow { color: #8ad7f4; }
.v2-live-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; align-items: center; }
.v2-video-frame { overflow: hidden; background: #000; box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.v2-video-frame video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.v2-live-strip { margin-top: 54px; }
.v2-live-track { display: flex; gap: 14px; width: max-content; animation: v2MamaSlideReverse 48s linear infinite; }
.v2-live-track img { width: clamp(190px, 20vw, 310px); height: clamp(120px, 13vw, 200px); object-fit: cover; display: block; opacity: .94; }
.v2-profile-section { background: #fff; }
.v2-profile-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: center; }
.v2-profile-photo { min-height: 620px; overflow: hidden; background: #e2f4fb; }
.v2-profile-photo img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; display: block; }
.v2-profile-list { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.v2-profile-list li { padding: 14px 16px; background: #f0f9fd; color: #244c5e; font-weight: 800; }
.v2-meet-section { background: #f7fcff; }
.v2-meet-list { display: grid; gap: 18px; }
.v2-meet-list article { display: grid; grid-template-columns: 300px 1fr; gap: 30px; align-items: stretch; padding: 18px; background: #fff; border: 1px solid rgba(22,119,168,.14); box-shadow: 0 24px 70px rgba(19,92,124,.08); }
.v2-meet-list img { width: 100%; height: 260px; object-fit: cover; background: #e2f4fb; }
.v2-meet-list div { display: grid; align-content: center; }
.v2-meet-list strong { display: block; margin-top: 12px; color: var(--v2-ink); font-family: Georgia, "Noto Serif KR", serif; font-size: 34px; line-height: 1.16; }
.v2-meet-list p { max-width: 720px; margin-top: 12px; color: var(--v2-muted); line-height: 1.75; }
.v2-meet-list a { display: inline-flex; width: fit-content; margin-top: 18px; color: var(--v2-blue); font-size: 14px; font-weight: 900; }
.v2-final { padding: 90px 0; background: linear-gradient(135deg, #1677a8 0%, #102633 100%); color: #fff; }
.v2-final-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 44px; align-items: center; }
.v2-final h2 { margin: 18px 0 18px; color: #fff; font-family: Georgia, "Noto Serif KR", serif; font-size: clamp(42px, 5vw, 72px); line-height: 1.08; }
.v2-final p { color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.75; }
.v2-final .eyebrow { color: #bcecff; }
.v2-final-card { padding: 34px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(14px); }
.v2-final-card strong { display: block; margin-bottom: 22px; color: #fff; font-size: 24px; line-height: 1.35; }
@keyframes v2MamaSlide { from { transform: translate3d(0,0,0); } to { transform: translate3d(calc(-50% - 9px),0,0); } }
@keyframes v2MamaSlideReverse { from { transform: translate3d(calc(-50% - 7px),0,0); } to { transform: translate3d(0,0,0); } }
@media (max-width: 980px) {
  .v2-hero { min-height: auto; padding: 56px 0 46px; }
  .v2-hero-grid, .v2-proof-grid, .v2-live-grid, .v2-profile-grid, .v2-final-grid, .v2-section-head { grid-template-columns: 1fr; }
  .v2-hero-stage { min-height: 560px; }
  .v2-proof-intro { position: static; }
  .v2-link-grid { grid-template-columns: 1fr; }
  .v2-link-grid a { border-right: 0; border-bottom: 1px solid rgba(22,119,168,.14); }
  .v2-proof-cards article, .v2-meet-list article { grid-template-columns: 1fr; }
  .v2-section-head .lead { margin-left: 0; }
}
@media (max-width: 640px) {
  .v2-hero-copy h1 { font-size: 48px; }
  .v2-hero-stage { min-height: 470px; }
  .v2-portrait-card { inset: 20px 34px 82px 16px; }
  .v2-book-card { width: 180px; }
  .v2-memory-card { width: 170px; height: 126px; }
  .v2-proof-cards img, .v2-meet-list img { height: 220px; }
  .v2-profile-photo, .v2-profile-photo img { min-height: 430px; }
  .v2-memory-track { animation-duration: 46s; }
}
@media (prefers-reduced-motion: reduce) {
  .v2-memory-track, .v2-live-track { animation: none; transform: none; }
}
/* Secret Mama V2 typography scale down */
.mama-v2-page .eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
}
.mama-v2-page .section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.18;
}
.mama-v2-page .lead,
.mama-v2-page .hero-copy {
  font-size: 16px;
  line-height: 1.75;
}
.mama-v2-page .btn {
  font-size: 14px;
}
.v2-hero-copy h1 {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.08;
}
.v2-profile-line span,
.v2-book-card figcaption,
.v2-link-grid span,
.v2-proof-cards span,
.v2-meet-list span {
  font-size: 12px;
}
.v2-link-grid strong {
  font-size: 23px;
}
.v2-link-grid p,
.v2-proof-cards p,
.v2-meet-list p,
.v2-profile-list li {
  font-size: 15px;
}
.v2-proof-cards strong,
.v2-meet-list strong {
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.2;
}
.v2-memory-track figcaption {
  font-size: 13px;
}
.v2-final h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.14;
}
.v2-final p {
  font-size: 16px;
}
.v2-final-card strong {
  font-size: 20px;
}
@media (max-width: 640px) {
  .mama-v2-page .section-title {
    font-size: 30px;
  }
  .v2-hero-copy h1 {
    font-size: 38px;
  }
  .mama-v2-page .lead,
  .mama-v2-page .hero-copy {
    font-size: 15px;
  }
  .v2-link-grid strong,
  .v2-proof-cards strong,
  .v2-meet-list strong {
    font-size: 24px;
  }
  .v2-final h2 {
    font-size: 34px;
  }
}
/* Secret Mama V2 final CTA single column */
.v2-final-single {
  display: block;
  max-width: 900px;
}
.v2-final-single h2 {
  max-width: 760px;
}
.v2-final-single p {
  max-width: 680px;
}
.v2-final-single .actions {
  margin-top: 28px;
}
/* Secret Mama V2 proof section 1 plus 3 */
.v2-proof-grid {
  display: block;
}
.v2-proof-intro {
  position: static;
  max-width: 860px;
  margin-bottom: 38px;
}
.v2-proof-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.v2-proof-cards article {
  display: block;
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.v2-proof-cards img {
  width: 100%;
  height: clamp(340px, 32vw, 460px);
  object-fit: cover;
}
.v2-proof-cards div {
  display: block;
  padding: 24px 22px 28px;
}
.v2-proof-cards strong {
  margin-top: 12px;
}
@media (max-width: 980px) {
  .v2-proof-cards {
    grid-template-columns: 1fr;
  }
  .v2-proof-cards img {
    height: 320px;
  }
}
/* Secret Mama V2 hero autoplay video */
.v2-hero-video-stage {
  min-height: 560px;
}
.v2-hero-video-card {
  position: absolute;
  inset: 34px 20px 56px 0;
  overflow: hidden;
  background: #000;
  box-shadow: 0 32px 90px rgba(19, 92, 124, .2);
}
.v2-hero-video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.v2-hero-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 43, 0) 48%, rgba(10, 31, 43, .62) 100%);
  pointer-events: none;
}
.v2-hero-video-caption {
  position: absolute;
  left: 24px;
  right: 190px;
  bottom: 24px;
  z-index: 1;
  color: #fff;
}
.v2-hero-video-caption span {
  display: block;
  color: #aee8ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}
.v2-hero-video-caption strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.22;
}
.v2-hero-video-stage .v2-book-card {
  z-index: 2;
}
@media (max-width: 980px) {
  .v2-hero-video-card {
    inset: 0 0 74px 0;
  }
}
@media (max-width: 640px) {
  .v2-hero-video-stage {
    min-height: 420px;
  }
  .v2-hero-video-caption {
    left: 16px;
    right: 120px;
    bottom: 96px;
  }
  .v2-hero-video-caption strong {
    font-size: 20px;
  }
}
/* Secret Mama contact airplane motif */
.contact-plane-hero {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(245, 251, 255, .98) 0%, rgba(224, 246, 253, .94) 100%),
    url("../../image/live/thumb/thumb-031.jpg") center/cover no-repeat;
}
.contact-plane-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .8fr);
  gap: 56px;
  align-items: center;
}
.contact-plane-art {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}
.contact-plane-art svg {
  width: min(100%, 440px);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 26px 45px rgba(34, 124, 160, .18));
}
.contact-plane-art .plane-route {
  fill: none;
  stroke: rgba(34, 124, 160, .32);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
}
.contact-plane-art .plane-shape {
  fill: rgba(255, 255, 255, .9);
  stroke: #227ca0;
  stroke-width: 7;
  stroke-linejoin: round;
}
.contact-plane-art .plane-fold,
.contact-plane-art .plane-wing {
  fill: none;
  stroke: rgba(34, 124, 160, .7);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-plane-art span {
  position: absolute;
  right: 22px;
  bottom: 24px;
  color: #227ca0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.plane-send-btn {
  gap: 8px;
}
.plane-send-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 860px) {
  .contact-plane-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-plane-art {
    min-height: 220px;
    place-items: start center;
  }
}
/* Secret Mama V2 meet section head single column */
.v2-meet-head {
  display: block;
  max-width: 760px;
  margin-bottom: 30px;
}
.v2-meet-head .section-title {
  margin-top: 16px;
}
/* Secret Mama final CTA bakery photo */
.v2-final-with-photo {
  background: #102633;
  padding: 0 0 84px;
}
.v2-final-with-photo .v2-final-single {
  max-width: 1180px;
}
.v2-final-photo {
  margin: 0 0 42px;
  overflow: hidden;
  background: #0b1b25;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
}
.v2-final-photo img {
  display: block;
  width: 100%;
  height: clamp(320px, 44vw, 620px);
  object-fit: cover;
}
.v2-final-copy {
  max-width: 820px;
}
.v2-final-copy h2 {
  max-width: 760px;
}
.v2-final-copy p {
  max-width: 700px;
}
@media (max-width: 640px) {
  .v2-final-with-photo {
    padding-bottom: 60px;
  }
  .v2-final-photo {
    margin-bottom: 30px;
  }
  .v2-final-photo img {
    height: 300px;
  }
}