:root {
  --bg: #f8f8f6;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --border: rgba(30, 30, 30, 0.12);
  --text: #171717;
  --text-muted: rgba(23, 23, 23, 0.62);
  --accent: #e8a87c;
  --accent-soft: rgba(232, 168, 124, 0.2);
  --accent-2: #c38d6a;
  --radius: 14px;
  --radius-sm: 10px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
}

h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.container.narrow {
  width: min(640px, 92vw);
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.muted {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2rem);
  background: rgba(248, 248, 246, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.logo.muted {
  color: var(--text-muted);
}

.logo:hover {
  text-decoration: none;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

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

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    padding: 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 0.45rem 1rem;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #1a120c;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #f0b892;
  border-color: #f0b892;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-choice {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.btn-choice:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn-choice.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px var(--accent);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(232, 168, 124, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(195, 141, 106, 0.12), transparent),
    linear-gradient(180deg, #ffffff 0%, #f2f2ef 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(720px, 92vw);
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-inline: auto 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.hero-stats div {
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Problem */
.problem {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.problem h2 {
  margin-bottom: 1rem;
}

.problem-list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.problem-list li {
  margin-bottom: 0.5rem;
}

.solution {
  margin: 0;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.target-card .card-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.target-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Concept grid */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.concept-grid--eight {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .concept-grid--eight {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .concept-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }
}

.concept-code {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.menu-guide {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.menu-guide.menu-mood {
  background: var(--bg);
}

.section-sub {
  margin: -0.35rem 0 1rem;
  font-size: 0.95rem;
}

.menu-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .menu-tier-grid {
    grid-template-columns: 1fr;
  }
}

.menu-tier-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.menu-tier-list {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.menu-tier-list li {
  margin-bottom: 0.35rem;
}

.menu-tier-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

@media (max-width: 960px) {
  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .mood-grid {
    grid-template-columns: 1fr;
  }
}

.mood-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.mood-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* 성별 라인업 (남 / 여) */
.lineup-section {
  background: var(--bg);
  border-block: 1px solid var(--border);
}

.lineup-section.lineup-women {
  background: var(--bg-elevated);
}

.lineup-section .section-head a {
  color: var(--accent);
}

.lineup-band {
  margin-bottom: 2.25rem;
}

.lineup-band:last-child {
  margin-bottom: 0;
}

.lineup-tier-label {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .lineup-grid {
    grid-template-columns: 1fr;
  }
}

.lineup-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  line-height: 1.3;
}

.lineup-bullets {
  margin: 0 0 0.65rem;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.lineup-bullets li {
  margin-bottom: 0.25rem;
}

.lineup-tip {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.lineup-tip strong {
  color: var(--accent);
  font-weight: 600;
}

/* 남성 6 촬영 세트 카드 */
.shoot-sets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

@media (max-width: 900px) {
  .shoot-sets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .shoot-sets-grid {
    grid-template-columns: 1fr;
  }
}

.shoot-set-card {
  text-align: left;
  cursor: pointer;
  padding: 1.15rem 1.1rem;
  transition: transform 0.2s, border-color 0.2s;
  border: 1px solid var(--border);
  background: var(--surface);
}

.shoot-set-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 168, 124, 0.4);
}

.shoot-set-emoji {
  display: block;
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.shoot-set-code {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.shoot-set-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  line-height: 1.3;
  color: var(--text);
}

.shoot-set-kw {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.shoot-set-kind-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.drawer-block-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 0.45rem;
}

.drawer-set-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.drawer-set-list li {
  margin-bottom: 0.35rem;
}

.concept-card {
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  padding: 1.5rem;
}

.concept-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 168, 124, 0.35);
}

.concept-card .tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.concept-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.concept-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.concept-card .emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* 무드별로 묶인 스타일(메인 랜딩) */
.style-mood-zones {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mood-style-zone {
  padding: 2rem 0 2.25rem;
  border-bottom: 1px solid var(--border);
}

.mood-style-zone:first-child {
  padding-top: 0.25rem;
}

.mood-style-zone:last-child {
  border-bottom: 0;
  padding-bottom: 0.25rem;
}

.mood-style-zone-head {
  margin: 0 0 1.1rem;
}

.mood-style-zone-title {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
}

.mood-style-zone-icon {
  margin-right: 0.35rem;
}

.mood-style-zone-lead {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 52ch;
}

.concept-nested-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .concept-nested-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mood-style-zone:has(.concept-nested-grid > :only-child) .concept-nested-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: min(100%, 420px);
  }
}

.concept-nested-card {
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  padding: 1.15rem 1.2rem;
}

.concept-nested-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 168, 124, 0.35);
}

.concept-nested-card .tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.3rem;
  display: block;
}

.concept-nested-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.concept-nested-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.concept-nested-card .emoji {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

/* 인기 순위 (스타일 섹션 안 병합 블록) */
.popular-merged {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.popular-merged h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.popular-merged-note {
  margin: 0 0 1.1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 58ch;
}

.popular-merged-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 1.5rem;
}

@media (max-width: 640px) {
  .popular-merged-list {
    grid-template-columns: 1fr;
  }
}

.popular-merged-list li {
  margin: 0;
}

.popular-merge-link {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  width: 100%;
  margin: 0;
  padding: 0.45rem 0.5rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.popular-merge-link:hover {
  background: rgba(232, 168, 124, 0.12);
  color: var(--text);
}

.popular-merge-link em {
  font-style: normal;
  color: var(--text-muted);
  font-weight: 400;
}

.popular-merge-num {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  min-width: 1.35em;
}


/* 신규 스포티 샘플 블록 */
.sporty-highlight {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

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

@media (max-width: 900px) {
  .sporty-grid {
    grid-template-columns: 1fr;
  }
}

.sporty-card {
  padding: 0;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.sporty-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 168, 124, 0.35);
}

.sporty-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.sporty-card-body {
  padding: 0.9rem 1rem 1rem;
}

.sporty-card-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.sporty-card-body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Packages */
.package-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .package-row {
    grid-template-columns: 1fr;
  }
}

.package-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--accent);
}

.package-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.package-card.featured {
  border-color: rgba(232, 168, 124, 0.45);
  box-shadow: 0 0 0 1px rgba(232, 168, 124, 0.15);
}

.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.tier-badge.hot {
  background: var(--accent-soft);
  color: var(--accent);
}

.story-package {
  margin: 0;
}

.story-package h3 {
  margin-bottom: 0.35rem;
}

.story-package p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* 전후·기록 가이드 (홈 앵커 섹션) */
.before-after-guide {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, var(--surface) 100%);
  border-block: 1px solid var(--border);
}

.ba-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .ba-guide-grid {
    grid-template-columns: 1fr;
  }
}

.ba-guide-card {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  text-align: left;
}

.ba-guide-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.ba-guide-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.ba-guide-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-bottom: 0.5rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.ba-guide-note {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 52rem;
}

.ba-guide-cta {
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* 메인 — 전후 상세 기획 가이드 (<details>) */
.ba-trend-guide-block {
  margin-top: 1.35rem;
}

.ba-trend-guide-framing {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 52rem;
}

.ba-trend-details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.ba-trend-details > summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.ba-trend-details > summary::-webkit-details-marker {
  display: none;
}

.ba-trend-summary-title {
  font-size: 1rem;
}

.ba-trend-summary-hint {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.ba-trend-details[open] > summary {
  border-bottom: 1px solid var(--border);
}

.ba-trend-panel {
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 1.15rem 1.25rem 1.35rem;
  text-align: left;
  box-shadow: none;
}

.ba-trend-home-inner.detail-trend-section p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.detail-trend-title {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--text);
}

h3.detail-trend-title {
  font-size: 1.08rem;
}

.detail-trend-stub {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

button.text-link,
a.text-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  text-underline-offset: 2px;
}

button.text-link:hover,
a.text-link:hover {
  color: var(--text);
}

/* 전후 샘플 (가이드 바로 아래) */
.ba-showcase {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.ba-showcase-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.ba-showcase-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 52rem;
}

.ba-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 720px) {
  .ba-showcase-grid {
    grid-template-columns: 1fr;
  }
}

.ba-showcase-card {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.85rem;
  text-align: left;
  font: inherit;
  cursor: pointer;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ba-showcase-card:hover {
  border-color: rgba(232, 168, 124, 0.55);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.ba-showcase-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.ba-pair--compact {
  gap: 0.4rem;
}

.ba-pair-cell {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.ba-pair-cell img {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.ba-pair--compact .ba-pair-cell img {
  height: 120px;
}

.ba-pair-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.35rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}

.ba-pair-cell--before .ba-pair-label {
  background: rgba(42, 38, 34, 0.85);
}

.ba-pair-cell--after .ba-pair-label {
  background: rgba(120, 72, 40, 0.9);
}

.ba-showcase-caption {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Reviews */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
}

.ba-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

/* 전후 구성 예시(쇼케이스)와 동일한 썸네일·카드 패딩 */
.ba-card.ba-card--showcase-pair {
  padding: 0.85rem;
}

.ba-card p {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

button.ba-card.ba-card--action {
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

button.ba-card.ba-card--action:hover {
  border-color: rgba(232, 168, 124, 0.55);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

button.ba-card.ba-card--action:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.ba-card-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.ba-placeholder {
  height: 100px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ba-placeholder.before {
  background: linear-gradient(135deg, #2a2622, #3d3830);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.ba-placeholder.after {
  background: linear-gradient(135deg, rgba(232, 168, 124, 0.35), #3d3228);
  color: var(--text);
}

.ba-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.ba-photo.before {
  margin-bottom: 0.5rem;
}

.ba-photo img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

/* Final CTA */
.final-cta {
  border-top: 1px solid var(--border);
}

.final-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

/* Drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s;
}

.drawer.is-open .drawer-scrim {
  opacity: 1;
}

.drawer-panel--left {
  position: absolute;
  top: 0;
  left: 0;
  width: min(400px, 100%);
  height: 100%;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  padding: 2rem 1.35rem 2rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.35);
}

.drawer.is-open .drawer-panel--left {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--surface);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.drawer-panel #drawer-content {
  padding-top: 2rem;
}

.drawer-detail .hero-img {
  height: 140px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--surface), #2e2a26);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.drawer-detail .hero-img--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
}

.shoot-set-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.shoot-set-strip img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.drawer-detail .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pill {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.drawer-detail h2 {
  margin-bottom: 0.75rem;
}

.drawer-detail .block {
  margin-bottom: 1.5rem;
}

.drawer-detail .block h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.style-cell {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.25rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cta-row .btn {
  flex: 1 1 auto;
  min-width: 0;
}

/* Concept full detail subpage */
.concept-detail-page {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: var(--bg);
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.28s ease, visibility 0.28s, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.concept-detail-page.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.detail-page-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: calc(var(--header-h) * 0.35) clamp(1rem, 4vw, 2rem);
  padding-top: max(0.75rem, env(safe-area-inset-top));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.detail-close-top {
  position: static;
}

.detail-page-inner {
  width: min(920px, 92vw);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2rem) 4rem;
}

/* 상세 서브페이지 — 상단 전폭 히어로 배너 */
.detail-hero-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -2rem;
  margin-bottom: 2.5rem;
  /* 히어로 높이: px 최소 · vh 비율 · px 상한. 더 길게 = 숫자만 키우면 됨 */
  min-height: clamp(620px, 86vh, 1080px);
  max-height: min(96vh, 1240px);
  overflow: hidden;
  background: #f3f3f1;
  height:1000px
}

.detail-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.detail-banner-img--fitness {
  /* object-fit: contain; */
  object-position: top center;
  background: #f3f3f1;
}

.detail-banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 7, 6, 0.96) 0%,
    rgba(8, 7, 6, 0.55) 38%,
    rgba(8, 7, 6, 0.12) 72%,
    rgba(8, 7, 6, 0.25) 100%
  );
  pointer-events: none;
}

.detail-banner-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(620px, 86vh, 1080px);
  max-height: min(96vh, 1240px);
  width: min(920px, 92vw);
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 4vw, 2rem) 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
}

.detail-hero-banner .detail-meta-row {
  margin-bottom: 0.65rem;
}

.detail-hero-banner .pill {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(253, 249, 245, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-banner-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.9rem, 5.2vw, 2.85rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fdf9f5;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

.detail-banner-lead {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  line-height: 1.45;
  color: rgba(253, 249, 245, 0.94);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
}

.detail-banner-blurb {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(253, 249, 245, 0.78);
  max-width: 42rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.detail-section {
  margin-bottom: 2.25rem;
}

.detail-section h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.detail-prose p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.detail-prose p:last-child {
  margin-bottom: 0;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

/* 섹시/글램 연출 3컷 — 열 간격 최소 */
.sample-grid--tight {
  gap: 0.2rem;
}

@media (min-width: 641px) {
  .sample-grid--tight {
    gap: 0.15rem;
  }
}

.sporty-subpage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
}

.sample-card--portrait img {
  aspect-ratio: auto !important;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.sample-card--portrait figcaption {
  text-align: center;
}

@media (max-width: 640px) {
  .sample-grid {
    grid-template-columns: 1fr;
  }

  .sporty-subpage-grid {
    grid-template-columns: 1fr;
  }
}

.sample-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.sample-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f3f3f1;
}

.sample-card figcaption {
  padding: 0.65rem 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

.compare-card {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.compare-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--accent);
}

.compare-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.drawer-summary .hero-img {
  height: 120px;
}

.drawer-summary .cta-row {
  flex-direction: column;
}

.drawer-summary .cta-row .btn {
  width: 100%;
  flex: none;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.modal-panel {
  position: relative;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0;
}

.modal-head h2 {
  font-size: 1.15rem;
  margin: 0;
}

.modal-head .drawer-close {
  position: static;
  flex-shrink: 0;
}

.progress-bar {
  height: 3px;
  background: var(--surface);
  margin: 1rem 1.25rem 0;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.35s ease;
}

.onboard-steps {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.step-title {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.step-welcome-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.step-welcome-body strong {
  color: var(--text);
}

.detail-trend-section .detail-trend-h {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.35rem 0 0.45rem;
  color: var(--text);
}

.detail-trend-section .detail-trend-h:first-of-type {
  margin-top: 0.65rem;
}

.step-choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
}

.modal-actions-end {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.is-hidden {
  display: none !important;
}

/* 온보딩 이후: 다음 할 일 */
.next-steps-page {
  position: fixed;
  inset: 0;
  z-index: 115;
  background: #ffffff;
  overflow-y: auto;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease, visibility 0.28s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.next-steps-page.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.next-steps-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  padding-top: max(1rem, env(safe-area-inset-top));
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.next-steps-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.next-steps-inner {
  width: min(720px, 92vw);
  margin: 0 auto;
  padding: 1.75rem clamp(1rem, 4vw, 2rem) 4rem;
}

.next-summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.next-summary-card h3 {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.next-checklist {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.next-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.next-checklist li:first-child {
  padding-top: 0;
}

.next-checklist .step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.next-checklist h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.next-checklist p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.next-steps-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (min-width: 520px) {
  .next-steps-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .next-steps-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.result-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
}

.result-box h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: var(--accent);
}

.result-box ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- 시각 가이드 전용 페이지 (guide-visual-flows.html) ---------- */
.flow-guide-page {
  min-height: 100vh;
}

.flow-guide-main {
  padding-top: calc(var(--header-h) + 0.35rem);
  padding-bottom: 2.5rem;
}

.nav--compact {
  gap: 0.5rem;
}

.nav--compact a {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav--inline-mobile {
    position: static;
    inset: auto;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 0;
    background: transparent;
    border: none;
    gap: 0.65rem;
  }
}

.flow-guide-hero {
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.flow-guide-hero.section {
  padding-top: 1rem;
  padding-bottom: 1.25rem;
}

.flow-guide-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  margin: 0.35rem 0 0.75rem;
  line-height: 1.15;
}

.flow-guide-hero-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 40rem;
}

.flow-guide-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 1.25rem 0 0.5rem;
  position: sticky;
  top: 0;
  z-index: 2;
  background: linear-gradient(180deg, var(--bg) 85%, transparent);
  padding-bottom: 0.75rem;
}

.flow-guide-toc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.flow-guide-toc-link:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.flow-guide-toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
}

.flow-guide-section {
  padding-top: 2.25rem;
  padding-bottom: 2rem;
  scroll-margin-top: 4.5rem;
}

.flow-guide-section--studio {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, transparent 40%);
  border-block: 1px solid var(--border);
}

.flow-guide-section-head {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.flow-guide-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.flow-guide-section-head h2 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
}

.flow-guide-section-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.flow-guide-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.35);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.flow-guide-placeholder--hero {
  min-height: 14rem;
  max-width: 52rem;
}

.flow-guide-placeholder--tile {
  min-height: 11rem;
  flex: 1;
}

.flow-guide-placeholder-note {
  display: block;
  max-width: 28rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

/* 셀프 기록형 — 동일 박스(2:3) 가로 스트립 (남·여 각 1줄) */
.flow-guide-self-strips-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.35rem;
  padding: 0 0.35rem 0.35rem;
}

.flow-guide-self-strips {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  width: max-content;
  min-width: 100%;
  max-width: 100%;
  margin: 0 auto;
  align-items: center;
}

.flow-guide-self-line {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  max-width: 100%;
}

.flow-guide-self-line-label {
  flex: 0 0 2.5rem;
  margin: 0;
  padding: 0 0.2rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-align: right;
  line-height: 1.2;
  align-self: center;
}

.flow-guide-self-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.5rem;
}

.flow-guide-self-cell {
  --self-cell-w: clamp(118px, 26vw, 188px);
  margin: 0;
  width: var(--self-cell-w);
  flex: 0 0 var(--self-cell-w);
  text-align: center;
}

.flow-guide-self-cell-img {
  width: 100%;
  /* 9:16보다 세로 짧게 — 헬스장 등 세로컷은 약간 크롭, 날짜별 가로합성은 박스에 꽉 참 */
  aspect-ratio: 2 / 3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #141413;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.flow-guide-self-cell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.flow-guide-self-cell figcaption {
  margin: 0.35rem 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .flow-guide-self-cell {
    --self-cell-w: clamp(148px, 16vw, 230px);
  }
}

.flow-guide-studio-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.flow-guide-studio-wrap > .flow-guide-story--full {
  grid-column: 1 / -1;
  max-width: min(48rem, 100%);
  margin-inline: auto;
  width: 100%;
}

@media (max-width: 820px) {
  .flow-guide-studio-wrap {
    grid-template-columns: 1fr;
  }

  .flow-guide-studio-wrap > .flow-guide-story--full {
    grid-column: auto;
    max-width: none;
  }
}

.flow-guide-story-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.flow-guide-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.65rem;
  align-items: stretch;
}

@media (max-width: 520px) {
  .flow-guide-pair {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .flow-guide-arrow {
    display: none;
  }
}

.flow-guide-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  padding: 0 0.15rem;
}

.flow-guide-fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.flow-guide-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #1a1a1a;
  aspect-ratio: 3 / 4;
}

.flow-guide-fig--before .flow-guide-img-wrap {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.flow-guide-fig--after .flow-guide-img-wrap {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.flow-guide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow-guide-fig figcaption {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

.flow-guide-footnote {
  margin: 1.75rem auto 0;
  max-width: 48rem;
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
}

/* 혼합형 — 1부 5열(좁은 컷) + 2부 3열(넓은 컷), 한 블록 너비 맞춤 */
.flow-guide-hybrid-rows-wrap {
  max-width: min(56rem, 100%);
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
}

.flow-guide-hybrid-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: min(100%, 480px);
}

.flow-guide-hybrid-row-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.4rem;
}

.flow-guide-hybrid-row-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--accent-soft);
  color: var(--accent);
}

.flow-guide-hybrid-row-badge--studio {
  background: #e8e6e1;
  color: var(--text);
}

.flow-guide-hybrid-row-desc {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.flow-guide-hybrid-row {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.flow-guide-hybrid-row--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.flow-guide-hybrid-row--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.48rem;
  margin-bottom: 0;
}

.flow-guide-hybrid-rows-gap {
  height: 0.65rem;
}

.flow-guide-hybrid-tile {
  margin: 0;
  min-width: 0;
}

.flow-guide-hybrid-tile-img {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #141413;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.flow-guide-hybrid-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow-guide-hybrid-tile-img--contain {
  background: #eceae6;
}

.flow-guide-hybrid-tile-img--contain img {
  object-fit: contain;
}

.flow-guide-mini-note {
  margin: 1rem auto 0;
  max-width: 40rem;
  font-size: 0.85rem;
  text-align: center;
}

.flow-guide-footer {
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

/* 메인 — 시각 가이드 링크 */
.ba-guide-visual-cta {
  margin: 1rem 0 0;
  text-align: center;
}

.ba-guide-card-foot {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
}

.ba-guide-card-foot a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.ba-guide-card-foot a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
