/* ===================================================
   Food Pharmacy Seoul — Landing v4 (bright editorial)
   =================================================== */

/* ═══════════════════════════════════════════════════
   Shared section heading
   ═══════════════════════════════════════════════════ */
.section-head {
  max-width: 820px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.section-head--left { text-align: left; margin-inline: 0; }

.section-head .label { margin-inline: auto; }
.section-head--left .label { margin-inline: 0; }

.section-title {
  font-family: var(--font-en-serif);
  font-size: var(--fs-3xl);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin-top: 0.4rem;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.section-sub {
  margin-top: 1.25rem;
  font-size: var(--fs-md);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 36em;
}
.section-head:not(.section-head--left) .section-sub { margin-inline: auto; }

/* ═══════════════════════════════════════════════════
   01. HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 8rem) 0 7rem;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-image {
  --parallax-y: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.08);
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(19, 17, 14, 0.55) 0%,
      rgba(19, 17, 14, 0.2) 35%,
      rgba(19, 17, 14, 0.5) 75%,
      rgba(19, 17, 14, 0.85) 100%);
}
.hero-inner {
  position: relative;
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sand-100);
}
.hero-title {
  font-family: var(--font-kr-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  font-size: clamp(2.4rem, 1.4rem + 5.2vw, 5.4rem);
}
.hero-title em {
  font-style: normal;
  font-weight: 500;
  background: linear-gradient(120deg, #D6E3D7, var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.1em;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
  max-width: 640px;
}
.hero-tagline {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--sand-100);
}
.hero-quote {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.5rem);
  color: var(--sand-100);
  line-height: 1.45;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.hero-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.6rem 1.05rem 1.4rem;
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-kr-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow:
    0 18px 50px -18px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}
.hero-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18) 45%,
    transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease-out);
  pointer-events: none;
}
.hero-cta-btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent-soft);
  background: linear-gradient(135deg, rgba(198, 143, 73, 0.28), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 26px 60px -18px rgba(198, 143, 73, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.hero-cta-btn:hover::before { transform: translateX(120%); }

.hero-cta-pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffd8a5;
  box-shadow: 0 0 12px rgba(255, 216, 165, 0.8);
  flex-shrink: 0;
}
.hero-cta-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 216, 165, 0.7);
  animation: heroPulse 2s var(--ease-out) infinite;
}
@keyframes heroPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  80%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}
.hero-cta-text { white-space: nowrap; }
.hero-cta-arrow {
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.hero-cta-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.hero-cta-btn:hover .hero-cta-arrow { width: 30px; }
.hero-cta-note {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--sand-100);
  opacity: 0.78;
  letter-spacing: 0.02em;
  padding-left: 0.25rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--white));
  animation: scrollNudge 2.1s var(--ease) infinite;
}
@keyframes scrollNudge {
  0% { top: -60%; }
  100% { top: 100%; }
}


/* ═══════════════════════════════════════════════════
   02. INTRO + STATS
   ═══════════════════════════════════════════════════ */
.intro {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.intro-copy { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.intro-title {
  font-family: var(--font-kr-serif);
  font-size: var(--fs-2xl);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.intro-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
.intro-body {
  font-size: var(--fs-md);
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 32em;
}
.intro-body em { font-style: normal; color: var(--accent); font-weight: 600; }

.intro-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-sand);
  border-radius: var(--r-lg);
  border: 1px solid var(--rule);
  transition: transform 0.5s var(--ease-out), background 0.4s var(--ease);
}
.stat:hover { transform: translateX(6px); }
.stat-num {
  font-family: var(--font-en-serif);
  font-size: clamp(2.4rem, 1.8rem + 2vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ink-900);
}
.stat-num sup {
  font-family: var(--font-kr-serif);
  font-size: 0.4em;
  font-weight: 500;
  margin-left: 0.15em;
  vertical-align: baseline;
  color: var(--text-mid);
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.stat--accent { background: var(--accent); border-color: var(--accent); color: var(--white); }
.stat--accent .stat-num { color: var(--white); }
.stat--accent .stat-num sup { color: rgba(255, 255, 255, 0.8); }
.stat--accent .stat-label { color: rgba(255, 255, 255, 0.85); }


/* ═══════════════════════════════════════════════════
   03. PHILOSOPHY
   ═══════════════════════════════════════════════════ */
.philosophy {
  padding: clamp(5rem, 11vw, 9rem) 0;
  background: var(--bg-soft);
}
.phil-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.phil-card {
  position: relative;
  padding: clamp(2rem, 3.2vw, 3rem);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 280px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s var(--ease);
  overflow: hidden;
}
.phil-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease-out);
}
.phil-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.phil-card:hover::before { transform: scaleY(1); }
.phil-num {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.phil-en {
  font-family: var(--font-en-serif);
  font-size: clamp(1.35rem, 1.05rem + 0.9vw, 1.8rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.phil-kr {
  font-family: var(--font-kr-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-top: 0.1rem;
}
.phil-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ═══════════════════════════════════════════════════
   04. FOUNDER
   ═══════════════════════════════════════════════════ */
.founder {
  padding: clamp(5rem, 11vw, 9rem) 0;
  background: var(--bg);
}
.founder-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.founder-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.founder-media:hover .founder-img { transform: scale(1.04); }
.founder-tag {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0.5rem 0.9rem;
  background: var(--white);
  color: var(--ink-900);
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 0.95rem;
  border-radius: 999px;
}
.founder-copy { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.founder-title {
  font-family: var(--font-kr-serif);
  font-size: var(--fs-2xl);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.founder-title em { font-style: normal; color: var(--accent); font-weight: 600; }
.founder-text {
  font-size: var(--fs-md);
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 32em;
}

/* ═══════════════════════════════════════════════════
   05. WORKSHOP
   ═══════════════════════════════════════════════════ */
.workshop { background: var(--bg-soft); }
.workshop-hero {
  width: 100%;
  height: clamp(40vh, 70vh, 80vh);
  overflow: hidden;
  position: relative;
}
.workshop-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-out);
}
.workshop-hero.is-visible img { transform: scale(1); }
.workshop-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(251, 250, 247, 0.5) 100%);
  pointer-events: none;
}
.workshop-body { padding: clamp(4rem, 8vw, 6rem) 0 clamp(5rem, 11vw, 9rem); }

.workshop-sub { max-width: 42em; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: clamp(2rem, 4vw, 3rem) 0;
}
.step {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.45s var(--ease-out), border-color 0.3s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--accent); }
.step-num {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.step-title {
  font-family: var(--font-en-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.step-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.workshop-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--rule);
  margin-top: 2rem;
  flex-wrap: wrap;
}
.workshop-date { display: flex; flex-direction: column; gap: 0.2rem; }
.workshop-date-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.workshop-date-value {
  font-family: var(--font-en-serif);
  font-size: 1.6rem;
  color: var(--ink-900);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   06. VOICES
   ═══════════════════════════════════════════════════ */
.voices {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--bg);
}
.voices > .container > .label { margin-bottom: 2.5rem; }

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.voice {
  position: relative;
  padding: 2.25rem 2rem 1.75rem;
  background: var(--bg-sand);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.45s var(--ease-out);
}
.voice:hover { transform: translateY(-6px); }
.voice::before {
  content: "\201C";
  position: absolute;
  top: 0.2rem;
  left: 1rem;
  font-family: var(--font-en-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--accent-tint);
  pointer-events: none;
}
.voice p {
  position: relative;
  font-family: var(--font-kr-serif);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-800);
  font-weight: 400;
}
.voice footer {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   07. PRIVATE TABLE
   ═══════════════════════════════════════════════════ */
.private {
  padding: clamp(5rem, 11vw, 9rem) 0;
  background: var(--bg-soft);
}
.private-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.private-copy { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.private-title {
  font-family: var(--font-kr-serif);
  font-size: var(--fs-3xl);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.private-title em { font-style: normal; color: var(--accent); font-weight: 600; }
.private-text {
  font-size: var(--fs-md);
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 34em;
}
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  margin: 0.5rem 0 1.25rem;
}
.services li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.services li:hover { border-color: var(--accent); transform: translateX(4px); }
.service-en {
  font-family: var(--font-en-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.service-kr {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.private-media {
  position: relative;
  aspect-ratio: 4/5;
}
.private-img-a, .private-img-b {
  position: absolute;
  border-radius: var(--r-lg);
  object-fit: cover;
  box-shadow: var(--shadow-2);
}
.private-img-a {
  top: 0;
  left: 0;
  width: 82%;
  height: 82%;
}
.private-img-b {
  bottom: 0;
  right: 0;
  width: 54%;
  height: 48%;
  border: 6px solid var(--bg-soft);
  border-radius: var(--r);
}

/* ═══════════════════════════════════════════════════
   08. RX (Coming Soon)
   ═══════════════════════════════════════════════════ */
.rx {
  position: relative;
  background: var(--bg-dark);
  color: var(--white);
  padding: clamp(5rem, 12vw, 9rem) 0;
  overflow: hidden;
}
.rx::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 82% 12%, rgba(138, 163, 142, 0.25), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(158, 139, 110, 0.1), transparent 55%);
  pointer-events: none;
}
.rx > .container { position: relative; }

.rx-intro { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.rx-philosophy {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 0.95rem + 1.3vw, 1.9rem);
  line-height: 1.55;
  color: var(--sand-100);
}
.rx-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.rx-head .label { margin-inline: auto; }
.rx-title {
  font-family: var(--font-kr-serif);
  font-size: var(--fs-3xl);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.rx-title em { font-style: normal; color: var(--accent-soft); font-weight: 500; }
.rx-sub {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-soft);
  margin-bottom: 1.25rem;
}
.rx-text {
  font-size: var(--fs-base);
  color: var(--sand-100);
  line-height: 1.85;
}
.rx-text--accent {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent-soft);
  font-family: var(--font-kr-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.rx-list {
  max-width: 880px;
  margin: 0 auto 4rem;
  display: flex;
  flex-direction: column;
}
.rx-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--rule-inv);
  transition: padding-left 0.4s var(--ease-out);
  gap: 1rem;
}
.rx-item:first-child { border-top: 1px solid var(--rule-inv); }
.rx-item:hover { padding-left: 1rem; }
.rx-left { display: flex; align-items: center; gap: 1.25rem; min-width: 0; flex: 1; }
.rx-mark {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent-soft);
  line-height: 1;
}
.rx-num {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--ink-300);
  font-weight: 600;
}
.rx-info { display: flex; flex-direction: column; min-width: 0; }
.rx-name {
  font-size: var(--fs-md);
  color: var(--white);
  font-weight: 500;
  line-height: 1.3;
}
.rx-name-en {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-300);
  line-height: 1.3;
}
.rx-tag {
  padding: 0.35rem 0.85rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  border-radius: 999px;
  white-space: nowrap;
}

.rx-form-wrap { max-width: 560px; margin: 0 auto; text-align: center; }
.rx-form-label {
  font-family: var(--font-kr-serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.rx-form-sub {
  font-size: 0.88rem;
  color: var(--ink-300);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ── Rx 리스트 베일(출시 전 감춤 효과) ─────────────── */
.rx-list--veiled { position: relative; }
.rx-list--veiled .rx-item {
  filter: blur(6px) saturate(0.85);
  opacity: 0.55;
  user-select: none;
  pointer-events: none;
  transition: filter 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.rx-veil {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(15, 12, 10, 0.15), rgba(15, 12, 10, 0.55) 75%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: var(--r);
  pointer-events: none;
}
.rx-veil-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: clamp(150px, 22vw, 210px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px dashed rgba(198, 143, 73, 0.55);
  background:
    radial-gradient(circle at 50% 35%, rgba(198, 143, 73, 0.22), transparent 70%),
    rgba(15, 12, 10, 0.55);
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.03),
    0 20px 60px -20px rgba(0, 0, 0, 0.7);
  color: var(--accent-soft);
  text-align: center;
  transform: rotate(-4deg);
  animation: rx-seal-float 6s ease-in-out infinite;
}
.rx-veil-seal-mark {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-soft);
  line-height: 1.3;
  text-align: center;
  padding: 0 0.8rem;
}
@keyframes rx-seal-float {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(-6px); }
}

/* ── 런칭 알림 버튼(인스타그램 연결) ───────────────── */
.rx-launch-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-600, #a87236) 100%);
  color: var(--white);
  font-family: var(--font-kr-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 44px -16px rgba(198, 143, 73, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.rx-launch-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 54px -16px rgba(198, 143, 73, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.rx-launch-btn .arrow {
  width: 18px; height: 1px;
  background: currentColor;
  position: relative;
  display: inline-block;
}
.rx-launch-btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.rx-launch-btn-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ffd8a5;
  box-shadow: 0 0 0 0 rgba(255, 216, 165, 0.7);
  animation: rx-pulse 1.8s ease-out infinite;
}
@keyframes rx-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 216, 165, 0.75); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 216, 165, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 216, 165, 0); }
}

/* ═══════════════════════════════════════════════════
   09. RESOURCES
   ═══════════════════════════════════════════════════ */
.resources {
  padding: clamp(5rem, 11vw, 9rem) 0;
  background: var(--bg);
}
.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.resources-media {
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.resources-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.resources-media:hover img { transform: scale(1.04); }
.resources-copy { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.resources-title {
  font-family: var(--font-kr-serif);
  font-size: var(--fs-2xl);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.resources-title em { font-style: normal; color: var(--accent); font-weight: 600; }
.resources-text {
  font-size: var(--fs-md);
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 34em;
}
.resources-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  width: 100%;
  margin: 0.5rem 0 1rem;
}
.resources-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.1rem;
  background: var(--bg-sand);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--ink-900);
  font-weight: 500;
}
.resources-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.resources .email-form { width: 100%; max-width: 520px; }

/* ═══════════════════════════════════════════════════
   09-b. APPLY CTA (워크숍 신청)
   ═══════════════════════════════════════════════════ */
.apply-cta {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-900);
  color: var(--white);
}
.apply-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 80% at 20% 10%, rgba(198, 143, 73, 0.35), transparent 60%),
    radial-gradient(55% 75% at 85% 90%, rgba(198, 143, 73, 0.18), transparent 65%),
    linear-gradient(180deg, #1a1713 0%, #0f0d0b 100%);
}
.apply-cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.apply-cta-inner {
  position: relative;
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.apply-cta-inner .label { margin-inline: auto; }
.apply-cta-title {
  font-family: var(--font-kr-serif);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-top: 0.25rem;
}
.apply-cta-title em {
  font-style: normal;
  color: var(--accent-soft);
  font-weight: 600;
}
.apply-cta-lead {
  font-size: var(--fs-md);
  line-height: 1.9;
  color: var(--sand-100);
  max-width: 30em;
}
.apply-cta-points {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1rem 0 0.5rem;
  text-align: left;
  width: 100%;
  max-width: 440px;
}
.apply-cta-points li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  color: var(--sand-100);
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.apply-cta-points li span {
  font-family: var(--font-en-serif);
  font-style: italic;
  color: var(--accent-soft);
  font-size: 1rem;
  min-width: 1.5rem;
}
.apply-cta-btn {
  margin-top: 1.5rem;
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
  box-shadow: 0 14px 40px -14px rgba(198, 143, 73, 0.6);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.apply-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px -14px rgba(198, 143, 73, 0.7);
}
.apply-cta-note {
  font-size: 0.82rem;
  color: var(--ink-300);
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════
   10. INSTAGRAM
   ═══════════════════════════════════════════════════ */
.instagram {
  padding: clamp(5rem, 10vw, 7rem) 0;
  background: var(--bg-sand);
  text-align: center;
}
.instagram .container > .reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.instagram .label { margin-inline: auto; }
.instagram-title {
  font-family: var(--font-kr-serif);
  font-size: var(--fs-2xl);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.instagram-title em { font-style: normal; color: var(--accent); font-weight: 600; }
.instagram-handle {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-top: 0.3rem;
  margin-bottom: 1rem;
}
.instagram-handle::first-letter {
  background: linear-gradient(45deg, #F58529 0%, #DD2A7B 45%, #8134AF 75%, #515BD4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════
   MODAL (shared)
   ═══════════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(19, 17, 14, 0.6);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  display: grid;
  place-items: start center;
  padding: clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.modal[hidden] { display: none; }
.modal.is-open { opacity: 1; }

.modal-panel {
  position: relative;
  width: min(1000px, 100%);
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transform: translateY(24px);
  transition: transform 0.55s var(--ease-out);
  box-shadow: var(--shadow-3);
}
.modal.is-open .modal-panel { transform: none; }
.modal-panel--sheet { width: min(820px, 100%); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink-900);
  border: 1px solid var(--rule-2);
  z-index: 3;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.modal-close:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.modal-close svg { width: 18px; height: 18px; }
.modal-close--on-media { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(6px); }

.modal-hero {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 17, 14, 0) 40%, rgba(19, 17, 14, 0.7) 100%);
}
.modal-hero-caption {
  position: absolute;
  left: 2rem;
  bottom: 1.5rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 2;
}
.modal-hero-caption h3 {
  font-family: var(--font-en-serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.modal-content {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.modal-content--narrow { max-width: 680px; margin-inline: auto; width: 100%; }

.modal-title {
  font-family: var(--font-kr-serif);
  font-size: var(--fs-2xl);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.modal-title em { font-style: normal; color: var(--accent); font-weight: 600; }

.modal-lead {
  font-size: var(--fs-md);
  line-height: 1.85;
  color: var(--text-muted);
}

/* Manifesto body */
.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.manifesto-body p {
  font-family: var(--font-kr-serif);
  font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.35rem);
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 400;
}
.manifesto-body p.manifesto-em {
  color: var(--ink-900);
  font-weight: 500;
}
.manifesto-body p.manifesto-em em {
  font-style: normal;
  color: var(--accent);
}
.manifesto-body hr {
  width: 64px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto;
}

/* Modal steps */
.modal-steps {
  display: grid;
  gap: 1rem;
}
.modal-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-sand);
  border-radius: var(--r);
}
.modal-step-num {
  font-family: var(--font-en-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
}
.modal-step h4 {
  font-family: var(--font-en-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.modal-step p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.modal-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.modal-photos img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--r-sm);
}

.modal-voices {
  display: grid;
  gap: 0.75rem;
}
.modal-voices blockquote {
  padding: 1.25rem 1.5rem;
  background: var(--bg-sand);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--font-kr-serif);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-800);
}

.modal-cta {
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.modal-cta-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.modal-date { display: flex; flex-direction: column; gap: 0.2rem; }
.modal-date-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.modal-date-value {
  font-family: var(--font-en-serif);
  font-size: 1.5rem;
  color: var(--ink-900);
  font-weight: 500;
}
.modal-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.modal-tags span {
  padding: 0.4rem 0.85rem;
  background: var(--bg-sand);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.modal-cta-btn { width: 100%; }


/* ═══════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-stats { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 1.1rem 1rem; }

  .phil-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 2rem; }
  .founder-media { max-width: 500px; margin-inline: auto; width: 100%; }

  .voices-grid { grid-template-columns: 1fr; }
  .private-grid { grid-template-columns: 1fr; gap: 3rem; }
  .private-media { max-width: 500px; margin-inline: auto; width: 100%; }
  .services { grid-template-columns: 1fr; }

  .resources-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .resources-media { max-width: 500px; margin-inline: auto; width: 100%; }
  .resources-list { grid-template-columns: 1fr; }

  .workshop-cta { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .workshop-cta .btn { width: 100%; }

  .rx-item { flex-wrap: wrap; }
  .modal-photos { grid-template-columns: repeat(2, 1fr); }
  .modal-cta-info { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .hero { padding-bottom: 5.5rem; }
  .hero-scroll { display: none; }
  .hero-cta { width: 100%; }
  .hero-cta-btn { width: 100%; justify-content: center; padding: 1rem 1.25rem; font-size: 0.95rem; }
  .hero-cta-text { white-space: normal; }

  .intro-stats { grid-template-columns: 1fr; }
  .stat { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 1rem; }
  .stat-num { font-size: 2.4rem; }

  .steps { grid-template-columns: 1fr; }
  .step { padding: 1.5rem; }

  .voice { padding: 1.75rem 1.5rem 1.5rem; }

  .private-img-a, .private-img-b { border-radius: var(--r); }
  .private-img-b { border-width: 4px; }

  .modal-step { grid-template-columns: 1fr; gap: 0.6rem; padding: 1.25rem; }
  .modal-cta-btn { padding: 0.85rem 1.2rem; font-size: 0.85rem; }
  .modal-hero-caption { left: 1.25rem; bottom: 1.25rem; }
  .modal-hero-caption h3 { font-size: 1.3rem; }
}
