/* =========================================================
   헤어지지마 캠페인 제안서 — 스타일시트
   Palette: Off-white + Deep Green + accent product colors
   ========================================================= */

:root{
  --bg: #F1EDE4;              /* off-white warm */
  --bg-alt: #E8E2D3;
  --paper: #FBF8F0;
  --ink: #14201A;             /* near-black green */
  --ink-2: #2C3A32;
  --green: #1E3A2E;           /* deep forest green */
  --green-2: #2A5943;
  --green-soft: #3E6B55;
  --line: #14201A;
  --muted: #7B8078;
  --accent-yellow: #F4C13C;   /* product yellow */
  --accent-orange: #E4691E;   /* product orange */
  --accent-blue:   #9BB6C4;   /* product blue */
  /* 산세리프 통일 — 헤드라인용은 Pretendard 헤비, 본문용은 Pretendard 레귤러 */
  --serif: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --serif-2: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --sans: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html, body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* 산세리프 통일 이후 이탤릭을 강조칭으로 재정의 */
.serif-italic, em{
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.015em;
}
body{ overflow-x: hidden; }

img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }

.mono{ font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.serif{ font-family: var(--serif); }
.serif-italic{ font-family: var(--serif); font-style: normal; font-weight: 800; letter-spacing: -0.02em; }
.muted{ color: var(--muted); }

/* ---------- Progress bar (top) ---------- */
.progress-fixed{
  position: fixed; inset: 0 0 auto 0;
  background: rgba(241,237,228,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.progress-bar{
  height: 2px; background: transparent; position: relative;
}
.progress-fill{
  position:absolute; left:0; top:0; height:100%;
  background: var(--green);
  width: 0%;
  transition: width 0.15s linear;
}
.progress-meta{
  display:flex; justify-content:space-between; align-items:center;
  padding: 10px 32px;
}
.progress-meta span{ font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.meta-brand::before{ content:"●"; color: var(--green); margin-right: 8px; }

/* ---------- Chapter nav (right) ---------- */
.chapter-nav{
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 12px;
  max-height: 78vh;
  overflow-y: auto;
}
.chapter-nav::-webkit-scrollbar{ display:none; }
.chap{
  display:flex; align-items:center; gap:10px;
  font-family: var(--mono);
  font-size: 9.5px; letter-spacing: 0.1em;
  color: var(--muted);
  padding: 2px 4px;
  transition: color 0.2s;
}
.chap-num{ display:inline-block; min-width: 18px; }
.chap-label{ opacity: 0; transform: translateX(-4px); transition: all 0.2s; pointer-events: none; }
.chapter-nav:hover .chap-label,
.chap.active .chap-label{ opacity: 1; transform: translateX(0); }
.chap.active{ color: var(--green); }
.chap.active .chap-num{ font-weight: 500; }
.chap:hover{ color: var(--ink); }

/* ---------- Sections ---------- */
.section{
  min-height: 100vh;
  padding: 96px 96px 80px;
  position: relative;
  border-bottom: 1px solid rgba(20,32,26,0.12);
}
.section:last-of-type{ border-bottom: none; }

.section-head{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: baseline;
}
.section-num{
  font-family: var(--serif);
  font-size: 56px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.03em;
}
.section-title-block .kicker{
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title-block h2{
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.section-title-block h2 em{ font-style: normal; font-weight: 800; color: var(--green); }
.section-title-block .subtitle{
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
}

/* ---------- COVER ---------- */
.cover-section{
  min-height: 100vh;
  padding: 60px 48px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.cover-grid{
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 32px;
  height: calc(100vh - 100px);
  min-height: 780px;
}
.cover-topbar{
  display: flex; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.cover-topbar span{ font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.cover-episode{
  display: flex; align-items: center; gap: 20px;
}
.ep-tag{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  background: var(--green);
  color: var(--paper);
}
.ep-divider{
  height: 1px; width: 60px; background: var(--line);
}
.ep-name{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--ink);
}

.cover-title{
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 12px;
}
.cover-title .serif-italic{
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(180px, 20vw, 280px);
  line-height: 0.88;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.055em;
}
.cover-sub{
  font-family: var(--serif);
  font-style: normal;
  font-size: 22px;
  color: var(--green);
  padding-left: 4px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.cover-hero{
  position: absolute;
  right: 48px;
  bottom: 200px;
  width: 42%;
  height: 44%;
  overflow: hidden;
  z-index: 1;
}
.cover-hero img{
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.1) contrast(1.02);
}
.cover-hero-tint{
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(30,58,46,0.15));
  mix-blend-mode: multiply;
}
.cover-caption{
  position: absolute;
  right: 48px;
  bottom: 172px;
  display: flex; gap: 24px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

.cover-footer{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  z-index: 2;
  position: relative;
}
.footer-block{
  display: flex; flex-direction: column; gap: 8px;
}
.footer-block .mono{ font-size: 10px; }
.footer-val{
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* ---------- Utility ---------- */
.rule{
  height: 1px; background: var(--line); width: 100%;
}
.rule-soft{
  height: 1px; background: rgba(20,32,26,0.15);
}
.pill{
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line);
  color: var(--ink);
}
.pill.filled{ background: var(--green); color: var(--paper); border-color: var(--green); }
.pill.yellow{ background: var(--accent-yellow); color: var(--ink); border-color: var(--accent-yellow); }
.pill.orange{ background: var(--accent-orange); color: var(--paper); border-color: var(--accent-orange); }

/* ---------- Fade-in on scroll ---------- */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* =========================================================
   INDEX
   ========================================================= */
.index-section{ background: var(--bg); }
.index-list{
  display: grid; grid-template-columns: 90px 1fr auto auto; gap: 0;
  border-top: 1px solid var(--line);
}
.index-item{
  display: contents;
}
.index-item > *{
  padding: 22px 12px;
  border-bottom: 1px solid rgba(20,32,26,0.15);
  transition: background 0.15s;
}
.index-item:hover > *{ background: rgba(30,58,46,0.05); }
.idx-num{ font-family: var(--mono); font-size: 12px; color: var(--muted); }
.idx-title{ font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 700; letter-spacing: -0.025em; }
.idx-title em{ font-style: normal; font-weight: 700; color: var(--green); }
.idx-tag{ font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.idx-page{ font-family: var(--mono); font-size: 12px; color: var(--ink); text-align: right; min-width: 60px; }

/* =========================================================
   OPENING (giant statement)
   ========================================================= */
.opening-section{
  background: var(--green);
  color: var(--paper);
  padding: 96px 96px;
  min-height: 100vh;
}
.opening-section .mono-white{ color: rgba(251,248,240,0.6); }
.opening-topbar{
  display: flex; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(251,248,240,0.25);
  margin-bottom: 80px;
}
.opening-topbar span{ font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; color: rgba(251,248,240,0.7); text-transform: uppercase; }
.opening-headline{
  font-family: var(--serif);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(80px, 10vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--paper);
  margin-bottom: 48px;
}
.opening-headline .accent{ color: var(--accent-yellow); }
.opening-body{
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(251,248,240,0.25);
}
.opening-body p{
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.75;
  color: rgba(251,248,240,0.88);
  text-wrap: pretty;
}
.opening-body p + p{ margin-top: 18px; }
.opening-quote{
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.35;
  color: var(--paper);
  padding-left: 24px;
  border-left: 2px solid var(--accent-yellow);
  letter-spacing: -0.025em;
}

/* =========================================================
   OVERVIEW
   ========================================================= */
.overview-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  margin-top: 32px;
}
.overview-left h3{
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.035em;
}
.overview-left h3 em{ font-style: normal; font-weight: 800; color: var(--green); }
.overview-left p{
  font-size: 16px; line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
  max-width: 520px;
}
.overview-diagram{
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
}
.overview-diagram .diag-label{
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.overview-diagram .flow{
  display: flex; flex-direction: column; gap: 16px;
}
.flow-node{
  display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(20,32,26,0.12);
}
.flow-node:last-child{ border-bottom: none; }
.flow-node .fn-num{
  font-family: var(--serif); font-style: normal;
  font-size: 34px; color: var(--green); line-height: 1;
  font-weight: 800; letter-spacing: -0.03em;
}
.flow-node .fn-body h4{
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: var(--ink);
}
.flow-node .fn-body h4 .mono{
  color: var(--muted);
  margin-left: 8px;
  font-weight: 400;
}
.flow-node .fn-body p{
  font-size: 13.5px; line-height: 1.55;
  color: var(--ink-2);
}

/* =========================================================
   MESSAGE
   ========================================================= */
.message-section{ background: var(--bg-alt); }
.message-grid{
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  align-items: start;
}
.msg-headline{
  font-family: var(--serif);
  font-style: normal;
  font-weight: 900;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.055em;
}
.msg-reason{
  padding: 20px 24px;
  background: var(--paper);
  border-left: 3px solid var(--green);
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.msg-copy-block{
  display: flex; flex-direction: column; gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.msg-copy-item{
  display: grid; grid-template-columns: 24px 1fr; gap: 20px; align-items: baseline;
}
.msg-copy-item .num{
  font-family: var(--mono); font-size: 11px;
  color: var(--muted);
}
.msg-copy-item .txt{
  font-family: var(--serif); font-size: 30px; line-height: 1.2;
  color: var(--ink); font-weight: 700; letter-spacing: -0.03em;
}
.msg-copy-item.final .txt{
  font-style: normal;
  color: var(--green);
  font-weight: 800;
}
.msg-qr-card{
  padding: 32px;
  background: var(--green);
  color: var(--paper);
  border: 1px solid var(--green);
}
.msg-qr-card .label{
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  color: rgba(251,248,240,0.6);
  margin-bottom: 16px;
}
.msg-qr-card h4{
  font-family: var(--serif); font-size: 36px; font-weight: 800; line-height: 1.15;
  margin-bottom: 32px; letter-spacing: -0.035em;
}
.msg-qr-card .qr-wrap{
  display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: center;
  padding: 20px;
  background: var(--paper);
  color: var(--ink);
}
.msg-qr-card .qr-code{
  width: 120px; height: 120px;
  background: var(--ink);
  background-image:
    linear-gradient(45deg, var(--paper) 25%, transparent 25%, transparent 75%, var(--paper) 75%),
    linear-gradient(45deg, var(--paper) 25%, transparent 25%, transparent 75%, var(--paper) 75%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  position: relative;
}
.msg-qr-card .qr-code::before,
.msg-qr-card .qr-code::after{
  content:''; position:absolute; width:32px; height:32px;
  border:6px solid var(--ink); background: var(--paper);
}
.msg-qr-card .qr-code::before{ top: 4px; left: 4px; }
.msg-qr-card .qr-code::after{ top: 4px; right: 4px; }
.qr-cta{ font-family: var(--sans); }
.qr-cta .cta-eyebrow{ font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.12em; }
.qr-cta .cta-main{ font-family: var(--serif); font-size: 18px; margin-top: 8px; line-height: 1.3; font-weight: 700; letter-spacing: -0.025em; }

/* =========================================================
   JOURNEY (6 stages)
   ========================================================= */
.journey-section{ background: var(--bg); }
.journey-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.journey-card{
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 32px 40px;
  min-height: 340px;
  background: var(--paper);
  display: flex; flex-direction: column;
  position: relative;
  transition: background 0.2s;
}
.journey-card:hover{ background: var(--bg-alt); }
.jc-top{
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 28px;
}
.jc-num{
  font-family: var(--serif); font-style: normal;
  font-size: 48px; line-height: 1; color: var(--green);
  font-weight: 800; letter-spacing: -0.04em;
}
.jc-tag{
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--ink);
}
.jc-title{
  font-family: var(--serif); font-size: 26px; line-height: 1.2;
  color: var(--ink); font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.jc-body{
  font-family: var(--sans); font-size: 14px; line-height: 1.65;
  color: var(--ink-2);
  flex: 1;
}
.jc-quote{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(20,32,26,0.15);
  font-family: var(--serif); font-style: normal;
  font-size: 14px; line-height: 1.5;
  color: var(--green); font-weight: 600; letter-spacing: -0.015em;
}
.jc-list{
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.jc-list li{
  list-style: none;
  font-family: var(--sans); font-size: 13px;
  color: var(--ink-2);
  padding-left: 14px;
  position: relative;
}
.jc-list li::before{ content:'—'; position:absolute; left: 0; color: var(--green); }

/* =========================================================
   OOH mockups
   ========================================================= */
.ooh-section{ background: var(--bg); }
.ooh-hero{
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--line);
}
.ooh-hero img{
  width: 100%; height: 100%; object-fit: cover;
}
.ooh-hero .caption{
  position: absolute; bottom: 20px; left: 20px;
  padding: 8px 12px;
  background: rgba(20,32,26,0.85);
  color: var(--paper);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
}
.ooh-row{
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-bottom: 40px;
}
.ooh-card{
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
}
.ooh-card .img{ height: 320px; overflow: hidden; position: relative; }
.ooh-card .img img{ width: 100%; height: 100%; object-fit: cover; }
.ooh-card .meta{
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.ooh-card .meta .m-title{ font-family: var(--serif); font-size: 20px; color: var(--ink); font-weight: 700; letter-spacing: -0.02em; }
.ooh-card .meta .m-sub{ font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.12em; }

/* Poster mockup */
.poster-row{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 24px;
}
.poster{
  aspect-ratio: 3/4;
  background: var(--green);
  color: var(--paper);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.poster-top{
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.14em;
  color: rgba(251,248,240,0.7);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(251,248,240,0.3);
  margin-bottom: 24px;
}
.poster-headline{
  font-family: var(--serif); font-style: normal;
  font-size: 40px; line-height: 0.95;
  margin-bottom: auto; font-weight: 900; letter-spacing: -0.05em;
}
.poster-headline .accent{ color: var(--accent-yellow); }
.poster-bottom{
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid rgba(251,248,240,0.3);
}
.poster-qr{
  width: 64px; height: 64px;
  background:
    linear-gradient(45deg, var(--paper) 25%, transparent 25%, transparent 75%, var(--paper) 75%) 0 0/8px 8px,
    linear-gradient(45deg, var(--paper) 25%, transparent 25%, transparent 75%, var(--paper) 75%) 4px 4px/8px 8px,
    var(--ink);
  position: relative;
  border: 3px solid var(--paper);
}
.poster-cta{
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--paper);
  text-align: right;
}
.poster.alt{ background: var(--paper); color: var(--green); }
.poster.alt .poster-top{ color: var(--muted); border-color: rgba(30,58,46,0.25); }
.poster.alt .poster-bottom{ border-color: rgba(30,58,46,0.25); }
.poster.alt .poster-cta{ color: var(--green); }
.poster.alt .poster-qr{ border-color: var(--green); }

/* =========================================================
   LANDING (phone mockups)
   ========================================================= */
.landing-section{ background: var(--bg-alt); }
.phones-row{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 24px;
}
.phone{
  border-radius: 32px;
  background: var(--ink);
  padding: 12px;
  aspect-ratio: 9/19.5;
  position: relative;
  box-shadow: 0 24px 48px -20px rgba(20,32,26,0.35);
}
.phone .screen{
  width: 100%; height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
  position: relative;
  display: flex; flex-direction: column;
}
.phone .notch{
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 20px;
  background: var(--ink);
  border-radius: 12px;
  z-index: 2;
}
.phone .status{
  display: flex; justify-content: space-between;
  padding: 12px 20px 8px;
  font-family: var(--mono); font-size: 9px;
  color: var(--ink);
}
.phone .body{
  flex: 1;
  padding: 8px 14px 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  gap: 8px;
}
.phone-caption{
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

/* Phone 1 - hero */
.p1 .body{
  background: var(--green);
  color: var(--paper);
  padding: 20px 18px;
}
.p1 .p-brand{ font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.2em; color: rgba(251,248,240,0.7); margin-bottom: 24px; }
.p1 .p-headline{ font-family: var(--serif); font-style: normal; font-size: 26px; line-height: 1; margin-bottom: 12px; font-weight: 900; letter-spacing: -0.045em; }
.p1 .p-sub{ font-family: var(--sans); font-size: 11px; color: rgba(251,248,240,0.8); line-height: 1.5; margin-bottom: auto; }
.p1 .p-poster-img{
  height: 130px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.3), transparent),
    #2A5943 url('assets/hero_couple.jpg') center/cover;
  background-blend-mode: multiply;
  margin: 12px 0;
  border-radius: 4px;
}
.p1 .p-btn{
  background: var(--accent-yellow);
  color: var(--ink);
  padding: 12px;
  border-radius: 999px;
  text-align: center;
  font-family: var(--sans); font-weight: 700; font-size: 12px;
  letter-spacing: 0.02em;
}

/* Phone 2 - video */
.p2 .body{
  padding: 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.p2 .p-video{
  width: 100%; height: 62%;
  background: #000 url('assets/press_conference.jpg') center/cover;
  position: relative;
}
.p2 .p-video::after{
  content: '▶';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-size: 32px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.p2 .p-video-info{
  padding: 16px 18px;
  color: var(--paper);
}
.p2 .p-tag{ font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.2em; color: var(--accent-yellow); margin-bottom: 8px; }
.p2 .p-title{ font-family: var(--serif); font-style: normal; font-size: 18px; line-height: 1.2; margin-bottom: 8px; font-weight: 800; letter-spacing: -0.025em; }
.p2 .p-desc{ font-size: 10.5px; line-height: 1.55; color: rgba(251,248,240,0.7); }

/* Phone 3 - choice */
.p3 .body{ padding: 18px 16px; }
.p3 .p-brand{ font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.2em; color: var(--muted); }
.p3 .p-q{ font-family: var(--serif); font-style: normal; font-size: 22px; line-height: 1.15; margin: 14px 0 18px; color: var(--ink); font-weight: 800; letter-spacing: -0.03em; }
.p3 .p-options{ display: flex; flex-direction: column; gap: 8px; }
.p3 .p-opt{
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-family: var(--sans); font-size: 12px;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  border-radius: 6px;
}
.p3 .p-opt.active{ background: var(--green); color: var(--paper); border-color: var(--green); }
.p3 .p-opt .dot{ width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--ink); }
.p3 .p-opt.active .dot{ background: var(--accent-yellow); border-color: var(--accent-yellow); }

/* Phone 4 - declaration */
.p4 .body{
  padding: 16px;
  background: var(--paper);
}
.p4 .declaration{
  border: 2px solid var(--ink);
  padding: 20px 14px;
  height: 100%;
  display: flex; flex-direction: column;
  gap: 10px;
  position: relative;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0,0,0,0.02) 8px, rgba(0,0,0,0.02) 9px);
}
.p4 .d-stamp{
  position: absolute; top: 10px; right: 10px;
  width: 42px; height: 42px;
  border: 2px solid var(--accent-orange);
  color: var(--accent-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 8px;
  transform: rotate(-12deg);
  text-align: center;
  line-height: 1.1;
}
.p4 .d-eyebrow{ font-family: var(--mono); font-size: 8px; letter-spacing: 0.2em; color: var(--muted); }
.p4 .d-title{ font-family: var(--serif); font-size: 18px; line-height: 1.15; color: var(--ink); font-weight: 800; letter-spacing: -0.025em; }
.p4 .d-body{ font-family: var(--sans); font-size: 10.5px; line-height: 1.65; color: var(--ink-2); }
.p4 .d-target{ font-family: var(--serif); font-style: normal; font-size: 20px; color: var(--green); margin: 6px 0; font-weight: 800; letter-spacing: -0.025em; }
.p4 .d-sign{ margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line); font-family: var(--mono); font-size: 8.5px; color: var(--muted); }
.p4 .d-sign strong{ font-family: var(--serif); font-style: normal; color: var(--ink); font-size: 12px; letter-spacing: -0.015em; font-weight: 800; }

/* =========================================================
   DECLARATION (full-width scan)
   ========================================================= */
.decl-section{ background: var(--bg); }
.decl-showcase{
  display: grid; grid-template-columns: 1fr 380px; gap: 60px;
  align-items: start;
  margin-top: 24px;
}
.decl-doc{
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 56px 64px;
  position: relative;
  min-height: 560px;
  display: flex; flex-direction: column;
  gap: 20px;
  box-shadow: 24px 24px 0 -20px rgba(20,32,26,0.15);
}
.decl-stamp{
  position: absolute;
  top: 32px; right: 32px;
  width: 130px; height: 130px;
  border: 3px solid var(--accent-orange);
  color: var(--accent-orange);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  transform: rotate(-12deg);
  text-align: center;
  line-height: 1.35;
  gap: 6px;
}
.decl-stamp .big{ font-family: var(--serif); font-style: normal; font-size: 22px; letter-spacing: -0.02em; font-weight: 900; }
.decl-eyebrow{ font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); }
.decl-title{ font-family: var(--serif); font-size: 46px; line-height: 1.05; color: var(--ink); font-weight: 800; letter-spacing: -0.04em; }
.decl-title em{ font-style: normal; color: var(--green); font-weight: 800; }
.decl-body{ font-family: var(--sans); font-size: 15px; line-height: 1.7; color: var(--ink-2); max-width: 520px; }
.decl-target{
  font-family: var(--serif); font-style: normal;
  font-size: 40px; color: var(--green);
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 12px 0;
  font-weight: 900; letter-spacing: -0.04em;
}
.decl-sign{
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.decl-sign .left{ font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.12em; }
.decl-sign .right{ font-family: var(--serif); font-style: normal; font-size: 20px; color: var(--ink); font-weight: 800; letter-spacing: -0.02em; }
.decl-side{
  display: flex; flex-direction: column; gap: 32px;
}
.decl-side h4{ font-family: var(--serif); font-size: 24px; color: var(--ink); font-weight: 800; letter-spacing: -0.025em; }
.decl-side p{ font-size: 14px; line-height: 1.65; color: var(--ink-2); }
.decl-share-list{
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 8px;
}
.share-item{
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.share-item .name{ font-family: var(--sans); font-size: 14px; }
.share-item .icon{ font-family: var(--mono); font-size: 10.5px; color: var(--muted); }

/* =========================================================
   CONTENT (thumbnails)
   ========================================================= */
.content-section{ background: var(--bg); }
.content-block{ margin-bottom: 64px; }
.content-block-head{
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.content-block-head h3{
  font-family: var(--serif); font-size: 36px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.035em;
}
.content-block-head h3 em{ font-style: normal; color: var(--green); font-weight: 800; }
.content-block-head .count{ font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.14em; }

/* YouTube thumbnails */
.yt-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.yt-thumb{
  aspect-ratio: 16/9;
  background: var(--green);
  color: var(--paper);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line);
}
.yt-thumb.bg{
  background-size: cover; background-position: center;
}
.yt-thumb.bg::before{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30,58,46,0.75) 20%, rgba(20,32,26,0.5));
}
.yt-thumb > *{ position: relative; z-index: 2; }
.yt-thumb .yt-top{ display: flex; justify-content: space-between; font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; color: rgba(251,248,240,0.8); }
.yt-thumb .yt-title{
  font-family: var(--serif); font-style: normal;
  font-size: 22px; line-height: 1.05;
  font-weight: 800; letter-spacing: -0.035em;
}
.yt-thumb .yt-bottom{
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em;
  color: rgba(251,248,240,0.7);
}
.yt-thumb.yellow{ background: var(--accent-yellow); color: var(--ink); }
.yt-thumb.yellow .yt-top, .yt-thumb.yellow .yt-bottom{ color: rgba(20,32,26,0.65); }
.yt-thumb.orange{ background: var(--accent-orange); color: var(--paper); }
.yt-thumb.orange .yt-top, .yt-thumb.orange .yt-bottom{ color: rgba(255,255,255,0.75); }
.yt-thumb.paper{ background: var(--paper); color: var(--ink); border-color: var(--line); }
.yt-thumb.paper .yt-top, .yt-thumb.paper .yt-bottom{ color: var(--muted); }

/* Reels vertical */
.reels-grid{
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.reel{
  aspect-ratio: 9/16;
  background: var(--green);
  color: var(--paper);
  padding: 14px 12px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
}
.reel.bg{ background-size: cover; background-position: center; }
.reel.bg::before{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,32,26,0.4) 0%, transparent 40%, rgba(20,32,26,0.7));
}
.reel > *{ position: relative; z-index: 2; }
.reel .r-top{ display: flex; justify-content: space-between; font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.14em; color: rgba(251,248,240,0.85); }
.reel .r-title{ font-family: var(--serif); font-style: normal; font-size: 16px; line-height: 1.1; font-weight: 800; letter-spacing: -0.03em; }
.reel .r-bottom{ font-family: var(--mono); font-size: 8.5px; color: rgba(251,248,240,0.75); letter-spacing: 0.12em; }
.reel.yellow{ background: var(--accent-yellow); color: var(--ink); }
.reel.paper{ background: var(--paper); color: var(--ink); }
.reel.orange{ background: var(--accent-orange); color: var(--paper); }

/* Feed 3-col instagram grid */
.feed-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  max-width: 540px;
  border: 1px solid var(--line);
}
.feed-tile{
  aspect-ratio: 1;
  background: var(--green);
  color: var(--paper);
  padding: 12px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: var(--mono); font-size: 8px;
}
.feed-tile.bg{ background-size: cover; }
.feed-tile.bg::before{ content:''; position:absolute; inset:0; background: rgba(20,32,26,0.3); }
.feed-tile > *{ position: relative; }
.feed-tile .ft-title{
  font-family: var(--serif); font-style: normal; font-size: 17px; line-height: 1.05;
  font-weight: 800; letter-spacing: -0.03em;
}
.feed-tile.yellow{ background: var(--accent-yellow); color: var(--ink); }
.feed-tile.paper{ background: var(--paper); color: var(--ink); }
.feed-tile.orange{ background: var(--accent-orange); color: var(--paper); }

.content-layout{
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px;
  align-items: start;
}

/* =========================================================
   TIMELINE (gantt)
   ========================================================= */
.timeline-section{ background: var(--paper); }
.timeline-wrap{
  margin-top: 32px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.tl-header{
  display: grid;
  grid-template-columns: 240px repeat(34, 1fr);
  background: var(--green);
  color: var(--paper);
}
.tl-header .h-cell{
  padding: 10px 6px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-right: 1px solid rgba(251,248,240,0.15);
  text-align: center;
}
.tl-header .h-cell.week{ background: rgba(0,0,0,0.15); }
.tl-header .h-cell:first-child{ text-align: left; padding-left: 20px; }

.tl-row{
  display: grid;
  grid-template-columns: 240px repeat(34, 1fr);
  border-top: 1px solid var(--line);
  min-height: 64px;
  align-items: stretch;
}
.tl-row .r-label{
  padding: 14px 20px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg);
}
.tl-row .r-label .lbl-title{
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  color: var(--ink);
}
.tl-row .r-label .lbl-sub{
  font-family: var(--mono); font-size: 9.5px;
  color: var(--muted); margin-top: 4px; letter-spacing: 0.1em;
}
.tl-row .track{
  grid-column: 2 / span 34;
  position: relative;
  background:
    linear-gradient(90deg, rgba(20,32,26,0.06) 1px, transparent 1px) 0 0 / calc(100% / 34) 100%;
}
.tl-bar{
  position: absolute;
  top: 12px; bottom: 12px;
  border-radius: 4px;
  padding: 0 12px;
  display: flex; align-items: center;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  color: var(--paper);
  white-space: nowrap;
  overflow: hidden;
}
.tl-bar.pre{ background: var(--accent-yellow); color: var(--ink); }
.tl-bar.launch{ background: var(--green); }
.tl-bar.amp{ background: var(--accent-orange); }
.tl-bar.conv{ background: var(--ink); }
.tl-bar.stripe{
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 6px, rgba(255,255,255,0.1) 6px, rgba(255,255,255,0.1) 12px);
}
.tl-legend{
  display: flex; gap: 24px; margin-top: 24px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--ink);
}
.tl-legend .swatch{ display: inline-block; width: 14px; height: 14px; margin-right: 8px; vertical-align: middle; }

/* =========================================================
   MEDIA plan
   ========================================================= */
.media-section{ background: var(--bg); }
.media-grid{
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  align-items: center;
}
.media-total{
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--muted);
  margin-bottom: 16px;
}
.media-figure{
  font-family: var(--serif); font-style: normal;
  font-size: clamp(96px, 12vw, 160px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.06em;
  margin-bottom: 12px;
  font-weight: 900;
}
.media-figure .unit{ font-size: 0.28em; color: var(--green); font-style: normal; font-family: var(--sans); font-weight: 600; margin-left: 12px; letter-spacing: 0; }
.media-note{ font-size: 15px; line-height: 1.6; color: var(--ink-2); max-width: 480px; }
.media-note-sm{ font-family: var(--mono); font-size: 10.5px; color: var(--muted); margin-top: 24px; letter-spacing: 0.1em; }

.media-bars{
  display: flex; flex-direction: column; gap: 32px;
}
.mb-item{}
.mb-head{
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.mb-head .name{ font-family: var(--serif); font-size: 20px; color: var(--ink); font-weight: 700; letter-spacing: -0.02em; }
.mb-head .amount{ font-family: var(--mono); font-size: 13px; color: var(--ink); letter-spacing: 0.06em; }
.mb-bar{
  height: 8px; background: rgba(20,32,26,0.08); position: relative; overflow: hidden;
}
.mb-fill{
  height: 100%; background: var(--green);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.mb-fill.pct-77{ width: 77.7%; }
.mb-fill.pct-22{ width: 22.2%; background: var(--accent-yellow); }
.mb-meta{
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.1em;
}

/* =========================================================
   CHANNEL donut
   ========================================================= */
.channel-section{ background: var(--paper); }
.channel-grid{
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: center;
}
.donut{
  width: 380px; height: 380px;
  position: relative;
  margin: 0 auto;
}
.donut svg{ width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-center{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.donut-center .dc-label{ font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; color: var(--muted); }
.donut-center .dc-val{ font-family: var(--serif); font-style: normal; font-size: 52px; color: var(--ink); line-height: 1; margin-top: 4px; font-weight: 900; letter-spacing: -0.04em; }
.donut-center .dc-sub{ font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.14em; margin-top: 6px; }

.channel-list{ display: flex; flex-direction: column; gap: 28px; }
.ch-item{
  display: grid; grid-template-columns: 60px 1fr auto; gap: 20px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(20,32,26,0.15);
}
.ch-item:last-child{ border-bottom: none; }
.ch-pct{
  font-family: var(--serif); font-style: normal; font-size: 44px; color: var(--ink); line-height: 1;
  font-weight: 900; letter-spacing: -0.04em;
}
.ch-name{ font-family: var(--serif); font-size: 20px; color: var(--ink); font-weight: 800; letter-spacing: -0.025em; }
.ch-desc{ font-family: var(--sans); font-size: 13px; color: var(--ink-2); line-height: 1.5; margin-top: 4px; max-width: 380px; }
.ch-dot{
  width: 14px; height: 14px; border-radius: 50%;
}
.ch-dot.g{ background: var(--green); }
.ch-dot.y{ background: var(--accent-yellow); }
.ch-dot.o{ background: var(--accent-orange); }

/* =========================================================
   RETARGET
   ========================================================= */
.retarget-section{ background: var(--bg); }
.retarget-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.rt-card{
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 28px 36px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 320px;
}
.rt-card .rt-num{ font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--green); }
.rt-card .rt-audience{ font-family: var(--serif); font-size: 20px; color: var(--ink); line-height: 1.2; font-weight: 800; letter-spacing: -0.025em; }
.rt-card .rt-copy{
  padding: 16px 18px;
  background: var(--bg-alt);
  border-left: 3px solid var(--green);
  font-family: var(--serif); font-style: normal;
  font-size: 15px; line-height: 1.5;
  color: var(--ink);
  margin-top: auto;
  font-weight: 600; letter-spacing: -0.015em;
}
.rt-card .rt-actions{ display: flex; flex-direction: column; gap: 6px; }
.rt-action{
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  padding: 6px 0;
  border-bottom: 1px solid rgba(20,32,26,0.1);
  display: flex; justify-content: space-between;
}
.rt-action:last-child{ border-bottom: none; }
.rt-action span:last-child{ color: var(--green); }

/* =========================================================
   KPI
   ========================================================= */
.kpi-section{ background: var(--green); color: var(--paper); }
.kpi-section .section-num{ color: var(--accent-yellow); }
.kpi-section .section-title-block h2{ color: var(--paper); }
.kpi-section .section-title-block h2 em{ color: var(--accent-yellow); }
.kpi-section .section-title-block .kicker{ color: rgba(251,248,240,0.6); }
.kpi-section .section-title-block .subtitle{ color: rgba(251,248,240,0.85); }

.kpi-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.kpi-col h3{
  font-family: var(--serif); font-style: normal;
  font-size: 32px; margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(251,248,240,0.3);
  color: var(--paper);
  font-weight: 800; letter-spacing: -0.03em;
}
.kpi-list{ display: flex; flex-direction: column; gap: 0; }
.kpi-item{
  display: grid; grid-template-columns: 40px 1fr auto; gap: 16px; align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(251,248,240,0.15);
  font-family: var(--sans); font-size: 14px;
  color: rgba(251,248,240,0.9);
}
.kpi-item .k-num{ font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: rgba(251,248,240,0.55); }
.kpi-item .k-tag{ font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; color: var(--accent-yellow); }

/* =========================================================
   PRODUCT lineup
   ========================================================= */
.product-section{ background: var(--paper); }
.product-hero{
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.product-hero .p-copy h3{
  font-family: var(--serif); font-size: 48px; font-weight: 800; line-height: 1.05;
  color: var(--ink); margin-bottom: 20px; letter-spacing: -0.04em;
}
.product-hero .p-copy h3 em{ font-style: normal; color: var(--green); font-weight: 800; }
.product-hero .p-copy p{ font-size: 16px; line-height: 1.7; color: var(--ink-2); max-width: 520px; }

.product-lineup{
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  margin-bottom: 32px;
}
.product-card{
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 28px 20px 24px;
  display: flex; flex-direction: column;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.product-card .pc-tag{
  position: absolute; top: 16px; right: 16px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  padding: 4px 8px;
  background: var(--ink); color: var(--paper);
}
.product-card .pc-icon{
  width: 60px; height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
}
.product-card.g .pc-icon{ background: linear-gradient(135deg, #2A5943, #1E3A2E); }
.product-card.o .pc-icon{ background: linear-gradient(135deg, #F7A55A, #E4691E); }
.product-card.y .pc-icon{ background: linear-gradient(135deg, #F7DA5E, #D4A020); }
.product-card.o2 .pc-icon{ background: linear-gradient(135deg, #F7A55A, #E4691E); }
.product-card.b .pc-icon{ background: linear-gradient(135deg, #C3D8E0, #7C99A6); }

.product-card .pc-bottle{
  width: 46px; height: 128px;
  border-radius: 6px 6px 4px 4px;
  margin: 0 auto 20px;
  position: relative;
}
.product-card .pc-bottle::before{
  content:''; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 20px; border-radius: 3px;
  background: inherit;
  filter: brightness(0.75);
}
.product-card.g .pc-bottle{ background: linear-gradient(180deg, #2A5943 0%, #2A5943 82%, #F4C13C 82%, #F4C13C 100%); }
.product-card.o .pc-bottle{ background: linear-gradient(180deg, #E4691E 0%, #E4691E 82%, #C3D8E0 82%, #C3D8E0 100%); }
.product-card.y .pc-bottle{ background: linear-gradient(180deg, #F4C13C 0%, #F4C13C 82%, #2A5943 82%, #2A5943 100%); }
.product-card.o2 .pc-bottle{ background: linear-gradient(180deg, #E4691E 0%, #E4691E 82%, #C3D8E0 82%, #C3D8E0 100%); }
.product-card.b .pc-bottle{ background: linear-gradient(180deg, #C3D8E0 0%, #C3D8E0 82%, #C3D8E0 100%); }
.product-card .pc-line{
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  color: var(--muted); text-align: center; margin-bottom: 8px;
}
.product-card .pc-name{
  font-family: var(--serif); font-size: 18px; line-height: 1.2;
  color: var(--ink); text-align: center; margin-bottom: 4px;
  font-weight: 800; letter-spacing: -0.025em;
}
.product-card .pc-sub{
  font-family: var(--sans); font-size: 11.5px;
  color: var(--muted); text-align: center; margin-bottom: 16px;
}
.product-card .pc-tags{
  display: flex; flex-wrap: wrap; gap: 4px; justify-content: center;
  margin-top: auto;
}
.product-card .pc-tags span{
  font-family: var(--mono); font-size: 9px;
  padding: 3px 6px;
  background: var(--paper); border: 1px solid rgba(20,32,26,0.2);
  color: var(--ink-2);
  letter-spacing: 0.06em;
}

.product-note{
  padding: 24px;
  background: var(--bg-alt);
  border-left: 3px solid var(--green);
  font-family: var(--sans); font-size: 13.5px;
  line-height: 1.7; color: var(--ink-2);
}
.product-note strong{ color: var(--ink); font-weight: 600; }

/* =========================================================
   ENDING
   ========================================================= */
.ending-section{
  background: var(--ink);
  color: var(--paper);
  min-height: 100vh;
  padding: 96px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.ending-bg{
  position: absolute; inset: 0;
  background: url('assets/female_idol.jpg') right center/cover;
  opacity: 0.25;
  filter: grayscale(0.4);
}
.ending-bg::after{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--ink) 30%, transparent 80%);
}
.ending-inner{ position: relative; z-index: 2; max-width: 900px; }
.ending-eyebrow{
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: rgba(251,248,240,0.6);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(251,248,240,0.3);
  margin-bottom: 60px;
  display: inline-block;
  padding-right: 40px;
}
.ending-copy{
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 1;
  color: var(--paper);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.055em;
}
.ending-copy .accent{ color: var(--accent-yellow); }
.ending-footer{
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 40px;
  margin-top: 80px;
  border-top: 1px solid rgba(251,248,240,0.3);
}
.ending-footer .fe-left{
  font-family: var(--serif); font-style: normal; font-size: 28px; font-weight: 800; letter-spacing: -0.03em;
}
.ending-footer .fe-right{
  font-family: var(--mono); font-size: 10.5px;
  color: rgba(251,248,240,0.6); letter-spacing: 0.14em;
  text-align: right;
}
.ending-footer .fe-right div + div{ margin-top: 6px; }

/* =========================================================
   Small tables
   ========================================================= */
.schedule-table{
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  margin-top: 24px;
}
.schedule-table th, .schedule-table td{
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(20,32,26,0.15);
  vertical-align: top;
}
.schedule-table thead th{
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.schedule-table .st-phase{ font-family: var(--serif); font-size: 18px; color: var(--ink); font-style: normal; font-weight: 700; letter-spacing: -0.02em; }
.schedule-table .st-date{ font-family: var(--mono); font-size: 12px; color: var(--green); letter-spacing: 0.08em; }
.schedule-table .st-goal{ font-size: 14px; color: var(--ink-2); line-height: 1.55; }

/* =========================================================
   Section num variants
   ========================================================= */
.section-num.yellow{ color: var(--accent-yellow); }

/* Small helpers */
.spacer-lg{ height: 48px; }
.spacer-xl{ height: 80px; }
