/* ============================================================
   POOMARU — Better Living for Pets
   브랜드 홈페이지 디자인 시스템
   팔레트: 로고 올리브브라운 × 웜크림 × 패키지 옐로
   ============================================================ */
:root {
  --cream: #f6f1e7;
  --paper: #fbf8f2;
  --sand: #ece4d3;
  --ink: #40382b;
  --ink-soft: #6f6553;
  --olive: #7d6b3f;      /* 로고 컬러 */
  --olive-deep: #5f5130;
  --yellow: #f2c230;     /* 패키지 옐로 */
  --yellow-soft: #fbe9b7;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(64, 56, 43, 0.10);
  --shadow-sm: 0 8px 24px rgba(64, 56, 43, 0.08);
  --font-round: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', sans-serif;
  --font-body: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* NOTE: do NOT put overflow-x:hidden here — it makes overflow-y compute to auto,
   turning <html> into a scroll container, which breaks position:fixed (the mobile
   nav overlay) on iOS Safari. Horizontal overflow is prevented at the source
   instead (see .gallery width:100%). */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
  font-size: 15.5px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── 타이포 ── */
.eyebrow {
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--olive);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--yellow); border-radius: 2px; }
h1, h2, h3 { font-family: var(--font-round); font-weight: 700; line-height: 1.5; }
.sec-title { font-size: clamp(26px, 4vw, 38px); margin: 14px 0 18px; }
.sec-lead { color: var(--ink-soft); max-width: 560px; }

/* ── 헤더 ── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease;
  padding: 14px 0;
  /* 히어로 우측이 생영상이므로 기본 상태에도 옅은 크림 페이드로 내비 가독성 확보 */
  background: linear-gradient(180deg, rgba(246,241,231,.94) 0%, rgba(246,241,231,.55) 62%, rgba(246,241,231,0) 100%);
}
.site-header.scrolled { background: rgba(251, 248, 242, 0.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 rgba(64,56,43,.07); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: auto; }
.brand-word { font-family: var(--font-round); font-weight: 900; letter-spacing: .14em; font-size: 19px; color: var(--olive-deep); }
.brand-word small { display: block; font-size: 8.5px; letter-spacing: .22em; color: var(--olive); font-weight: 700; }
.gnav { display: flex; align-items: center; gap: 30px; }
.gnav a { font-family: var(--font-round); font-weight: 700; font-size: 13.5px; letter-spacing: .08em; position: relative; padding: 4px 0; }
.gnav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--yellow); border-radius: 2px; transition: width .3s; }
.gnav a:hover::after { width: 100%; }
.btn-amazon-nav {
  background: var(--olive); color: #fff !important; border-radius: 999px;
  padding: 9px 20px !important; font-size: 13px !important;
  display: inline-flex; align-items: center; gap: 7px;
  transition: transform .25s, background .25s;
}
.btn-amazon-nav::after { display: none; }
.btn-amazon-nav:hover { background: var(--olive-deep); transform: translateY(-2px); }
.nav-toggle { display: none; }

/* ── 히어로 — 좌 카피 패널 / 우 영상 분할.
   영상에 피사체·텍스트가 구워져 있어 오버레이 대신 분할(와이드 화면에서도 절대 안 겹침) ── */
.hero {
  position: relative; min-height: 88vh; overflow: hidden;
  display: grid; grid-template-columns: minmax(460px, 44%) 1fr;
}
.hero-media { position: relative; }
.hero-media video, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(246,241,231,0) 14%);
}
.hero-in {
  position: relative; z-index: 2; display: flex; align-items: center;
  padding: 150px 48px 110px 0;
}
.hero-in .hero-copy { margin-left: clamp(24px, 6.5vw, 130px); }
.hero-copy .en {
  font-family: var(--font-round); font-weight: 700; letter-spacing: .3em;
  color: var(--olive); font-size: 13px; text-transform: uppercase; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-copy h1 { font-size: clamp(34px, 5.6vw, 58px); line-height: 1.42; letter-spacing: .04em; }
.hero-copy h1 .accent { background: linear-gradient(transparent 68%, var(--yellow-soft) 68%); padding: 0 2px; }
.hero-copy p { margin-top: 22px; max-width: 460px; color: var(--ink-soft); font-size: 15px; }
.hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  font-family: var(--font-round); font-weight: 700; font-size: 14.5px; letter-spacing: .06em;
  border-radius: 999px; padding: 15px 30px; display: inline-flex; align-items: center; gap: 9px;
  transition: transform .25s, box-shadow .25s, background .25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--olive); color: #fff; box-shadow: 0 10px 26px rgba(125,107,63,.32); }
.btn-primary:hover { transform: translateY(-3px); background: var(--olive-deep); }
.btn-ghost { background: rgba(255,255,255,.75); color: var(--olive-deep); border: 1.5px solid rgba(125,107,63,.35); backdrop-filter: blur(4px); }
.btn-ghost:hover { transform: translateY(-3px); background: #fff; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  font-family: var(--font-round); font-size: 10.5px; letter-spacing: .3em; color: var(--olive);
  writing-mode: vertical-rl; display: flex; align-items: center; gap: 8px;
}
.scroll-cue::after { content: ''; width: 1.5px; height: 44px; background: linear-gradient(var(--olive), transparent); animation: cueDrop 1.8s ease infinite; }
@keyframes cueDrop { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(1); opacity: 0; } }

/* ── 마퀴 스트립 ── */
/* promise 섹션이 -48px 겹쳐 올라오므로 아래쪽 여백을 확보해 스트립이 가려지지 않게 한다 */
.marquee { background: var(--olive); color: var(--cream); overflow: hidden; padding: 15px 0 64px; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: slide 26s linear infinite; }
.marquee-track span {
  font-family: var(--font-round); font-weight: 700; letter-spacing: .26em; font-size: 12.5px;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 48px; white-space: nowrap;
}
.marquee-track span::after { content: '🐾'; font-size: 13px; filter: grayscale(1) brightness(2.4); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ── 섹션 공통 ── */
section { position: relative; }
.sec-pad { padding: 110px 0; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── 약속(브랜드 가치) ── */
.promise { background: var(--paper); border-radius: 48px 48px 0 0; margin-top: -48px; z-index: 3; }
/* 인트로: 좌 카피 / 우 실사(밋밋함 해소). 카드는 아래 3열 유지 */
.promise-intro { display: grid; grid-template-columns: 1fr 0.86fr; gap: 56px; align-items: center; }
.promise-photo { position: relative; }
.promise-photo img { border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(1.4deg); }
.promise-photo .tape {
  position: absolute; top: -13px; left: 44px; width: 104px; height: 28px;
  background: rgba(242,194,48,.5); border-radius: 3px; transform: rotate(-3deg); z-index: 2;
}
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.promise-card {
  background: var(--cream); border-radius: var(--radius); padding: 38px 30px 34px;
  border: 1.5px solid rgba(125,107,63,.10); position: relative; transition: transform .3s, box-shadow .3s;
}
.promise-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.promise-card .num {
  font-family: var(--font-round); font-weight: 900; font-size: 13px; letter-spacing: .18em;
  color: var(--olive); opacity: .55;
}
.promise-card .icon {
  width: 58px; height: 58px; border-radius: 18px; background: var(--yellow-soft);
  display: flex; align-items: center; justify-content: center; margin: 16px 0 18px;
}
.promise-card .icon svg { width: 30px; height: 30px; stroke: var(--olive-deep); }
.promise-card h3 { font-size: 19px; margin-bottom: 10px; }
.promise-card p { font-size: 13.8px; color: var(--ink-soft); }

/* ── 라인업 ── */
.lineup { background: var(--paper); }
.lineup-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.lineup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid rgba(125,107,63,.10); display: flex; flex-direction: column;
  transition: transform .35s, box-shadow .35s;
}
.product-card.is-link:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-thumb { position: relative; aspect-ratio: 1 / 0.92; overflow: hidden; background: var(--sand); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card.is-link:hover .product-thumb img { transform: scale(1.05); }
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-round); font-weight: 700; font-size: 11px; letter-spacing: .14em;
  padding: 6px 14px; border-radius: 999px;
}
.badge.sale { background: var(--yellow); color: var(--olive-deep); }
.badge.soon { background: rgba(64,56,43,.82); color: var(--cream); }
.thumb-soon {
  width: 100%; height: 100%; display: flex; flex-direction: column; gap: 10px;
  align-items: center; justify-content: center; color: var(--olive);
  background:
    radial-gradient(circle at 20% 25%, rgba(242,194,48,.16), transparent 42%),
    radial-gradient(circle at 82% 78%, rgba(125,107,63,.12), transparent 45%),
    var(--sand);
}
.thumb-soon svg { width: 54px; height: 54px; opacity: .75; }
.thumb-soon span { font-family: var(--font-round); font-weight: 700; letter-spacing: .22em; font-size: 11.5px; }
.product-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body .en-name { font-family: var(--font-round); font-weight: 700; font-size: 12px; letter-spacing: .2em; color: var(--olive); text-transform: uppercase; }
.product-body h3 { font-size: 18.5px; }
.product-body .tag { font-size: 12px; color: var(--ink-soft); }
.product-body p { font-size: 13.5px; color: var(--ink-soft); flex: 1; }
.product-body .more {
  margin-top: 14px; font-family: var(--font-round); font-weight: 700; font-size: 13.5px;
  color: var(--olive-deep); display: inline-flex; align-items: center; gap: 7px;
}
.product-body .more svg { transition: transform .3s; }
.product-card.is-link:hover .more svg { transform: translateX(5px); }

/* ── なぜヤギミルク(숫자 팩트) ── */
.milk-facts { background: var(--cream); }
.serif { font-family: 'Shippori Mincho', 'Hiragino Mincho ProN', serif; }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.fact-card {
  background: #fff; border-radius: var(--radius); padding: 40px 30px 34px; text-align: center;
  border: 1.5px solid rgba(125,107,63,.10); position: relative; overflow: hidden;
}
.fact-card::before {
  content: ''; position: absolute; top: -34px; right: -34px; width: 110px; height: 110px;
  border-radius: 50%; background: var(--yellow-soft); opacity: .55;
}
.fact-card .big {
  font-family: 'Shippori Mincho', serif; font-weight: 600; color: var(--olive-deep);
  font-size: clamp(40px, 5vw, 56px); line-height: 1.1; position: relative;
}
.fact-card .big small { font-size: .38em; font-family: var(--font-round); font-weight: 700; }
.fact-card h3 { font-size: 16.5px; margin: 14px 0 8px; position: relative; }
.fact-card p { font-size: 13px; color: var(--ink-soft); position: relative; }
.facts-note { font-size: 11.5px; color: var(--ink-soft); margin-top: 26px; text-align: center; opacity: .8; }
.persona-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.persona-chips span {
  font-family: var(--font-round); font-weight: 700; font-size: 12.5px;
  background: #fff; border: 1.5px solid rgba(125,107,63,.2); color: var(--olive-deep);
  padding: 8px 16px; border-radius: 999px;
}

/* ── 피처(대표상품) ── */
.feature-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.feature-photo { position: relative; }
.feature-photo .main {
  border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(-1.6deg);
}
.feature-photo .tape {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(2deg);
  width: 110px; height: 30px; background: rgba(242,194,48,.55); border-radius: 3px; z-index: 2;
}
.feature-points { margin-top: 26px; display: grid; gap: 12px; }
.feature-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.feature-points .check {
  flex: none; width: 24px; height: 24px; margin-top: 4px; border-radius: 50%;
  background: var(--yellow); color: var(--olive-deep); font-weight: 900; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}

/* ── 与え方(사용법 2스텝) ── */
.howto { background: var(--olive-deep); color: var(--cream); }
.howto .eyebrow { color: var(--yellow); }
.howto .eyebrow::before { background: var(--yellow); }
.howto .sec-lead { color: rgba(246,241,231,.75); }
.howto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 52px; }
.howto-card {
  background: rgba(246,241,231,.06); border: 1.5px solid rgba(246,241,231,.16);
  border-radius: var(--radius); padding: 38px 32px;
}
.howto-card .step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--yellow); color: var(--olive-deep);
  font-family: var(--font-round); font-weight: 900; font-size: 18px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.howto-card h3 { font-size: 21px; margin-bottom: 10px; color: var(--cream); }
.howto-card p { font-size: 14px; color: rgba(246,241,231,.78); }
.howto-note {
  margin-top: 26px; text-align: center; font-family: var(--font-round); font-weight: 700;
  font-size: 13.5px; color: rgba(246,241,231,.85);
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.howto-note .spoon {
  background: var(--yellow); color: var(--olive-deep); border-radius: 999px; padding: 6px 16px; font-size: 12.5px;
}

/* ── お客様の声(Amazon 리뷰 테마) — 브랜드 레벨 사회적 증명 ── */
.voice { background: var(--olive-deep); color: var(--cream); }
.voice .eyebrow { color: var(--yellow); }
.voice .eyebrow::before { background: var(--yellow); }
.voice .sec-lead { color: rgba(246,241,231,.75); }
.voice-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.rating-box { text-align: center; flex: none; }
.rating-box .stars { color: var(--yellow); font-size: 22px; letter-spacing: 4px; }
.rating-box .num { font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: 54px; line-height: 1.1; }
.rating-box .num small { font-size: .38em; font-family: var(--font-round); font-weight: 700; opacity: .7; }
.rating-box .src { font-size: 11px; opacity: .65; margin-top: 6px; }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.voice-card {
  background: rgba(246,241,231,.06); border: 1.5px solid rgba(246,241,231,.16);
  border-radius: var(--radius); padding: 34px 28px;
}
.voice-card .theme {
  font-family: var(--font-round); font-weight: 700; font-size: 11.5px; letter-spacing: .14em;
  color: var(--olive-deep); background: var(--yellow); border-radius: 999px; padding: 5px 14px; display: inline-block;
}
.voice-card h3 { font-size: 18px; margin: 16px 0 8px; color: var(--cream); }
.voice-card p { font-size: 13.5px; color: rgba(246,241,231,.78); }
.voice-note { margin-top: 26px; font-size: 11.5px; color: rgba(246,241,231,.55); text-align: center; }
.voice-cta { text-align: center; margin-top: 20px; }
.voice-cta a {
  font-family: var(--font-round); font-weight: 700; font-size: 14px; color: var(--yellow);
  border-bottom: 2px solid rgba(242,194,48,.5); padding-bottom: 3px; transition: border-color .25s;
}
.voice-cta a:hover { border-color: var(--yellow); }

/* ── お知らせ(News) ── */
.news-list { max-width: 760px; margin: 46px auto 0; display: grid; gap: 0; }
.news-list li { border-bottom: 1px solid rgba(125,107,63,.15); }
.news-list li:first-child { border-top: 1px solid rgba(125,107,63,.15); }
.news-item { display: flex; gap: 22px; align-items: baseline; padding: 20px 8px; }
.news-item .date {
  font-family: var(--font-round); font-weight: 700; font-size: 12px; letter-spacing: .08em;
  color: var(--olive); flex: none; min-width: 84px;
}
.news-item .cat {
  flex: none; font-family: var(--font-round); font-weight: 700; font-size: 10.5px; letter-spacing: .1em;
  background: var(--yellow-soft); color: var(--olive-deep); border-radius: 999px; padding: 4px 12px;
}
.news-item .txt { font-size: 14px; }

/* ── 갤러리 풀블리드 — 원본(2:1) 비율 유지로 인물 머리 잘림 방지. 좁은 화면만 최소높이+상단 우선 크롭 ── */
/* width:100% pins the inline size so aspect-ratio can't back-compute an 800px
   width from min-height:400px on narrow screens (that overflowed the viewport). */
.gallery { position: relative; width: 100%; aspect-ratio: 2 / 1; min-height: 400px; display: flex; align-items: flex-end; overflow: hidden; }
.gallery img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.gallery::after { content: ''; position: absolute; inset: 0; background: linear-gradient(185deg, transparent 40%, rgba(46,39,25,.62)); }
.gallery-copy { position: relative; z-index: 2; color: var(--cream); padding: 0 0 76px; }
.gallery-copy .jp { font-family: 'Shippori Mincho', 'Hiragino Mincho ProN', serif; font-weight: 600; font-size: clamp(22px, 3.4vw, 34px); line-height: 1.85; letter-spacing: .08em; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.gallery-copy .en { letter-spacing: .3em; font-size: 11.5px; text-transform: uppercase; opacity: .85; margin-top: 14px; font-family: var(--font-round); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 46px auto 0; display: grid; gap: 14px; }
.faq-list details {
  background: #fff; border-radius: 16px; border: 1.5px solid rgba(125,107,63,.12);
  padding: 20px 26px; transition: box-shadow .3s;
}
.faq-list details[open] { box-shadow: var(--shadow-sm); }
.faq-list summary {
  cursor: pointer; list-style: none; font-family: var(--font-round); font-weight: 700;
  font-size: 15px; display: flex; align-items: center; gap: 14px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { content: 'Q'; color: var(--yellow); font-weight: 900; font-size: 17px; }
.faq-list details p { margin-top: 12px; padding-left: 30px; font-size: 14px; color: var(--ink-soft); }

/* ── CTA 밴드 ── */
.cta-band { background: var(--yellow-soft); }
.cta-band .in { text-align: center; padding: 90px 24px; }
.cta-band h2 { font-size: clamp(24px, 3.6vw, 34px); }
.cta-band p { color: var(--ink-soft); margin: 14px 0 30px; }

/* ── 푸터 ── */
.site-footer { background: var(--olive-deep); color: rgba(246,241,231,.82); padding: 64px 0 34px; }
.footer-grid { display: flex; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.footer-brand img { height: 52px; filter: brightness(0) invert(0.94); }
.footer-brand p { font-size: 12.5px; margin-top: 14px; letter-spacing: .06em; }
.footer-nav { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.footer-nav a { font-family: var(--font-round); font-weight: 700; font-size: 13px; opacity: .85; transition: opacity .25s; }
.footer-nav a:hover { opacity: 1; }
.copyright { text-align: center; font-size: 11.5px; opacity: .55; margin-top: 44px; letter-spacing: .1em; }

/* ============================================================
   상품 상세 (goat-milk)
   ============================================================ */
.pd-hero { padding: 150px 0 80px; background: var(--paper); }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pd-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pd-info .crumb { font-size: 12px; color: var(--ink-soft); margin-bottom: 18px; display: flex; gap: 8px; align-items: center; }
.pd-info .crumb a:hover { color: var(--olive); }
.pd-info .en-name { font-family: var(--font-round); font-weight: 700; letter-spacing: .22em; color: var(--olive); font-size: 13px; text-transform: uppercase; }
.pd-info h1 { font-size: clamp(28px, 4vw, 40px); margin: 10px 0 6px; }
.pd-info .tag { color: var(--ink-soft); font-size: 13.5px; }
.pd-info .lead { margin: 22px 0 26px; font-size: 15px; }
.pd-specs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.pd-specs span {
  font-family: var(--font-round); font-weight: 700; font-size: 12px; letter-spacing: .06em;
  background: #fff; border: 1.5px solid rgba(125,107,63,.18); color: var(--olive-deep);
  border-radius: 999px; padding: 7px 16px;
}
.buy-box { background: #fff; border: 1.5px solid rgba(125,107,63,.14); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.buy-box .label { font-family: var(--font-round); font-weight: 700; font-size: 13px; letter-spacing: .1em; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.buy-box .label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.buy-btns { display: grid; gap: 12px; }
.btn-buy {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-radius: 14px; padding: 16px 20px; font-family: var(--font-round); font-weight: 700;
  background: #ff9900; color: #1a1a1a; font-size: 15px;
  transition: transform .25s, box-shadow .25s, filter .25s;
  box-shadow: 0 8px 20px rgba(255,153,0,.3);
}
.btn-buy:hover { transform: translateY(-3px); filter: brightness(1.05); }
.btn-buy.alt { background: #fff; border: 2px solid #ff9900; box-shadow: none; }
.btn-buy .amz { display: inline-flex; align-items: center; gap: 9px; }
.btn-buy .amz svg { width: 20px; height: 20px; }
.btn-buy small { font-weight: 700; font-size: 11.5px; opacity: .7; }
.buy-note { font-size: 11.5px; color: var(--ink-soft); margin-top: 12px; }

.pd-sections { background: var(--cream); padding: 90px 0 30px; }
.pd-sections .wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.pd-sections img { border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 34px; }
.pd-cta-fixed {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(251,248,242,.94); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(125,107,63,.14); padding: 12px 18px;
  display: none; gap: 10px;
}
.pd-cta-fixed .btn-buy { flex: 1; padding: 13px 16px; font-size: 13.5px; justify-content: center; }

/* ── 반응형 ── */
@media (max-width: 980px) {
  .promise-grid, .lineup-grid, .facts-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid, .howto-grid, .pd-grid, .promise-intro { grid-template-columns: 1fr; gap: 44px; }
  .promise-photo { max-width: 460px; margin: 0 auto; }
  .voice-grid { grid-template-columns: 1fr; }
  /* 히어로: 세로 스택 — 영상 밴드 위, 카피 아래 */
  .hero { grid-template-columns: 1fr; min-height: unset; }
  .hero-media { order: -1; height: 46vh; min-height: 300px; }
  .hero-media::after { background: linear-gradient(180deg, rgba(246,241,231,0) 72%, var(--cream) 100%); }
  .hero-in { padding: 44px 24px 72px; }
  .hero-in .hero-copy { margin-left: 0; }
  .scroll-cue { display: none; }
}
@media (max-width: 720px) {
  body { font-size: 14.5px; }
  .sec-pad { padding: 76px 0; }
  /* visibility:hidden makes the closed overlay bulletproof — even if a browser quirk
     under-shifts translateY, the links stay invisible & non-interactive (no leak into header). */
  .gnav { position: fixed; inset: 0; background: var(--paper); flex-direction: column; justify-content: center; gap: 34px; transform: translateY(-102%); visibility: hidden; transition: transform .45s cubic-bezier(.7,0,.3,1), visibility .45s; }
  .gnav.open { transform: none; visibility: visible; }
  /* CRITICAL: backdrop-filter on the fixed header makes it the containing block for the
     fullscreen .gnav overlay, so after scroll the menu gets clipped to header height and
     hides items. Drop the blur on mobile (the 92%-opaque bg keeps it readable). */
  .site-header.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .gnav a { font-size: 18px; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer;
    z-index: 110; padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2.5px; background: var(--olive-deep); border-radius: 2px; transition: transform .3s, opacity .3s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .promise-grid, .lineup-grid, .facts-grid { grid-template-columns: 1fr; }
  .pd-cta-fixed { display: flex; }
  .pd-hero { padding-top: 120px; }
}
