/* ===== Tokens ===== */
:root {
  --green: #0a6b3b;        /* Perrier-ish deep green */
  --green-dark: #064d2a;
  --green-light: #e8f3ec;
  --ink: #16201b;
  --muted: #5d6b63;
  --line: #e4e8e5;
  --bg: #ffffff;
  --bg-alt: #f6f8f6;
  --sanpel-red: #c8102e;
  --radius: 16px;
  --maxw: 1160px;
  --shadow: 0 14px 40px rgba(10, 60, 35, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* 한글 줄바꿈: 어절(띄어쓰기) 단위로만 끊어 단어 중간 분리 방지 */
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,107,59,.28); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-block { display: block; text-align: center; width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand-logo { height: 50px; width: auto; }
.nav { display: flex; gap: 34px; }
.nav a { font-weight: 600; font-size: 15px; color: var(--ink); position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--green); transition: width .25s ease;
}
.nav a:hover { color: var(--green); }
.nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }

/* ===== KR/EN 언어 토글 ===== */
html[lang="en"] .lang-ko { display: none !important; }
html[lang="ko"] .lang-en { display: none !important; }
.header-right { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-switch button {
  background: none; border: none; cursor: pointer; padding: 6px 11px;
  font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .05em; line-height: 1;
  transition: background .2s, color .2s;
}
.lang-switch button.active { background: var(--ink); color: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(160deg, #0a6b3b 0%, #064d2a 55%, #03301b 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.13) 1.5px, transparent 1.6px);
  background-size: 26px 26px; opacity: .35;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; padding-top: 70px; }
.hero-eyebrow { letter-spacing: .28em; font-size: 12px; font-weight: 600; opacity: .8; margin-bottom: 22px; }
.hero-title { font-size: clamp(32px, 6vw, 60px); line-height: 1.18; font-weight: 800; letter-spacing: -.02em; }
.hero-sub { margin: 26px auto 0; font-size: clamp(15px, 2.2vw, 18px); opacity: .92; max-width: 620px; }
.hero-sub strong { font-weight: 700; }
.hero-cta { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: #fff; font-size: 22px; opacity: .7; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: linear-gradient(160deg, #0a6b3b, #053a22); color: #fff; }
.eyebrow { color: var(--green); font-weight: 700; letter-spacing: .2em; font-size: 13px; margin-bottom: 14px; }
.eyebrow--light { color: rgba(255,255,255,.75); }
.section-title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; line-height: 1.25; }
.section-title--light { color: #fff; }
.section-lead { margin-top: 16px; color: var(--muted); font-size: 17px; max-width: 640px; }
.section-lead--light { color: rgba(255,255,255,.85); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; margin-top: 40px; align-items: center; }
.about-text p { color: var(--muted); font-size: 17px; }
.about-text p + p { margin-top: 18px; }
.about-text strong { color: var(--ink); font-weight: 700; }
.about-stats { list-style: none; display: grid; gap: 16px; }
.about-stats li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.about-stats .num { font-size: 30px; font-weight: 800; color: var(--green); line-height: 1.1; }
.about-stats .label { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ===== Perrier Story ===== */
.section-story { background: var(--bg-alt); }
.story-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.story-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.story-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--green);
}
.story-num { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--green); opacity: .55; }
.story-card h3 { font-size: 18px; font-weight: 800; margin: 10px 0 10px; letter-spacing: -.01em; }
.story-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.story-card strong { color: var(--ink); font-weight: 700; }

/* ===== Brands ===== */
.brand-facts { list-style: none; display: grid; gap: 8px; margin-top: 18px; }
.brand-facts li { font-size: 14.5px; color: var(--muted); padding-left: 22px; position: relative; }
.brand-facts li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.brand-facts strong { color: var(--ink); }
.ranges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.ranges span { background: #fff; border: 1px solid var(--green); color: var(--green); font-size: 12px; font-weight: 700; padding: 3px 12px; border-radius: 999px; }
.brand-block {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: center;
  margin-top: 56px; background: #fff; border: 1px solid var(--line);
  border-radius: 24px; padding: 44px; box-shadow: var(--shadow);
}
.section-alt .brand-block { background: #fff; }
.brand-block--reverse { direction: rtl; }
.brand-block--reverse > * { direction: ltr; }
.brand-visual {
  border-radius: 18px; min-height: 280px; display: flex; align-items: center; justify-content: center; padding: 30px;
}
.brand-visual--perrier { background: radial-gradient(circle at 50% 40%, #0d7d45, #064d2a); }
.brand-visual--sanpel { background: radial-gradient(circle at 50% 40%, #e63950, #9c0a22); }
.brand-mark { max-height: 150px; width: auto; filter: drop-shadow(0 8px 18px rgba(0,0,0,.25)); }
.brand-copy h3 { font-size: 28px; font-weight: 800; }
.brand-copy h3 span { display: block; font-size: 14px; font-weight: 600; color: var(--green); letter-spacing: .1em; margin-top: 4px; }
.brand-copy p { color: var(--muted); margin-top: 18px; font-size: 16px; }
.brand-note { background: var(--green-light); border-radius: 12px; padding: 14px 18px; color: var(--ink) !important; font-size: 15px !important; }
.brand-note strong { color: var(--green); }
.brand-link { display: inline-block; margin-top: 22px; font-weight: 700; color: var(--green); }
.brand-link:hover { text-decoration: underline; }

.brand-placeholder { display: flex; flex-direction: column; align-items: center; color: #fff; gap: 6px; }
.sanpel-star { color: #fff; font-size: 40px; line-height: 1; }
.brand-placeholder-name { font-weight: 800; letter-spacing: .18em; font-size: 20px; }
.brand-placeholder-hint { font-size: 12px; opacity: .8; }

/* ===== Products ===== */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px;
}
.product-card {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-img { height: 240px; display: flex; align-items: center; justify-content: center; padding: 26px; background: #fff; }
.product-img img { max-height: 100%; width: auto; object-fit: contain; }
.product-img--soon {
  background: linear-gradient(160deg, #f0c9cf, #c8102e); color: #fff; flex-direction: column; gap: 8px; font-weight: 700; letter-spacing: .12em;
}
.product-card figcaption { padding: 16px 20px 22px; }
.tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .02em; padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; }
.tag--core { background: var(--green-light); color: var(--green-dark); }
.tag--for { background: #fff3d6; color: #9a6a00; }
.tag--chic { background: #f3e3ef; color: #8a2d6e; }
.product-card h4 { font-size: 17px; font-weight: 700; }
.product-card p { color: var(--muted); font-size: 14px; margin-top: 4px; }
.product-card--soon { opacity: .96; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 26px; margin-top: 40px; }
.contact-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 32px; backdrop-filter: blur(4px); }
.contact-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 18px; }
.contact-list { display: grid; gap: 14px; }
.contact-list > div { display: grid; grid-template-columns: 130px 1fr; gap: 12px; align-items: baseline; }
.contact-list dt { color: rgba(255,255,255,.6); font-size: 14px; }
.contact-list dd { font-size: 15px; font-weight: 500; }
.contact-list em { color: rgba(255,255,255,.55); font-style: normal; font-size: 13px; }
.contact-card--cta { display: flex; flex-direction: column; }
.contact-card--cta p { color: rgba(255,255,255,.82); margin-bottom: auto; padding-bottom: 22px; }

/* ===== Footer ===== */
.site-footer { background: #04130c; color: rgba(255,255,255,.7); padding: 48px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-logo { height: 40px; width: auto; opacity: .95; }
.footer-copy { font-size: 14px; }
.footer-note { font-size: 12px; opacity: .6; max-width: 520px; }

/* ===== Solid header (sub-pages) ===== */
.header--solid { background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.nav a.active { color: var(--green); }
.nav a.active::after { width: 100%; }

/* ===== Page hero (sub-pages) ===== */
.page-hero {
  position: relative; min-height: 64vh; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; color: #fff; overflow: hidden;
}
.page-hero-overlay, .page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,30,18,.85) 0%, rgba(3,30,18,.25) 55%, rgba(3,30,18,.35) 100%);
}
.page-hero--sanpel { background: linear-gradient(160deg, #e63950 0%, #9c0a22 100%); }
.page-hero--sanpel::after { background: linear-gradient(to top, rgba(60,5,15,.6), rgba(60,5,15,.15)); }
.page-hero-inner { position: relative; z-index: 2; padding: 0 24px 64px; padding-top: 130px; }
.page-hero-eyebrow { letter-spacing: .22em; font-size: 12px; font-weight: 700; opacity: .9; margin-bottom: 14px; }
.page-hero-title { font-size: clamp(46px, 9vw, 96px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.page-hero-title span { font-size: .3em; vertical-align: super; opacity: .8; margin-left: 6px; }
.page-hero-title .sanpel-star { font-size: .5em; vertical-align: middle; }
.page-hero-sub { margin-top: 18px; font-size: clamp(16px, 2.4vw, 20px); opacity: .95; max-width: 620px; }

/* ===== Narrow / centered text ===== */
.narrow { max-width: 760px; }
.center { text-align: center; }
.center .eyebrow { /* keep */ }
.center-x { margin-left: auto; margin-right: auto; }
.lead-text { margin-top: 18px; color: var(--muted); font-size: 18px; line-height: 1.8; }

/* ===== Brand cards (index) ===== */
.brand-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.brand-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(10,60,35,.16); }
.brand-card-img {
  height: 260px; background-size: cover; background-position: center; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.brand-card-img--sanpel { background: linear-gradient(160deg, #e63950, #9c0a22); }
.brand-card-img--sanpel .sanpel-star { font-size: 56px; color: rgba(255,255,255,.9); }
.brand-card-flag {
  position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: .12em; padding: 5px 12px; border-radius: 999px;
}
.brand-card-body { padding: 26px 28px 30px; }
.brand-card-body h3 { font-size: 24px; font-weight: 800; }
.brand-card-body p { color: var(--muted); margin-top: 8px; font-size: 15px; }
.brand-card-link { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--green); }

/* ===== Media band ===== */
.media-band { display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; }
.media-band-img { min-height: 480px; background-size: cover; background-position: center; }
.media-band-text { background: var(--ink); color: #fff; padding: 64px clamp(28px,5vw,72px); display: flex; flex-direction: column; justify-content: center; }
.media-band-text .eyebrow { color: #9fe3bd; }
.media-band-text h2 { font-size: clamp(26px,3.4vw,40px); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; }
.media-band-text p { margin-top: 18px; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.8; }
.img-credit { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-size: 11px; line-height: 1.4; color: rgba(255,255,255,.9); background: rgba(0,0,0,.34); padding: 4px 9px; border-radius: 6px; letter-spacing: .01em; }
.img-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* ===== Page content helpers ===== */
.product-grid--center { justify-content: center; max-width: 360px; margin-left: auto; margin-right: auto; }
.ranges--lg { margin-top: 20px; }
.ranges--lg span { font-size: 14px; padding: 6px 16px; }
.full-img { margin: 40px 0 8px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.full-img img { width: 100%; display: block; }
.block-title { font-size: 22px; font-weight: 800; margin-top: 56px; letter-spacing: -.01em; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-top: 24px; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-img img { width: 100%; display: block; }
.flavor-list { list-style: none; display: grid; gap: 14px; }
.flavor-list li { padding-left: 18px; position: relative; color: var(--muted); font-size: 15.5px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.flavor-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: #8a2d6e; }
.flavor-list strong { color: var(--ink); font-weight: 700; margin-right: 6px; }

/* ===== Gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 40px; }
.gallery img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius); }

/* ===== CTA band ===== */
.cta-band .btn { margin-top: 28px; }
.cta-band .section-title { margin-bottom: 6px; }

/* ===== Coming soon ===== */
.soon-box { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 64px 32px; box-shadow: var(--shadow); max-width: 640px; margin: 0 auto; }
.soon-star { font-size: 44px; color: var(--sanpel-red); display: block; margin-bottom: 14px; }
.soon-box .btn { margin-top: 24px; }

/* ===== Official partner band (공식 협찬 강조) ===== */
.partner-band { padding: 64px 0; background: var(--cat-soft, var(--green-light)); text-align: center; border-block: 1px solid rgba(0,0,0,.05); }
.partner-star { font-size: 30px; line-height: 1; display: block; margin-bottom: 12px; color: var(--cat, var(--green)); }
.partner-pill {
  display: inline-block; background: var(--cat, var(--green)); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 16px;
}
.partner-title { font-size: clamp(22px, 3.6vw, 36px); font-weight: 800; letter-spacing: -.02em; line-height: 1.25; color: var(--ink); }
.partner-title strong { color: var(--cat, var(--green)); }
.partner-sub { margin: 14px auto 0; max-width: 620px; color: var(--muted); font-size: 16px; }
.sanpel .partner-star { color: var(--sp-red); }
.partner-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-weight: 700; font-size: 15px; color: var(--cat, var(--green));
  border-bottom: 2px solid transparent; padding-bottom: 3px; transition: gap .25s ease, border-color .25s ease;
}
.partner-band a.partner-clickable { display: block; text-decoration: none; }
.partner-band a.partner-clickable:hover .partner-link { gap: 14px; border-color: var(--cat, var(--green)); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   PERRIER PAGE THEME — 아이코닉 그린 · 깔끔한 공식 톤 (scoped body.perrier)
   엄브렐러 랜딩 + 카테고리(Source Perrier / Maison Perrier)
   sanpellegrino 페이지와 동일한 깔끔 구조(cat-hero/brand-tiles/fmt-grid/poster) 공유
   ========================================================= */
body.perrier {
  --green: #0a6b3b;
  --cat: #0a6b3b;          /* 아이코닉 페리에 그린 */
  --cat-soft: #e9f3ed;
  background: #fff;
}
.perrier .eyebrow { color: var(--cat); }
.perrier .btn-primary { background: var(--cat); }
.perrier .btn-primary:hover { background: var(--cat); filter: brightness(.9); box-shadow: 0 10px 24px rgba(10,107,59,.25); }
.perrier .nav a:hover, .perrier .nav a.active { color: var(--cat); }
.perrier .nav a::after { background: var(--cat); }
.perrier .section-dark { background: linear-gradient(160deg, #0a6b3b 0%, #053a22 100%); }
.perrier .media-band-text { background: var(--cat); }
.perrier .media-band-text .eyebrow { color: #9fe3bd; }
.perrier .ranges span { border-color: var(--cat); color: var(--cat); }
.perrier .tag--core { background: #e3f7e9; color: var(--cat); }
.perrier .tag--for  { background: #eef7e6; color: #4d7a18; }
.perrier .tag--chic { background: #e9f3ed; color: var(--cat); }

/* --- 그린 풀 히어로 밴드(아이코닉) --- */
.cat-hero--green { background: linear-gradient(160deg, #0a8048 0%, #066b3b 45%, #033f23 100%); position: relative; overflow: hidden; padding: 112px 0 52px; }
.cat-hero--green::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1.6px, transparent 1.8px);
  background-size: 28px 28px; opacity: .3;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.cat-hero--green > .container { position: relative; z-index: 2; }
.cat-hero--green .cat-hero-eyebrow { color: rgba(255,255,255,.95); text-shadow: 0 1px 10px rgba(0,0,0,.22); }
.cat-hero--green h1 { color: #fff; }
.cat-hero--green .per-wordmark { filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(0,0,0,.28)); }
.cat-hero--green p { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.28); }
.per-wordmark { height: clamp(42px, 6.5vw, 72px); width: auto; margin: 0 auto 6px; filter: brightness(0) invert(1); }
/* 카테고리 페이지 히어로의 그린 로고(라이트 배경) */
.cat-hero-logo { height: clamp(52px, 8vw, 88px); width: auto; margin: 0 auto 14px; display: block; }

/* --- 페리에 히어로 이미지 슬라이드쇼 (perrier.com 스타일) --- */
.hero-slider { position: relative; min-height: 58vh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; text-align: center; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(3,40,22,.82) 0%, rgba(3,40,22,.25) 50%, rgba(3,40,22,.5) 100%); }
.hero-slide-content { position: relative; z-index: 2; width: 100%; padding-top: 130px; padding-bottom: 84px; }
.hero-slider .per-wordmark { height: clamp(46px, 7vw, 80px); width: auto; margin: 0 auto 14px; filter: brightness(0) invert(1) drop-shadow(0 2px 16px rgba(0,0,0,.35)); }
.hero-slider .cat-hero-eyebrow { display: block; letter-spacing: .26em; font-size: 12px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,.95); text-shadow: 0 1px 10px rgba(0,0,0,.3); }
.hero-slider .hero-slide-content > p:last-of-type { margin: 16px auto 0; max-width: 600px; font-size: clamp(15px, 2vw, 19px); color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,.35); }
.hero-dots { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dots button { width: 11px; height: 11px; padding: 0; border: 1.5px solid rgba(255,255,255,.7); border-radius: 50%; background: transparent; cursor: pointer; transition: background .25s ease; }
.hero-dots button.active { background: #fff; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.6); background: rgba(0,0,0,.25); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .25s ease, border-color .25s ease; }
.hero-arrow:hover { background: rgba(0,0,0,.48); border-color: #fff; }
.hero-arrow--prev { left: 22px; }
.hero-arrow--next { right: 22px; }
@media (max-width: 860px) { .hero-slider { min-height: 52vh; } .hero-arrow { width: 40px; height: 40px; font-size: 22px; left: 12px; } .hero-arrow--next { right: 12px; } }

/* --- 페리에 카테고리 타일(소스/메종 소개) 높이 축소 --- */
.perrier .brand-tiles .brand-tile { min-height: 52vh; }
@media (max-width: 860px) { .perrier .brand-tiles .brand-tile { min-height: 46vh; } }

/* --- 카테고리 타일에 로고 표시 --- */
.brand-tile--logo { align-items: center; }
.brand-tile--logo .brand-tile-content { text-align: center; }
.brand-tile-logo { height: clamp(54px, 7vw, 84px); width: auto; margin: 0 auto 18px; filter: brightness(0) invert(1); }
.brand-tile--logo .brand-tile-content p { margin-left: auto; margin-right: auto; }
.brand-tile--logo .brand-tile-overlay { background: linear-gradient(to top, rgba(4,40,22,.82) 0%, rgba(4,40,22,.42) 100%); }
.brand-tile--logo:hover .brand-tile-overlay { background: linear-gradient(to top, rgba(4,40,22,.86) 0%, rgba(4,40,22,.5) 100%); }

/* Maison Perrier 카테고리 페이지 헤로/포스터의 멀티레인지 배너는 와이드 */
.poster--wide img { max-width: 980px; border-radius: var(--radius); }

/* =========================================================
   HOME (회사소개) THEME — 신동 중립 톤 (그린 미사용 · 차콜+골드)
   ========================================================= */
body.home {
  --accent: #9a7b4f;        /* 뮤트 브론즈/골드 */
  --accent-dark: #7c6240;
  --ink: #181a19;
}
.home .eyebrow { color: var(--accent); }
.home .eyebrow--light { color: rgba(255,255,255,.7); }
.home .btn-primary { background: var(--ink); color: #fff; }
.home .btn-primary:hover { background: #000; box-shadow: 0 10px 24px rgba(0,0,0,.22); }
.home .about-stats li { border-color: var(--line); }
.home .about-stats .num { color: var(--accent); }
.home .section-dark { background: linear-gradient(160deg, #20231f 0%, #0d0e0c 100%); }
.home .story-num { color: var(--accent); }

/* 깔끔·미니멀: 홈 카드 플랫화(그림자·강조바 제거) */
.home .about-stats li { box-shadow: none; }
.home .story-card { box-shadow: none; padding-top: 30px; }
.home .story-card::before { display: none; }

/* 컴팩트 문의 밴드 (마지막 협업 문의 축소) */
.contact-compact { border-top: 1px solid var(--line); padding: 64px 0; }
.contact-compact-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.contact-compact-title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -.02em; margin-top: 6px; }
.contact-compact-sub { color: var(--muted); margin-top: 10px; max-width: 520px; font-size: 15.5px; }
.contact-compact-info { text-align: right; }
.contact-compact-info p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.contact-compact-info .who { color: var(--ink); font-weight: 700; font-size: 16px; }
.contact-compact-info .btn { margin-top: 16px; }
@media (max-width: 860px) {
  .contact-compact-inner { grid-template-columns: 1fr; gap: 26px; }
  .contact-compact-info { text-align: left; }
}
.home .nav a:hover, .home .nav a.active { color: var(--accent); }
.home .nav a::after { background: var(--accent); }

/* --- Neutral hero (가벼운 차콜 · 높이 축소) --- */
.home .hero { color: #fff; min-height: 68vh; }
.home .hero-bg {
  background:
    radial-gradient(85% 55% at 50% -8%, rgba(200,20,30,.30), transparent 60%),
    radial-gradient(70% 50% at 88% 8%, rgba(200,20,30,.14), transparent 62%),
    linear-gradient(165deg, #1d1b1f 0%, #161419 52%, #0d0c10 100%);
}
.home .hero-bg::after {
  background-image: radial-gradient(rgba(255,255,255,.07) 1.5px, transparent 1.6px);
  background-size: 28px 28px; opacity: .55;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.home .hero-eyebrow { color: rgba(255,255,255,.72); }

/* 히어로 신동 로고 (빨강 심볼 유지 · 글자만 흰색인 다크용 로고) */
.hero-logo {
  height: clamp(64px, 9vw, 96px); width: auto; display: block; margin: 0 auto 22px;
  filter: drop-shadow(0 4px 22px rgba(0,0,0,.4));
}

/* --- Big clickable brand tiles --- */
.brand-tiles-head { text-align: center; padding: 88px 0 36px; }
.brand-tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.brand-tile {
  position: relative; min-height: 80vh; overflow: hidden;
  display: flex; align-items: flex-end; color: #fff;
}
.brand-tile-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  /* 인라인 background-size(200%/100% auto)가 타일보다 짧아지는 세로 긴 화면에서 타일링 방지 */
  background-repeat: no-repeat;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.brand-tile:hover .brand-tile-img { transform: scale(1.06); }
.brand-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.82) 0%, rgba(10,10,10,.15) 50%, rgba(10,10,10,.25) 100%);
  transition: background .4s ease;
}
.brand-tile:hover .brand-tile-overlay {
  background: linear-gradient(to top, rgba(10,10,10,.85) 0%, rgba(10,10,10,.25) 55%, rgba(10,10,10,.3) 100%);
}
.brand-tile-content { position: relative; z-index: 2; padding: clamp(32px,5vw,64px); width: 100%; }
.brand-tile-flag {
  display: inline-block; background: rgba(255,255,255,.92); color: #181a19;
  font-size: 11px; font-weight: 800; letter-spacing: .14em; padding: 5px 13px; border-radius: 999px; margin-bottom: 16px;
}
.brand-tile-content h3 { font-size: clamp(34px,5vw,56px); font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.brand-tile-content p { margin-top: 12px; max-width: 420px; font-size: clamp(15px,1.6vw,17px); color: rgba(255,255,255,.9); }
.brand-tile-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-weight: 700; font-size: 16px; letter-spacing: .01em;
  border-bottom: 2px solid rgba(255,255,255,.5); padding-bottom: 4px; transition: gap .25s ease, border-color .25s ease;
}
.brand-tile:hover .brand-tile-link { gap: 14px; border-color: #fff; }

@media (max-width: 860px) {
  .brand-tiles { grid-template-columns: 1fr; }
  .brand-tile { min-height: 64vh; }
  .brand-tiles-head { padding: 64px 0 28px; }
}

/* =========================================================
   SANPELLEGRINO FAMILY THEME (sanpellegrino.com-inspired)
   엄브렐러 랜딩 + 카테고리(SP / Aqua Panna / ISD) · scoped body.sanpel
   카테고리별 강조색은 --cat 로 전환
   ========================================================= */
body.sanpel {
  --sp-navy: #0a2a5e;
  --sp-red: #e2231a;
  --cat: #0a2a5e;          /* 기본(엄브렐러·SP) = 네이비 */
  --cat-soft: #eef2f9;
  background: #fff;
}
body.cat-ap  { --cat: #ac561f; --cat-soft: #f6efe6; }   /* Aqua Panna 테라코타 */
body.cat-isd { --cat: #df7a00; --cat-soft: #fff3e0; }   /* ISD 시트러스 오렌지 */

.sanpel .eyebrow { color: var(--cat); }
.sanpel .btn-primary { background: var(--cat); }
.sanpel .btn-primary:hover { background: var(--cat); filter: brightness(.88); box-shadow: 0 10px 24px rgba(10,42,94,.22); }
.sanpel .nav a:hover, .sanpel .nav a.active { color: var(--cat); }
.sanpel .nav a::after { background: var(--cat); }
.sanpel .section-dark { background: linear-gradient(160deg, #16233d 0%, #0a1322 100%); }
.sanpel .media-band-text { background: var(--cat); }
.sanpel .media-band-text .eyebrow { color: rgba(255,255,255,.85); }

/* --- Category landing / page hero band (라이트·엘레강스) --- */
.cat-hero { background: var(--cat-soft); padding: 132px 0 60px; text-align: center; }
.cat-hero .cat-star { color: var(--sp-red); font-size: 38px; line-height: 1; display: block; margin-bottom: 6px; }
.cat-hero-eyebrow { letter-spacing: .26em; font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--cat); opacity: .85; }
.cat-hero h1 { font-size: clamp(40px, 8vw, 80px); font-weight: 800; letter-spacing: -.02em; line-height: 1; color: var(--cat); margin-top: 12px; }
.cat-hero h1 .reg { font-size: .28em; vertical-align: super; opacity: .6; }
.cat-hero p { margin: 18px auto 0; color: var(--muted); font-size: clamp(16px, 2vw, 19px); max-width: 640px; }
/* eyebrow가 <p>로 쓰인 페이지에서는 위의 `.cat-hero p`가 더 높은 우선순위로 덮어쓴다 */
.cat-hero p.cat-hero-eyebrow { margin-top: 0; max-width: none; font-size: 12px; color: var(--cat); }

/* --- Poster showcase (배너 포스터 원본 노출) --- */
.poster { background: var(--cat-soft); padding: 8px 0 84px; text-align: center; }
.poster img {
  max-width: 440px; width: 100%; margin: 0 auto; border-radius: var(--radius);
  box-shadow: 0 26px 60px rgba(10,30,60,.18);
}

/* --- Format grid (제품 라인업) --- */
.fmt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.fmt-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; text-align: center; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.fmt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--cat); }
.fmt-type {
  display: inline-block; font-weight: 800; letter-spacing: .14em; font-size: 12px;
  color: var(--cat); border: 1.5px solid var(--cat); border-radius: 999px; padding: 5px 16px;
}
.fmt-card h4 { font-size: 18px; font-weight: 800; margin: 16px 0 14px; letter-spacing: -.01em; }
.fmt-sizes { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.fmt-sizes span {
  background: var(--cat-soft); color: var(--cat); font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
}

/* --- ISD flavor grid --- */
.flavor-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 44px; }
.flavor-chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 18px; text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}
.flavor-chip:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.flavor-dot { width: 30px; height: 30px; border-radius: 50%; margin: 0 auto 14px; box-shadow: inset 0 -3px 6px rgba(0,0,0,.12); }
.flavor-chip h4 { font-size: 16px; font-weight: 800; }
.flavor-chip .it { font-size: 12.5px; color: var(--muted); margin-top: 3px; font-style: italic; }

/* --- 산펠 카테고리 타일: KV 전체 노출(텍스트 안 잘리게 contain) --- */
.brand-tile--poster .brand-tile-img { background-size: contain; background-repeat: no-repeat; background-position: center; }
.brand-tile--poster:hover .brand-tile-img { transform: none; }
.brand-tile--poster .brand-tile-overlay { background: linear-gradient(to top, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 26%); }
.brand-tile--poster:hover .brand-tile-overlay { background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 30%); }
.brand-tile--poster .brand-tile-content { width: 100%; text-align: center; padding-bottom: 26px; }
.brand-tile--poster .brand-tile-link { background: rgba(0,0,0,.42); padding: 9px 18px; border-radius: 999px; border-bottom: none; }
.brand-tile--poster:hover .brand-tile-link { gap: 14px; border-color: transparent; }

/* --- 3-up brand tiles (산펠 랜딩) --- */
.brand-tiles--three { grid-template-columns: repeat(3, 1fr); }
.brand-tiles--three .brand-tile { min-height: 70vh; }
.brand-tiles--three .brand-tile-content h3 { font-size: clamp(26px, 3.4vw, 40px); }
@media (max-width: 980px) {
  .brand-tiles--three { grid-template-columns: 1fr; }
  .brand-tiles--three .brand-tile { min-height: 56vh; }
}

@media (max-width: 860px) {
  .fmt-grid { grid-template-columns: 1fr; }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-hero { padding-top: 108px; }
}

/* =========================================================
   B2B — 제품 스펙 표 · 유통/입점 · 문의 폼 (전 페이지 공용)
   ========================================================= */

/* --- 제품 스펙 표 --- */
.spec-wrap { margin-top: 44px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 620px; background: #fff; }
.spec-table thead th {
  background: var(--cat-soft, var(--bg-alt)); color: var(--cat, var(--ink));
  font-weight: 800; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  text-align: left; padding: 15px 18px; white-space: nowrap;
}
.spec-table td { padding: 15px 18px; border-top: 1px solid var(--line); color: var(--muted); vertical-align: middle; }
.spec-table td.prod { color: var(--ink); font-weight: 700; }
.spec-table td.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.spec-table tbody tr:hover { background: var(--bg-alt); }
.spec-badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 999px; background: var(--cat-soft, var(--bg-alt)); color: var(--cat, var(--ink));
}
.spec-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); }

/* --- 유통 채널 칩 --- */
.channel-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; justify-content: center; }
.channel-list span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 20px; font-weight: 600; font-size: 14.5px; color: var(--ink);
}

/* ===== Distribution channel accordion ===== */
.channel-lead { margin-top: 22px; color: var(--muted); font-size: 15px; }
.channel-accordion { max-width: 720px; margin: 26px auto 0; text-align: left; }
.ch-item {
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
  margin-bottom: 10px; overflow: hidden;
}
.ch-item summary {
  cursor: pointer; list-style: none; padding: 16px 20px;
  font-weight: 700; font-size: 15.5px; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
}
.ch-item summary::-webkit-details-marker { display: none; }
.ch-item summary::after {
  content: "+"; font-size: 22px; font-weight: 400; line-height: 1; color: var(--muted);
}
.ch-item[open] summary::after { content: "\2013"; }
.ch-item[open] summary { border-bottom: 1px solid var(--line); }
.ch-body { padding: 16px 20px 18px; }
.ch-note { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0; }
.ch-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ch-tags span {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 15px; font-size: 13.5px; font-weight: 600; color: var(--ink);
}

/* --- 입점 프로세스 스텝 --- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.process-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative; box-shadow: var(--shadow);
}
.process-step .step-no {
  display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: var(--ink); color: #fff; font-weight: 800; font-size: 15px; margin-bottom: 14px;
}
.process-step h3 { font-size: 17px; font-weight: 800; letter-spacing: -.01em; }
.process-step p { color: var(--muted); font-size: 14px; margin-top: 8px; line-height: 1.6; }

/* --- 문의 폼 --- */
.contact-hero { padding: 130px 0 56px; background: var(--bg-alt); text-align: center; border-bottom: 1px solid var(--line); }
.contact-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-top: 10px; }
.contact-hero p { margin: 16px auto 0; color: var(--muted); font-size: clamp(15px, 2vw, 18px); max-width: 600px; }

.inquiry-form { max-width: 760px; margin: 44px auto 0; display: grid; gap: 18px; text-align: left; }
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.field label .req { color: #c8102e; margin-left: 3px; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; padding: 13px 15px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; color: var(--ink); width: 100%; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent, var(--green));
  box-shadow: 0 0 0 3px rgba(154,123,79,.16);
}
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form-hint { font-size: 12.5px; color: var(--muted); }
.form-direct { margin-top: 14px; font-size: 14px; color: var(--muted); text-align: center; }
.form-direct strong { color: var(--ink); }

@media (max-width: 680px) { .form-row { grid-template-columns: 1fr; } }
@media (max-width: 860px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav {
    position: fixed; top: 70px; right: 0; width: min(76vw, 300px); height: calc(100vh - 70px);
    flex-direction: column; gap: 0; background: #fff; padding: 18px;
    transform: translateX(110%); transition: transform .3s ease; box-shadow: -10px 0 30px rgba(0,0,0,.08);
  }
  .nav.open { transform: none; }
  .nav a { padding: 16px 8px; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 68px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-stats li { padding: 18px; }
  .about-stats .num { font-size: 22px; }

  .brand-block, .brand-block--reverse { grid-template-columns: 1fr; gap: 28px; padding: 28px; direction: ltr; }
  .brand-visual { min-height: 220px; }

  .story-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-img { height: 200px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-list > div { grid-template-columns: 110px 1fr; }

  .brand-cards { grid-template-columns: 1fr; gap: 20px; }
  .brand-card-img { height: 220px; }
  .media-band { grid-template-columns: 1fr; }
  .media-band-img { min-height: 300px; }
  .media-band-text { padding: 44px 28px; }
  .split { grid-template-columns: 1fr; gap: 22px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img { height: 240px; }
  .page-hero { min-height: 56vh; }
  .page-hero-inner { padding-bottom: 44px; padding-top: 110px; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  /* 긴 버튼이 좁은 화면에서 가로로 넘치지 않게 줄바꿈 허용 */
  .btn { white-space: normal; max-width: 100%; }
}

/* =========================================================
   산펠레그리노 강화 — 그룹 스탯 · 보틀 라인업 · 라이프스타일 · 영상
   ========================================================= */

/* --- 브랜드 그룹 통계 밴드 --- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 44px; }
.stat-item { text-align: center; padding: 22px 14px; }
.stat-num { font-size: clamp(34px, 5vw, 52px); font-weight: 800; letter-spacing: -.02em; color: var(--cat); line-height: 1; }
.stat-label { margin-top: 10px; font-size: 14px; color: var(--muted); font-weight: 600; }
@media (max-width: 680px) { .stat-band { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* --- 제품 보틀 라인업(누끼 그리드) --- */
.bottle-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 40px; }
.bottle { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 10px 16px; text-align: center; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.bottle:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--cat); }
.bottle-img { height: 188px; display: flex; align-items: flex-end; justify-content: center; }
.bottle-img img { max-height: 100%; width: auto; object-fit: contain; }
.bottle h4 { font-size: 14px; font-weight: 800; margin-top: 14px; letter-spacing: -.01em; }
.bottle .fmt { display: inline-block; margin-top: 7px; font-size: 11px; color: var(--cat); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: var(--cat-soft); padding: 3px 10px; border-radius: 999px; }
@media (max-width: 860px) { .bottle-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .bottle-grid { grid-template-columns: repeat(2, 1fr); } .bottle-img { height: 150px; } }

/* --- 정사각 라이프스타일 그리드 --- */
.life-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.life-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; }
.life-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform .5s ease; }
.life-grid figure:hover img { transform: scale(1.06); }
.life-cap { position: absolute; left: 0; bottom: 0; width: 100%; padding: 16px 16px 14px; color: #fff; font-weight: 800; font-size: 15px; background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0)); }
.life-cap span { display: block; font-size: 11.5px; font-weight: 600; opacity: .85; font-style: italic; }
@media (max-width: 860px) { .life-grid { grid-template-columns: repeat(2, 1fr); } }

/* --- 영상 그리드 --- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.video-card { border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow); }
.video-card video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; background: #000; }
.video-cap { padding: 14px 18px 16px; background: #fff; }
.video-cap h4 { font-size: 15px; font-weight: 800; }
.video-cap p { font-size: 13px; color: var(--muted); margin-top: 3px; }
.video-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin-left: auto; margin-right: auto; }
@media (max-width: 860px) { .video-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* --- 풀폭 라이프스타일 이미지 밴드 --- */
.life-band { position: relative; min-height: 460px; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.life-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.06)); }
.life-band .container { position: relative; z-index: 2; padding-block: 48px; color: #fff; }
.life-band .eyebrow { color: rgba(255,255,255,.9); }
.life-band h2 { font-size: clamp(26px, 3.6vw, 42px); font-weight: 800; line-height: 1.18; letter-spacing: -.02em; max-width: 640px; }
.life-band p { margin-top: 14px; color: rgba(255,255,255,.86); font-size: 16px; line-height: 1.8; max-width: 560px; }

/* --- 3열 스토리 그리드(반응형) — 모바일에서 1열로 전환 --- */
.story-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .story-grid--3 { grid-template-columns: 1fr; } }

/* =========================================================
   구매처 (Where to Buy) — 온라인 판매처 카드
   ========================================================= */
.buy-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px;
}
/* 판매처가 2곳인 페이지(페리에) — 카드가 과하게 좁아지지 않게 */
.buy-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-left: auto; margin-right: auto; }
.buy-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  text-align: left;  /* 부모 .center의 가운데 정렬 상속 차단 */
  padding: 26px 24px 22px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.buy-card:hover { transform: translateY(-3px); border-color: var(--cat, var(--green)); box-shadow: var(--shadow); }
.buy-card-name { font-size: 17px; font-weight: 800; letter-spacing: -.01em; color: var(--ink); }
.buy-card-type { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--cat, var(--green)); opacity: .9; }
.buy-card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.buy-card-link {
  margin-top: auto; padding-top: 14px; font-size: 14px; font-weight: 700;
  color: var(--cat, var(--green)); display: inline-flex; align-items: center; gap: 6px;
  transition: gap .25s ease;
}
.buy-card:hover .buy-card-link { gap: 12px; }
.buy-note { margin-top: 20px; font-size: 12.5px; color: var(--muted); }

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