/* ==========================================================
   My Wellness Pantry — Official Brand Site  (v2 editorial)
   ========================================================== */

:root {
  --cream: #FAF9F4;
  --cream-deep: #F3F1E8;
  --ink: #1E4D3B;
  --ink-deep: #143528;
  --ink-soft: #3E6B57;
  --apple: #C8DC78;
  --apple-soft: #E9F0CF;
  --apple-deep: #9DB84E;
  --gray: #8A9187;
  --line: #E4E2D8;
  --white: #FFFFFF;

  --serif: 'Noto Serif KR', serif;
  --display: 'Playfair Display', 'Noto Serif KR', serif;
  --sans: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  animation: pageIn 0.7s var(--ease);
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--apple-deep);
  margin-bottom: 20px;
}

/* index label: "01 — Brand" */
.idx {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 26px;
}
.idx::after {
  content: '';
  flex: 0 0 56px;
  height: 1px;
  background: var(--ink);
  opacity: 0.35;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.section-title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
}

.center { text-align: center; }
.center.idx { justify-content: center; }
.center.idx::after { display: none; }

.lead {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 22px;
}

.body-copy {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.95;
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s;
}
.btn .arr { transition: transform 0.35s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }

.btn-solid { background: var(--ink); color: var(--cream); }
.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(30, 77, 59, 0.24);
}
.btn-line { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

/* text link with arrow */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease), color 0.3s;
}
.tlink:hover { gap: 16px; color: var(--ink-soft); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 24px 0;
}
.site-header.scrolled {
  background: rgba(250, 249, 244, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.gnb { display: flex; gap: 38px; }
.gnb a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.gnb a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.gnb a:hover::after,
.gnb a.active::after { transform: scaleX(1); transform-origin: left; }
.gnb a:hover, .gnb a.active { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 130px 0 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(100deg, rgba(250, 249, 244, 0.92) 0%, rgba(250, 249, 244, 0.55) 40%, rgba(250, 249, 244, 0.06) 72%),
    linear-gradient(rgba(250, 249, 244, 0.1), rgba(250, 249, 244, 0) 55%, var(--cream) 97%),
    url('../img/hero-model.jpg');
  background-size: cover;
  background-position: center right;
  animation: heroZoom 10s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(58px, 12.5vw, 168px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.hero-title .it {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
}
.hero-copy {
  font-family: var(--serif);
  font-size: clamp(19px, 2.4vw, 27px);
  margin-bottom: 12px;
}
.hero-sub {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--ink-soft);
  margin-bottom: 46px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-hint {
  position: relative;
  z-index: 2;
  margin: 72px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  width: fit-content;
}
.scroll-hint i {
  width: 1px; height: 40px;
  background: var(--ink-soft);
  display: block;
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-height: 720px) { .scroll-hint { display: none; } }

/* Load-in */
.anim-up {
  opacity: 0;
  transform: translateY(28px);
  animation: animUp 1s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes animUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  background: var(--cream);
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee-track span {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.16em;
  color: var(--gray);
  padding-right: 12px;
}
.marquee-track .dot { color: var(--apple-deep); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  padding: 190px 0 90px;
  border-bottom: 1px solid var(--line);
}
.page-hero.has-bg {
  border-bottom: none;
  padding: 240px 0 130px;
  background-size: cover;
  background-position: center;
}
.page-hero--about {
  background-image:
    linear-gradient(100deg, rgba(250, 249, 244, 0.92) 0%, rgba(250, 249, 244, 0.6) 42%, rgba(250, 249, 244, 0.1) 75%),
    linear-gradient(rgba(250, 249, 244, 0.06), rgba(250, 249, 244, 0) 60%, var(--cream) 98%),
    url('../img/about-hero.jpg');
  background-position: center right;
}
.page-hero--shop {
  background-image:
    linear-gradient(100deg, rgba(250, 249, 244, 0.95) 0%, rgba(250, 249, 244, 0.78) 45%, rgba(250, 249, 244, 0.3) 85%),
    linear-gradient(rgba(250, 249, 244, 0.08), rgba(250, 249, 244, 0) 60%, var(--cream) 98%),
    url('../img/shop-hero.jpg');
  background-position: center 30%;
}
.page-hero .page-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(46px, 8.5vw, 110px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.page-hero .page-title .it { font-style: italic; font-weight: 400; color: var(--ink-soft); }
.page-hero .lead { max-width: 62ch; margin-bottom: 0; }

/* ---------- Image reveal (clip) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* curtain reveal: element stays intersectable, a cream veil wipes away */
.reveal.clip {
  transform: none;
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.reveal.clip::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--cream);
  transform: scaleX(1);
  transform-origin: right center;
  transition: transform 1.15s var(--ease);
  transition-delay: var(--d, 0s);
  z-index: 2;
  pointer-events: none;
}
.reveal.clip.visible::after { transform: scaleX(0); }

/* ---------- Home: brand teaser ---------- */
.brand-teaser { padding: 140px 0 120px; }
.brand-teaser-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 84px;
  align-items: center;
}
.brand-visual {
  border-radius: 20px;
  overflow: hidden;
}
.brand-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
}
.brand-visual:hover img { transform: scale(1.04); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 110px;
}
.pillar {
  padding: 46px 38px 40px;
  border-right: 1px solid var(--line);
  transition: background 0.5s var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--white); }
.pillar-num {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--apple-deep);
  margin-bottom: 20px;
}
.pillar h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.pillar p { font-size: 15px; color: var(--ink-soft); line-height: 1.85; }

/* ---------- Home: pantry moments gallery ---------- */
.moments { padding: 20px 0 150px; }
.moments-head { margin-bottom: 64px; }
.moments-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: start;
}
.moment:nth-child(even) { margin-top: 44px; }
.moment figure {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
  background: var(--cream-deep);
}
.moment img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.moment:hover img { transform: scale(1.07); }
.moment-word {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}
.moment-word .en {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 13.5px;
  color: var(--apple-deep);
}

/* ---------- Quote banner (full-bleed) ---------- */
.quote-banner {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 28px;
  background-image:
    linear-gradient(rgba(20, 53, 40, 0.48), rgba(20, 53, 40, 0.48)),
    url('../img/mood-wide.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.quote-banner blockquote {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--cream);
  font-size: clamp(24px, 3.7vw, 44px);
  line-height: 1.55;
  max-width: 26ch;
  margin: 0;
}
.quote-banner em {
  font-family: var(--display);
  font-style: italic;
  color: var(--apple);
}
.quote-banner--alt {
  background-image:
    linear-gradient(rgba(20, 53, 40, 0.5), rgba(20, 53, 40, 0.5)),
    url('../img/mood-wide2.jpg');
}
.quote-banner .q-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 249, 244, 0.72);
  margin-bottom: 26px;
}

/* ---------- Home: featured product ---------- */
.featured {
  padding: 130px 0;
  background: var(--white);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.featured-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}
.featured-media > img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
}
.featured-media:hover > img { transform: scale(1.045); }
.featured-tag {
  position: absolute;
  top: 22px; left: 22px;
  background: rgba(250, 249, 244, 0.94);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.featured-info .spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 36px;
}
.chip {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- Shop grid ---------- */
.shop { padding: 100px 0 150px; }
.shop-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 54px;
  gap: 20px;
  flex-wrap: wrap;
}
.shop-count {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--gray);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 28px;
}
.product-card { display: block; }
.product-card .card-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
  margin-bottom: 20px;
}
.product-card .card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.product-card:hover .card-media img { transform: scale(1.06); }
.card-cta {
  position: absolute;
  left: 50%; bottom: 20px;
  transform: translate(-50%, 14px);
  background: rgba(250, 249, 244, 0.96);
  color: var(--ink);
  border-radius: 100px;
  padding: 11px 26px;
  font-size: 13.5px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  white-space: nowrap;
}
.product-card:hover .card-cta { opacity: 1; transform: translate(-50%, 0); }
.card-cat {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--apple-deep);
  margin-bottom: 6px;
}
.card-name {
  font-family: var(--serif);
  font-size: 19.5px;
  font-weight: 600;
  line-height: 1.45;
}
.card-sub { font-size: 14px; color: var(--gray); margin-top: 4px; }

/* coming soon card */
.card-soon .card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 249, 244, 0.55);
  backdrop-filter: blur(2px);
}
.card-soon .soon-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.card-soon .soon-label strong {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--ink);
}
.card-soon .soon-label span {
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.card-soon:hover .card-media img { transform: scale(1.03); }

/* ---------- Product detail ---------- */
.detail-hero {
  padding: 170px 0 110px;
  background: var(--white);
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}
.product-stage {
  position: relative;
  border-radius: 26px;
  background:
    radial-gradient(circle at 28% 22%, var(--apple-soft) 0%, transparent 55%),
    radial-gradient(circle at 78% 82%, rgba(200, 220, 120, 0.4) 0%, transparent 52%),
    var(--cream-deep);
  padding: 70px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  overflow: hidden;
}
.product-stage img {
  max-width: 94%;
  filter: drop-shadow(0 34px 46px rgba(30, 77, 59, 0.2));
  transition: transform 0.2s linear;
  will-change: transform;
}
.detail-info .page-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.25;
  margin-bottom: 8px;
}
.product-en {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 28px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  margin: 36px 0 26px;
}
.spec-grid > div {
  display: flex;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.spec-grid dt { color: var(--gray); min-width: 34px; font-weight: 500; }
.spec-grid dd { font-weight: 600; }

.allergy-badge {
  display: inline-block;
  background: var(--apple-soft);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  margin-bottom: 18px;
}
.allergy-badge strong { color: var(--apple-deep); margin-right: 10px; font-weight: 700; }

.maker { font-size: 13.5px; color: var(--gray); margin-bottom: 18px; }

.note {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.8;
  padding-left: 14px;
  border-left: 2px solid var(--apple);
  margin-bottom: 32px;
  max-width: 48ch;
}

.product-band { padding: 110px 0 0; max-width: var(--maxw); margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.product-band img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.product-band figcaption {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  margin-top: 16px;
}

/* ---------- Routine cards ---------- */
.routine { padding: 140px 0; }
.routine .section-title { margin-bottom: 70px; }
.routine-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.routine-card { display: block; }
.routine-card figure {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 22px;
}
.routine-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.routine-card:hover img { transform: scale(1.055); }
.routine-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
}
.routine-card h3 .rt-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--apple-deep);
  margin-right: 10px;
}
.routine-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; }

/* ---------- Safety ---------- */
.safety { padding: 0 0 130px; }
.safety-panel {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 58px 62px;
}
.safety-title { font-family: var(--serif); font-size: 25px; font-weight: 600; margin-bottom: 28px; }
.safety-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.safety-list li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--apple-deep);
}
.safety-list strong { color: var(--ink); }

/* ---------- About page ---------- */
.about-quote { padding: 150px 0; background: var(--white); }
.about-quote blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.6;
  max-width: 22ch;
  margin: 0 auto;
  text-align: center;
}
.about-quote blockquote em {
  font-family: var(--display);
  font-style: italic;
  color: var(--apple-deep);
}
.about-body { padding: 130px 0; }
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
  margin-bottom: 130px;
}
.about-split:last-child { margin-bottom: 0; }
.about-split.rev .about-media { order: 2; }
.about-media { border-radius: 20px; overflow: hidden; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
}
.about-media:hover img { transform: scale(1.04); }

/* ---------- Channels ---------- */
.channels { padding: 0 0 140px; }
.channels-note { color: var(--ink-soft); margin: -10px 0 56px; }
.channels-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.channels-media {
  border-radius: 20px;
  overflow: hidden;
}
.channels-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
  transition: transform 1.3s var(--ease);
}
.channels-media:hover img { transform: scale(1.04); }
.channel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.channel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.channel-card:hover {
  transform: translateY(-5px);
  border-color: var(--apple-deep);
  box-shadow: 0 18px 38px rgba(30, 77, 59, 0.1);
}
.channel-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--apple-deep);
}
.channel-card strong { font-size: 16.5px; font-weight: 600; }
.channel-card .placeholder { font-size: 13px; color: var(--gray); }
.channel-card small { font-size: 12px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: 110px 0;
  text-align: center;
}
.cta-band.has-bg {
  background-image:
    linear-gradient(rgba(20, 53, 40, 0.82), rgba(20, 53, 40, 0.82)),
    url('../img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
}
.cta-band .section-title { color: var(--cream); margin-bottom: 18px; }
.cta-band .section-title em { color: var(--apple); }
.cta-band p { color: rgba(250, 249, 244, 0.72); margin-bottom: 40px; }
.cta-band .btn-solid { background: var(--apple); color: var(--ink-deep); }
.cta-band .btn-solid:hover { box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-deep);
  color: rgba(250, 249, 244, 0.9);
  padding: 90px 0 44px;
  overflow: hidden;
}
.footer-giant {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 8.6vw, 118px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(250, 249, 244, 0.1);
  white-space: nowrap;
  margin-bottom: 70px;
  user-select: none;
}
.footer-top {
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(250, 249, 244, 0.16);
  margin-bottom: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-wordmark {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--cream);
}
.footer-tagline { font-size: 14.5px; color: rgba(250, 249, 244, 0.62); }
.footer-nav { display: flex; gap: 26px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(250, 249, 244, 0.72);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--apple); }

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--apple);
  margin-bottom: 26px;
}
.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 48px;
}
.biz-grid > div {
  display: flex;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(250, 249, 244, 0.08);
  font-size: 14px;
}
.biz-grid dt {
  min-width: 150px;
  color: rgba(250, 249, 244, 0.55);
  font-weight: 500;
  flex-shrink: 0;
}
.biz-grid dd { color: var(--cream); font-weight: 500; }
.biz-grid dd.ph { color: rgba(250, 249, 244, 0.42); font-weight: 400; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 249, 244, 0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.disclaimer, .copyright { font-size: 12.5px; color: rgba(250, 249, 244, 0.5); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .brand-teaser-grid, .featured-grid, .detail-grid, .about-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-split.rev .about-media { order: 0; }
  .pillars { grid-template-columns: 1fr; border-top: none; margin-top: 70px; }
  .pillar { border-right: none; border-top: 1px solid var(--line); }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .routine-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .channel-cards { grid-template-columns: 1fr 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .product-stage { min-height: 420px; }
  .safety-panel { padding: 42px 32px; }
  .quote-banner { background-attachment: scroll; min-height: 420px; padding: 84px 24px; }
  .channels-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero.has-bg { padding: 190px 0 100px; }
  .moments-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
  }
  .moment {
    flex: 0 0 58vw;
    scroll-snap-align: start;
  }
  .moment:nth-child(even) { margin-top: 0; }
}

@media (max-width: 720px) {
  .gnb {
    position: fixed;
    top: 0; right: 0;
    height: 100svh;
    width: min(78vw, 320px);
    background: var(--cream);
    flex-direction: column;
    gap: 8px;
    padding: 100px 36px 40px;
    box-shadow: -20px 0 60px rgba(30, 77, 59, 0.14);
    transform: translateX(105%);
    transition: transform 0.5s var(--ease);
    z-index: 99;
  }
  .gnb.open { transform: translateX(0); }
  .gnb a {
    font-size: 18px;
    font-family: var(--serif);
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: flex; z-index: 100; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

  .hero { padding: 120px 0 56px; }
  .hero-stick { display: none; }
  .hero-cta .btn { padding: 13px 26px; font-size: 14px; }
  .scroll-hint { margin-top: 52px; }
  .page-hero { padding: 150px 0 64px; }
  .shop-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .channel-cards { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .biz-grid dt { min-width: 128px; }
  .detail-hero { padding: 140px 0 80px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { animation: none; }
  .anim-up, .reveal, .reveal.clip {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal.clip::after { display: none !important; }
  .hero-bg, .hero-stick { animation: none; }
  .marquee-track { animation: none; }
}
