/* ==========================================================================
   Brewment 랜딩 — 프로 업그레이드 디자인 베이스
   올리브 그라데이션 + 크림 텍스트 + 글래스모피즘 + 그레인
   ========================================================================== */

:root {
  --olive-1: #515A2E;
  --olive-2: #444926;
  --olive-3: #343A1C;
  --cream: #F8F3E6;
  --paper: #FFFEF7;
  --point-1: #EF5026;
  --point-2: #FBBE26;
  --pale-olive: #E0DBA9;

  --glass-bg: rgba(248, 243, 230, 0.07);
  --glass-bg-strong: rgba(248, 243, 230, 0.11);
  --glass-line: rgba(248, 243, 230, 0.16);

  --maxw: 1080px;
  --pad: clamp(20px, 5vw, 40px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

/* 한글 단어 중간 줄바꿈 방지 — 타이틀은 어절 단위로만 줄바꿈 */
.hero-title, .feature-title, .free-title, .seminar-title, .download-title { word-break: keep-all; }

/* 모바일 전용 줄바꿈 (데스크탑에선 무시) */
.mbr { display: none; }
@media (max-width: 640px) { .mbr { display: inline; } }

/* 본문도 어절 단위로만 줄바꿈 (한글 단어 중간 끊김 방지) */
.hero-sub, .feature-desc, .maker-desc, .free-desc, .seminar-desc, .cards-desc, .maker-sign span { word-break: keep-all; }

/* 라틴/숫자 라벨 — 모노스페이스로 정밀·럭셔리 시그널 */
.feature-index, .free-kicker, .badge-soon, .store-btn-text small {
  font-family: ui-monospace, "SF Mono", "JetBrains Mono", "Roboto Mono", Menlo, monospace;
}

/* 프레임 채움 이미지 — 프레임에 꽉 차게 잘리고 모서리 둥글게 */
.hero-phone img, .phone-frame img, .portrait-frame img, .card-tile img, .wide-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
/* 이미지가 들어오면 플레이스홀더 라벨·배지 숨김 (노치는 다이나믹 아일랜드로 유지) */
.phone-frame:has(img)::after,
.portrait-frame:has(img)::after,
.wide-frame:has(img)::after { display: none; }
.card-tile:has(img) .card-ph,
.card-tile:has(img) .card-group { display: none; }

html { scroll-behavior: smooth; }

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--cream);
  background: linear-gradient(165deg, var(--olive-1) 0%, var(--olive-2) 30%, var(--olive-3) 70%, #2c3117 100%);
  min-height: 100dvh;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* 그레인 오버레이 — 전역 고정 */
.grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
  position: relative;
  z-index: 1;
}

/* ── 헤더 ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-block: 12px;
  background: rgba(52, 58, 28, 0.55);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border-bottom: 1px solid var(--glass-line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo-link { display: inline-flex; }
.logo { height: 22px; width: auto; color: var(--point-2); display: block; }

.header-stores { display: flex; gap: 8px; }
.hstore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding-inline: 14px;
  border-radius: 9px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(248, 243, 230, 0.4);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.16s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.hstore:hover { background: rgba(248, 243, 230, 0.12); border-color: rgba(248, 243, 230, 0.7); }
.hstore:active { transform: scale(0.97); }
.hstore svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 640px) {
  .hstore { padding-inline: 0; width: 32px; justify-content: center; gap: 0; border: none; background: transparent; }
  .hstore:hover { background: transparent; }
  .hstore-label { display: none; }
  .hstore svg { width: 19px; height: 19px; }
}

/* ── 히어로 ── */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 12vw, 120px) clamp(40px, 8vw, 80px);
  text-align: center;
}

/* 배경 장식 그래픽 — 페일 올리브 모티프를 톤온톤으로 흩뿌림 */
.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-deco .g {
  position: absolute;
  display: block;
  opacity: 0.2;
  filter: saturate(0.92);
}
.hero-deco .g3 { top: 20%; left: 3%; width: clamp(84px, 11vw, 156px); transform: rotate(-12deg); }
.hero-deco .g1 { bottom: 17%; left: 4%; width: clamp(90px, 12vw, 168px); transform: rotate(7deg); }
.hero-deco .g2 { top: 2%; right: 3%; width: clamp(84px, 11vw, 156px); transform: rotate(11deg); }
.hero-deco .g5 { top: 44%; right: 4%; width: clamp(78px, 10vw, 140px); transform: rotate(-7deg); }
.hero-deco .g4 { bottom: 8%; right: 11%; width: clamp(64px, 8vw, 112px); transform: rotate(-12deg); }

@media (max-width: 640px) {
  .hero-deco { display: none; } /* 모바일에선 배경 그래픽 제거 */
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--point-2);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(30px, 7vw, 56px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.accent {
  background: linear-gradient(100deg, var(--pale-olive), var(--cream) 60%, var(--point-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(14px, 2.6vw, 17px);
  font-weight: 500;
  color: rgba(248, 243, 230, 0.78);
  line-height: 1.5;
}
.hero-cta {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 히어로 폰 목업 클러스터 — 중앙 크게, 좌우는 뒤로 기울여 배치 + 마우스 추종 3D */
.hero-mockups {
  position: relative;
  margin-top: clamp(44px, 8vw, 80px);
  display: flex;
  justify-content: center;
  perspective: 1100px;
}
/* radial 스포트라이트 글로우 — 이미지 0장 */
.hero-mockups::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 47%;
  width: 88%;
  height: 88%;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(251, 190, 38, 0.14), rgba(204, 213, 174, 0.06) 46%, transparent 72%);
  filter: blur(22px);
  pointer-events: none;
}
.hero-mockups-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-phone {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 9 / 19.5;
  border-radius: 30px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-phone::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 1.2%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 4.2%;
  border-radius: 999px;
  background: #0b0b0d;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.hero-phone--main {
  width: clamp(158px, 42vw, 236px);
  z-index: 2;
  transform: translateZ(55px);
}
.hero-phone--side {
  width: clamp(126px, 34vw, 196px);
  z-index: 1;
  opacity: 0.94;
}
.hero-mockups-inner .hero-phone--side:first-child {
  transform: rotate(-7deg) translateY(26px) translateZ(-18px);
  margin-right: clamp(-34px, -7vw, -22px);
}
.hero-mockups-inner .hero-phone--side:last-child {
  transform: rotate(7deg) translateY(26px) translateZ(-18px);
  margin-left: clamp(-34px, -7vw, -22px);
}

/* ── 버튼 ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding-inline: 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.16s var(--ease), background 0.2s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--cream);
  color: var(--olive-2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}
.btn-primary:hover { background: #fff; }
.btn-ghost {
  background: var(--glass-bg);
  color: var(--cream);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: var(--glass-bg-strong); }

/* ── 기능 ── */
.features { padding-block: clamp(20px, 5vw, 48px); }
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  padding-block: clamp(48px, 9vw, 96px);
}
.feature-reverse .feature-copy { order: 2; }
.feature-reverse .feature-shot { order: 1; }

.feature-index {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--point-2);
  margin-bottom: 14px;
}
.feature-title {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.feature-desc {
  margin-top: 18px;
  font-size: clamp(14px, 2.4vw, 16px);
  font-weight: 500;
  color: rgba(248, 243, 230, 0.74);
  line-height: 1.5;
  max-width: 38ch;
}
.feature-shot { display: flex; justify-content: center; perspective: 1100px; }
.feature-shot .phone-frame { will-change: transform; }

/* 폰 스크린샷 빈 프레임 */
.phone-frame {
  position: relative;
  width: min(280px, 72vw);
  aspect-ratio: 9 / 19.5;
  border-radius: 36px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-frame::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 1.2%;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 4.2%;
  border-radius: 999px;
  background: #0b0b0d;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.phone-frame::after {
  content: attr(data-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(248, 243, 230, 0.4);
}

/* 와이드 빈 프레임 (세미나) */
.wide-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wide-frame::after {
  content: attr(data-label);
  font-size: 13px;
  font-weight: 600;
  color: rgba(248, 243, 230, 0.4);
}

/* ── 전면 무료 ── */
.free-banner { padding-block: clamp(40px, 8vw, 80px); }
.free-card {
  text-align: center;
  padding: clamp(40px, 8vw, 72px) clamp(24px, 6vw, 56px);
  border-radius: 24px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 50px rgba(0, 0, 0, 0.2);
}
.free-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--point-2);
  margin-bottom: 16px;
}
.free-title {
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.free-desc {
  margin-top: 20px;
  font-size: clamp(14px, 2.6vw, 17px);
  font-weight: 500;
  color: rgba(248, 243, 230, 0.78);
  line-height: 1.5;
}

/* ── 세미나 ── */
.seminar { padding-block: clamp(40px, 8vw, 80px); }
.seminar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "head shot" "body shot";
  align-items: center;
  column-gap: clamp(28px, 6vw, 64px);
  row-gap: 0;
}
.seminar-head { grid-area: head; }
.seminar-body { grid-area: body; }
.seminar-shot { grid-area: shot; }
.badge-soon {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--olive-2);
  background: var(--point-2);
  margin-bottom: 18px;
}
.seminar-title {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.seminar-desc {
  margin-top: 18px;
  font-size: clamp(14px, 2.4vw, 16px);
  font-weight: 500;
  color: rgba(248, 243, 230, 0.74);
  line-height: 1.5;
  max-width: 40ch;
}

/* ── 만든 사람 / 약력 ── */
.maker { padding-block: clamp(40px, 8vw, 80px); }
.maker-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-areas: "portrait head" "portrait body";
  align-items: center;
  column-gap: clamp(28px, 6vw, 64px);
  row-gap: 0;
}
.maker-portrait { grid-area: portrait; display: flex; justify-content: center; }
.maker-head { grid-area: head; }
.maker-body { grid-area: body; }
.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-frame::after {
  content: attr(data-label);
  font-size: 13px;
  font-weight: 600;
  color: rgba(248, 243, 230, 0.4);
}
.maker-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--point-2);
  margin-bottom: 14px;
}
.maker-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.maker-desc {
  margin-top: 16px;
  font-size: clamp(14px, 2.4vw, 16px);
  font-weight: 500;
  color: rgba(248, 243, 230, 0.76);
  line-height: 1.5;
}
.maker-sign {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--glass-line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.maker-sign strong { font-size: 18px; font-weight: 800; }
.maker-sign span { font-size: 18px; font-weight: 700; color: var(--point-2); letter-spacing: 0.01em; line-height: 1.4; word-break: keep-all; }

.creds {
  margin-top: clamp(32px, 6vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(24px, 5vw, 40px);
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.creds-head {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--glass-line);
}
.creds-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.creds-list li {
  position: relative;
  padding-left: 14px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(248, 243, 230, 0.78);
  word-break: keep-all;
}
.creds-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--point-2);
  opacity: 0.7;
}

/* ── 카드로 배우는 커피 ── */
.cards-learn { padding-block: clamp(40px, 8vw, 80px); text-align: center; }
.cards-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--point-2);
  margin-bottom: 14px;
}
.cards-title {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.cards-desc {
  margin: 18px auto 0;
  max-width: 46ch;
  font-size: clamp(14px, 2.4vw, 16px);
  font-weight: 500;
  color: rgba(248, 243, 230, 0.76);
  line-height: 1.5;
}

/* 가로 자동 루프 갤러리 — 카드를 두 벌 이어붙여 끊김 없이 흐름 */
.gallery-loop {
  margin-top: clamp(28px, 5vw, 44px);
  overflow: hidden;
  padding-block: 6px;
  /* 좌우 가장자리 페이드 */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gallery-row {
  display: flex;
  width: max-content;
  animation: card-marquee 50s linear infinite;
}
.gallery-loop:hover .gallery-row { animation-play-state: paused; }
@keyframes card-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.card-tile {
  position: relative;
  flex: 0 0 auto;
  width: clamp(150px, 42vw, 208px);
  aspect-ratio: 227 / 318;
  margin-right: clamp(12px, 2.5vw, 18px);
  border-radius: 14px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.card-ph {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(248, 243, 230, 0.4);
}
.card-group {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--olive-2);
}
.g-result { background: var(--point-2); }
.g-evidence { background: var(--pale-olive); }
.g-solution { background: #CBD89B; }

/* ── 다운로드 ── */
.download {
  padding-block: clamp(64px, 12vw, 128px);
  text-align: center;
}
/* 순서: 타이틀 → 서브 → 로고 모핑 → 스토어 버튼 */
.download-inner { display: flex; flex-direction: column; align-items: center; }
.download-title { order: 1; }
.download-sub { order: 2; }
.splash-mark { order: 3; }
.store-buttons { order: 4; }

/* 스플래시 리퀴드 로고 모션 — bre·wing mom·ent 융합 → 스퀴글 모핑 → brewment */
.splash-mark {
  position: relative;
  display: flex;
  justify-content: center;
  margin-block: clamp(26px, 5vw, 44px);
}
/* radial 스포트라이트 — 노란 로고 뒤 글로우 */
.splash-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  height: 240%;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(251, 190, 38, 0.16), transparent 70%);
  filter: blur(26px);
  pointer-events: none;
}
#smark-stage {
  width: clamp(300px, 84vw, 540px);
  height: auto;
  overflow: visible;
  color: var(--point-2);
}
/* 재생 전까지 글자/블롭 숨김 — JS가 등장부터 제어 */
.sm-l, .sm-m, .sm-r { opacity: 0; }
.download-title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.download-sub {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(248, 243, 230, 0.7);
}
.store-buttons {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  padding-inline: 22px;
  border-radius: 14px;
  background: rgba(20, 22, 12, 0.55);
  border: 1px solid var(--glass-line);
  color: var(--cream);
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.16s var(--ease), background 0.2s var(--ease);
}
.store-btn:hover { background: rgba(20, 22, 12, 0.72); }
.store-btn:active { transform: scale(0.97); }
.store-btn svg { flex-shrink: 0; }
.store-btn-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.store-btn-text small { font-size: 10px; font-weight: 500; opacity: 0.75; letter-spacing: 0.02em; }
.store-btn-text strong { font-size: 17px; font-weight: 700; }

/* ── 푸터 ── */
.site-footer {
  padding-block: 40px;
  border-top: 1px solid var(--glass-line);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-logo { height: 16px; width: auto; color: var(--cream); opacity: 0.6; display: block; }
.footer-meta { font-size: 12px; color: rgba(248, 243, 230, 0.5); }

/* ── 스크롤 리빌 ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── 반응형 ── */
@media (max-width: 760px) {
  .feature,
  .feature-reverse,
  .seminar-inner,
  .maker-inner,
  .creds {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-copy,
  .feature-shot,
  .feature-reverse .feature-copy,
  .feature-reverse .feature-shot {
    order: 0;
  }
  .feature-copy,
  .seminar-head,
  .seminar-body,
  .maker-head,
  .maker-body {
    text-align: center;
  }
  .maker-sign { align-items: center; }
  .feature-desc,
  .seminar-desc {
    max-width: none;
    margin-inline: auto;
  }
  /* 모바일: 제목 → 사진 → 본문 순서 */
  .maker-inner { grid-template-areas: "head" "portrait" "body"; row-gap: 22px; }
  .seminar-inner { grid-template-areas: "head" "shot" "body"; row-gap: 20px; }
  .portrait-frame { max-width: 280px; }
  .creds { gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .gallery-row { animation: none; }
}
