*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-deep: #0a0908;
  --bg-mid: #141210;
  --bg-warm: #1c1814;
  --accent: #e8c4a0;
  --accent-dim: rgba(232, 196, 160, 0.45);
  /* 포인트 컬러(빨간색) */
  --accent-strong: #c41e3a;
  --accent-strong-2: #9f1239;
  --accent-strong-3: #7f1d1d;
  --accent-strong-glow: rgba(196, 30, 58, 0.24);
  /* 어두운 배경에서 쓰는 더 밝은 포인트 */
  --accent-strong-on-dark: #ff7b7b;
  --accent-strong-on-dark-glow: rgba(255, 123, 123, 0.28);
  --text-mute: rgba(245, 240, 232, 0.72);
  --snap-stop: always;
  /* 슬라이드 전환: 길게 + 끝에서 부드럽게 감속 */
  --slide-ease: cubic-bezier(0.2, 0.85, 0.25, 1);
  --slide-duration: 0.88s;
}

html {
  /* 모바일/사파리에서 스냅이 스크롤을 잠그는 케이스가 있어 기본은 일반 스크롤 */
  scroll-snap-type: none;
  scroll-behavior: auto;
  scroll-padding: 0;
}

/* 모바일: 스냅·부드럽게 스크롤 해제 → 일반 페이지처럼 관성 스크롤 */
@media (max-width: 768px) {
  html {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }

  :root {
    --snap-stop: normal;
  }

  .slider {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  body {
    overscroll-behavior-y: auto;
  }

  /* 가로 캐러셀만 쓰는 영역에서도 세로 페이지 스크롤이 먹도록 */
  .menu-editorial__viewport {
    touch-action: pan-x pan-y;
  }

  .gallery-slide {
    touch-action: pan-x pan-y;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  :root {
    --slide-duration: 0.14s;
  }
}

/* 데스크톱 + 모션 줄임: 스냅만 살짝 완화 */
@media (prefers-reduced-motion: reduce) and (min-width: 769px) {
  html {
    scroll-snap-type: y proximity;
  }
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg-deep);
  color: #f5f0e8;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  /* iOS에서 clip이 텍스트 렌더링/잘림 이슈를 만들 수 있어 hidden으로 통일 */
  overflow-x: hidden;
  overscroll-behavior-x: none;
  overflow-y: auto;
}

body {
  position: relative;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* 아주 옅은 질감(SVG feTurbulence 전면 합성은 GPU·스크롤에 부담이 커서 CSS 타일만 사용) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent 0 2px,
      rgba(255, 250, 245, 0.018) 2px 3px
    ),
    repeating-linear-gradient(
      78deg,
      transparent 0 3px,
      rgba(0, 0, 0, 0.04) 3px 4px
    );
}

/* 모바일 성능: fixed 질감/블러/무한 애니메이션 최소화 */
@media (max-width: 768px) {
  body::before {
    opacity: 0;
    background-image: none;
  }

  .gallery-promo__info,
  .slider__hint,
  .all-in-price__inner::before {
    backdrop-filter: none;
  }

  .gallery-promo__float,
  .sec2-full__float {
    animation: none;
  }
}

/* 섹션7 → 섹션8 전환 페이드 */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 260ms ease;
  background: radial-gradient(
      ellipse 80% 70% at 50% 50%,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.55) 70%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    rgba(0, 0, 0, 0.6);
}

.page-transition.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition {
    transition: none;
  }
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow-x: hidden;
}

.slider {
  position: relative;
  flex: none;
  width: 100%;
  /* 전체 섹션을 콘텐츠 기반 반응형으로 */
  height: auto;
  min-height: 100svh;
  overflow: visible;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  box-sizing: border-box;
}

/* 주소창·노치 대응 */
@supports (min-height: 100dvh) {
  .slider {
    min-height: 100dvh;
  }
}

/* 섹션 사이 은은한 구분 */
.slider + .slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  z-index: 5;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 196, 160, 0.22) 20%,
    rgba(232, 196, 160, 0.35) 50%,
    rgba(232, 196, 160, 0.22) 80%,
    transparent
  );
  box-shadow: 0 1px 12px rgba(232, 196, 160, 0.08);
}

.slider__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* 반응형 기본: 섹션이 auto-height일 때 viewport가 높이를 못 받는 문제 방지 */
.slider > .slider__viewport {
  position: relative;
  inset: auto;
  width: 100%;
  min-height: 100svh;
}

@supports (min-height: 100dvh) {
  .slider > .slider__viewport {
    min-height: 100dvh;
  }
}

.slider__track {
  display: flex;
  height: 100%;
  transition: transform var(--slide-duration) var(--slide-ease);
  will-change: transform;
}

.slider__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: var(--bg-warm);
}

.slider__slide--full {
  padding: 0;
}

.slider__cell {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #12100e;
  transform-origin: center center;
  transition: transform var(--slide-duration) var(--slide-ease);
}

.slider__slide:not(.is-active) .slider__cell {
  transform: scale(0.9);
}

.slider__slide.is-active .slider__cell {
  transform: scale(1.04);
}

.slider__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 섹션1: 16:9 이미지에 맞춰 위·아래 빈 공간 제거 */
.slider--zoom-out {
  min-height: min(100svh, calc(100vw * 9 / 16));
  height: min(100svh, calc(100vw * 9 / 16));
}

@supports (min-height: 100dvh) {
  .slider--zoom-out {
    min-height: min(100dvh, calc(100vw * 9 / 16));
    height: min(100dvh, calc(100vw * 9 / 16));
  }
}

.slider--zoom-out > .slider__viewport {
  min-height: 100%;
  height: 100%;
}

/* 히어로: 가장자리 살짝 어둡게 */
.slider--zoom-out .slider__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    ellipse 85% 75% at 50% 45%,
    transparent 30%,
    rgba(5, 4, 3, 0.35) 100%
  );
}

.slider--zoom-out .slider__track {
  position: relative;
  z-index: 0;
}

.slider__hero-title {
  position: absolute;
  left: clamp(1rem, 5vw, 3rem);
  top: 50%;
  transform: translateY(-54%);
  z-index: 8;
  margin: 0;
  padding: 0.12em 0.35em 0.16em;
  font-size: clamp(3.5rem, 15vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.05;
  color: #faf7f2;
  pointer-events: none;
  user-select: none;
  max-width: calc(100% - 1.25rem);
  text-align: left;
  word-break: keep-all;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 4px 24px rgba(0, 0, 0, 0.55),
    0 16px 70px rgba(0, 0, 0, 0.55);
}

.slider__hero-copy {
  position: absolute;
  left: clamp(1rem, 5vw, 3rem);
  top: calc(50% + clamp(3.1rem, 10vw, 5.2rem));
  transform: none;
  z-index: 8;
  margin: 0;
  width: min(46rem, calc(100% - clamp(2rem, 10vw, 6rem)));
  text-align: left;
  white-space: pre-line;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.9);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.65),
    0 18px 60px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  user-select: none;
}

/* 섹션1: 타이틀+카피를 하나의 반투명 패널로 묶기 */
.slider__hero-panel {
  position: absolute;
  left: clamp(1rem, 5vw, 3rem);
  top: 50%;
  transform: translateY(-56%);
  z-index: 8;
  width: min(46rem, calc(100% - clamp(2rem, 10vw, 6rem)));
  padding: clamp(0.65rem, 2.2vw, 1rem) clamp(0.75rem, 2.6vw, 1.15rem);
  display: grid;
  gap: clamp(0.5rem, 1.6dvh, 0.8rem);
  box-sizing: border-box;
  background: rgba(5, 4, 3, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.slider__hero-panel .slider__hero-title,
.slider__hero-panel .slider__hero-copy {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.slider__hero-panel .slider__hero-copy {
  color: rgba(250, 247, 242, 0.92);
}

.slider__hero-panel .slider__hero-title {
  font-size: clamp(3.5rem, 9vw, 6.25rem);
  letter-spacing: 0.1em;
  line-height: 1.05;
}

.slider__hero-panel .slider__hero-copy {
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  line-height: 1.52;
}

.slider--hero-static .slider__hero-panel .slider__hero-emphasis {
  font-size: clamp(1.4em, 4.5vw, 2em);
}

.slider__hero-accent {
  color: var(--accent-strong-on-dark);
  font-weight: 950;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.55),
    0 0 26px var(--accent-strong-on-dark-glow);
}

.slider__hero-accent-line {
  white-space: nowrap;
  display: inline-block;
}

.slider__hero-accent--big {
  font-size: clamp(1.28em, 3.8vw, 1.75em);
  letter-spacing: 0.02em;
}

.slider__hero-emphasis {
  display: inline-block;
  margin-top: 0.15em;
  font-size: clamp(1.4em, 4.5vw, 2em);
  font-weight: 950;
  letter-spacing: 0.01em;
  color: var(--accent-strong-on-dark);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.6),
    0 0 30px var(--accent-strong-on-dark-glow),
    0 18px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .slider--zoom-out .slider__progress {
    top: max(0.4rem, env(safe-area-inset-top, 0px));
    bottom: auto;
  }

  .slider--zoom-out .slider__hero-panel {
    top: auto;
    bottom: max(0.55rem, env(safe-area-inset-bottom, 0px));
    left: max(0.55rem, env(safe-area-inset-left, 0px));
    right: max(0.55rem, env(safe-area-inset-right, 0px));
    width: auto;
    max-width: none;
    transform: none;
    padding: clamp(0.5rem, 2.5vw, 0.7rem) clamp(0.6rem, 3vw, 0.8rem);
    gap: clamp(0.3rem, 1.5vw, 0.45rem);
    border-radius: 12px;
  }

  .slider__hero-panel .slider__hero-title {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
    letter-spacing: 0.08em;
  }

  .slider__hero-accent-line {
    font-size: 0.98em;
  }

  .slider__hero-panel .slider__hero-copy {
    font-size: clamp(1rem, 4.2vw, 1.2rem);
    line-height: 1.45;
  }

  .slider__hero-emphasis,
  .slider--hero-static .slider__hero-panel .slider__hero-emphasis {
    font-size: clamp(1.22em, 4.8vw, 1.45em);
  }
}

@media (max-width: 640px) {
  .slider__hero-title {
    font-size: clamp(2.1rem, 10.5vw, 4.25rem);
    letter-spacing: 0.08em;
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding: 0.14em 0.4em 0.18em;
    max-width: calc(100% - 0.5rem);
  }

  .slider__hero-copy {
    top: calc(50% + clamp(2.65rem, 10vw, 4.15rem));
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    width: calc(100% - 0.5rem);
    font-size: clamp(0.92rem, 3.6vw, 1.15rem);
    line-height: 1.5;
    padding: 0.75em 0.8em 0.8em;
  }
}

/* 섹션1: 슬라이드 표시 시간 동안 살짝 확대 → 원래 크기 */
.slider__cell--zoom img {
  transform: scale(1.12);
  transform-origin: center center;
  will-change: transform;
}

@keyframes sliderZoomOut {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slider--zoom-out .slider__cell--zoom img {
    animation: none !important;
    transform: scale(1) !important;
  }
}

.slider__cell--missing {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2a2420 0%, #141210 100%);
}

/* 섹션2: 작은 카드형 가로 슬라이드 + 자동 재생 */
.section-gallery {
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(232, 196, 160, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(60, 48, 36, 0.35) 0%, transparent 55%),
    linear-gradient(175deg, #1a1612 0%, #0e0c0a 50%, #060504 100%);
}

.section-gallery__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  padding: 0;
  position: relative;
}

.section-gallery.section-gallery--promo {
  display: flex;
  flex-direction: column;
}

.gallery-slide {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  gap: clamp(0.55rem, 2dvh, 1rem);
  min-height: 0;
  padding:
    max(0.75rem, env(safe-area-inset-top, 0px))
    max(0.75rem, env(safe-area-inset-right, 0px))
    max(1rem, env(safe-area-inset-bottom, 0px))
    max(0.75rem, env(safe-area-inset-left, 0px));
  outline: none;
  touch-action: manipulation;
}

.gallery-slide:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(232, 196, 160, 0.28);
}

.gallery-slide__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  flex: 1;
  min-height: 0;
}

.gallery-slide__viewport {
  width: 100%;
  max-width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: clamp(10px, 2.2vw, 16px);
  background: #080706;
  box-shadow:
    0 0 0 1px rgba(255, 250, 245, 0.09),
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 2px 12px rgba(0, 0, 0, 0.35);
}

.gallery-slide__track {
  --gallery-slides: 1;
  display: flex;
  width: calc(var(--gallery-slides) * 100%);
  transform: translateX(0);
  transition: transform var(--slide-duration) var(--slide-ease);
  will-change: transform;
}

.gallery-slide__item {
  flex: 0 0 calc(100% / var(--gallery-slides));
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.gallery-slide__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: clamp(8px, 1.8vw, 12px);
  overflow: hidden;
  background: #0a0908;
}

.gallery-slide__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

/* 섹션2 프로모션(레퍼런스 느낌: 좌 카피/정보 카드 + 우 이미지) */
.section-gallery__inner--promo {
  padding:
    max(0.75rem, env(safe-area-inset-top, 0px))
    max(0.9rem, env(safe-area-inset-right, 0px))
    max(1rem, env(safe-area-inset-bottom, 0px))
    max(0.9rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
}

.gallery-promo {
  flex: 1;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(16rem, 0.95fr) minmax(16rem, 1.15fr);
  grid-template-rows: auto 1fr;
  gap: clamp(0.85rem, 2.6vw, 1.35rem);
  align-items: stretch;
  position: relative;
}

.gallery-promo__header {
  grid-column: 1 / -1;
  align-self: start;
  text-align: center;
  padding-top: clamp(0.15rem, 1dvh, 0.5rem);
}

.gallery-promo__title {
  margin: 0;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: clamp(1.35rem, 4.8vw, 2.8rem);
  color: #fff5e6;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.6),
    0 20px 70px rgba(0, 0, 0, 0.5);
}

.gallery-promo__pill {
  margin: clamp(0.4rem, 1.6dvh, 0.75rem) auto 0;
  display: inline-block;
  padding: 0.5em 1.05em 0.58em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(24, 18, 14, 0.92);
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(0.92rem, 2.9vw, 1.25rem);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.gallery-promo__sub {
  margin: clamp(0.35rem, 1.2dvh, 0.55rem) 0 0;
  font-weight: 700;
  font-size: clamp(0.88rem, 2.55vw, 1.1rem);
  letter-spacing: 0.02em;
  color: rgba(255, 248, 235, 0.88);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.gallery-promo__info {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.7rem, 2.6dvh, 1.25rem);
  padding: clamp(0.75rem, 3dvh, 1.4rem);
  border-radius: clamp(14px, 2.4vw, 22px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 65%),
    rgba(10, 8, 7, 0.28);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(255, 250, 245, 0.12);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.gallery-promo__info::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.16) 1px, transparent 1px) 0 0 / 4px 4px,
    repeating-linear-gradient(
      -12deg,
      rgba(255, 255, 255, 0.05) 0 1px,
      transparent 1px 16px
    );
  opacity: 0.55;
  pointer-events: none;
}

.gallery-promo__badge {
  position: absolute;
  right: clamp(0.65rem, 2.3vw, 1.05rem);
  top: clamp(0.65rem, 2.3vw, 1.05rem);
  z-index: 2;
  width: clamp(3.2rem, 14vw, 4.7rem);
  height: clamp(3.2rem, 14vw, 4.7rem);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 950;
  letter-spacing: 0.04em;
  font-size: clamp(0.6rem, 2.4vw, 0.85rem);
  color: rgba(255, 248, 235, 0.95);
  background: radial-gradient(
    circle at 30% 25%,
    rgba(255, 255, 255, 0.14) 0%,
    transparent 55%
  );
  background-color: #b51218;
  clip-path: polygon(
    50% 0%,
    62% 14%,
    82% 10%,
    76% 30%,
    94% 38%,
    76% 48%,
    90% 68%,
    68% 62%,
    58% 88%,
    50% 72%,
    42% 88%,
    32% 62%,
    10% 68%,
    24% 48%,
    6% 38%,
    24% 30%,
    18% 10%,
    38% 14%
  );
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.4));
  transform: rotate(10deg);
}

.gallery-promo__stat {
  position: relative;
  z-index: 1;
  padding: clamp(0.9rem, 3.4dvh, 1.5rem);
  border-radius: clamp(12px, 2.2vw, 18px);
  background: rgba(8, 7, 6, 0.82);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 250, 245, 0.1);
}

.gallery-promo__stat-label {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: clamp(0.85rem, 2.6vw, 1.05rem);
  color: rgba(255, 248, 235, 0.78);
}

.gallery-promo__stat-value {
  margin: 0.35em 0 0;
  font-weight: 950;
  letter-spacing: 0.06em;
  font-size: clamp(1.6rem, 6vw, 2.85rem);
  color: #ff5b5b;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(255, 70, 70, 0.28);
}

.gallery-promo__stat-note {
  margin: 0.6em 0 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 3.4vw, 1.45rem);
  color: rgba(255, 248, 235, 0.9);
}

.gallery-promo__media {
  padding: 0;
  gap: 0;
  align-items: stretch;
  justify-content: stretch;
}

.gallery-promo__float {
  position: absolute;
  left: clamp(0.6rem, 2.2vw, 1.4rem);
  bottom: max(0.7rem, env(safe-area-inset-bottom, 0px));
  width: clamp(3.6rem, 7.2vw, 5.6rem);
  height: auto;
  z-index: 6;
  pointer-events: none;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
  animation: galleryFloat 3.6s ease-in-out infinite;
}

.gallery-promo__float--small {
  opacity: 0.98;
}

@keyframes galleryFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(2deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
}

.gallery-promo__media .gallery-slide__frame img {
  object-position: center;
}

.gallery-promo__media2 {
  position: relative;
  min-height: 0;
  border-radius: clamp(14px, 2.4vw, 22px);
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.gallery-promo__media2-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.gallery-promo__media2--missing {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f2f2f2 0%, #ffffff 100%);
}

.gallery-promo__media2-ph {
  font-size: clamp(1.1rem, 4.2vw, 2rem);
  font-weight: 700;
  opacity: 0.28;
}

.gallery-promo__media .gallery-slide__stage,
.gallery-promo__media .gallery-slide__viewport,
.gallery-promo__media .gallery-slide__frame {
  border-radius: clamp(14px, 2.4vw, 22px);
}

.gallery-promo__media .gallery-slide__progress {
  margin-top: clamp(0.55rem, 1.8dvh, 0.9rem);
}

@media (max-width: 900px) {
  .gallery-promo {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }

  .gallery-promo__info {
    order: 2;
  }

  .gallery-promo__media {
    order: 3;
    min-height: min(52vh, 28rem);
  }

  .gallery-promo__float {
    left: clamp(0.55rem, 2.2vw, 1.1rem);
    bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
    width: clamp(3.4rem, 10vw, 5.3rem);
  }
}

.gallery-slide__progress {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: 100%;
  margin-top: 0.65rem;
  z-index: 4;
}

.gallery-slide__frame--missing {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #241f1a 0%, #0c0a08 100%);
}

.gallery-slide__ph {
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  font-weight: 600;
  opacity: 0.28;
}

@media (max-width: 640px) {
  .section-gallery__hint {
    top: max(0.55rem, env(safe-area-inset-top, 0px));
  }

  .section-gallery--slide .section-gallery__caption--slide {
    font-size: clamp(0.98rem, 4.1vw, 1.45rem);
    line-height: 1.35;
  }

  .gallery-slide__frame { height: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-slide__track {
    transition-duration: 0.16s;
  }
}

.section-gallery__hint {
  top: 0.75rem;
}

/* 섹션2: sec2 이미지 풀화면(여백 없이 꽉 채움) */
.sec2-full {
  background: #0e0c0a;
}

.sec2-full__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sec2-full__frame {
  position: absolute;
  inset: 0;
  background: #0e0c0a;
}

.sec2-full__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  background: #0e0c0a;
}

/* 모바일: 가로 배너가 cover로 좌우·상하 잘리지 않게 전체 노출 */
@media (max-width: 768px) {
  .slider.sec2-full {
    min-height: 0;
    height: auto;
  }

  .sec2-full__viewport,
  .sec2-full__frame {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .sec2-full__img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
  }
}

.sec2-full__float {
  position: absolute;
  left: clamp(0.6rem, 2.2vw, 1.4rem);
  bottom: max(0.6rem, env(safe-area-inset-bottom, 0px));
  width: clamp(8rem, 20vw, 16rem);
  height: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.25));
  animation: sec2Float 3.8s ease-in-out infinite;
}

@media (max-width: 640px) {
  .sec2-full__float {
    width: clamp(10.5rem, 38vw, 18.5rem);
    left: max(0.55rem, env(safe-area-inset-left, 0px));
    bottom: max(0.55rem, env(safe-area-inset-bottom, 0px));
  }
}

@keyframes sec2Float {
  0% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(2deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
}

.sec2-full__frame--missing {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #241f1a 0%, #0c0a08 100%);
}

.sec2-full__ph {
  font-size: clamp(1.1rem, 4.2vw, 2rem);
  font-weight: 700;
  opacity: 0.28;
}

/* 섹션2: 프로모션 배너(레퍼런스 스타일) */
.sec2-promo {
  background:
    radial-gradient(ellipse 80% 70% at 50% -10%, rgba(255, 210, 110, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 120%, rgba(255, 190, 70, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 0% 120%, rgba(0, 0, 0, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, #130e0a 0%, #0a0705 60%, #070504 100%);
  color: #fff5e6;
}

.sec2-promo__inner {
  position: absolute;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(0.55rem, 2.2dvh, 1.1rem);
  padding:
    max(1rem, env(safe-area-inset-top, 0px))
    max(1rem, env(safe-area-inset-right, 0px))
    max(1.1rem, env(safe-area-inset-bottom, 0px))
    max(1rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  text-align: center;
}

.sec2-promo__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 1.2em 0.6em;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(0.9rem, 3.2vw, 1.15rem);
  color: rgba(24, 18, 14, 0.92);
  background: linear-gradient(180deg, #ffd667 0%, #f2b62f 100%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sec2-promo__headline {
  margin: 0;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-weight: 1000;
  letter-spacing: 0.02em;
  line-height: 1.03;
  font-size: clamp(2rem, 7.4vw, 4.1rem);
  transform: skewX(-8deg);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.85),
    0 10px 28px rgba(0, 0, 0, 0.55);
  position: relative;
}

/* 뒤에 깔리는 어두운 레이어(입체감) */
.sec2-promo__headline::before {
  content: attr(data-text);
  position: absolute;
  left: 0.14em;
  top: 0.16em;
  width: 100%;
  color: rgba(40, 28, 18, 0.75);
  filter: blur(0.2px);
  z-index: -1;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.85),
    0 18px 60px rgba(0, 0, 0, 0.55);
}

/* 헤드라인 일부 강조(노란색) */
.sec2-promo__headline {
  background: linear-gradient(90deg, rgba(205, 160, 70, 0.22), transparent 55%);
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.28);
}

.sec2-promo__headline strong {
  color: #ffd04d;
}

.sec2-promo__sub {
  margin: 0;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 3.8vw, 1.55rem);
  color: rgba(255, 248, 235, 0.92);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.65),
    0 18px 60px rgba(0, 0, 0, 0.45);
}

.sec2-promo__points {
  width: min(44rem, calc(100% - 1.5rem));
  margin: clamp(0.55rem, 2.2dvh, 1rem) auto 0;
  display: grid;
  gap: clamp(0.45rem, 1.9dvh, 0.85rem);
  text-align: center;
}

.sec2-promo__point {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.02rem, 3.5vw, 1.35rem);
  line-height: 1.35;
  color: rgba(255, 248, 235, 0.92);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.65),
    0 18px 60px rgba(0, 0, 0, 0.45);
}

.sec2-promo__point--emph {
  width: min(48rem, calc(100% - 0.25rem));
  margin: 0 auto;
  padding: clamp(0.75rem, 2.6vw, 1.05rem) clamp(1rem, 3.4vw, 1.35rem);
  border-radius: 18px;
  font-weight: 1000;
  font-size: clamp(1.22rem, 4.4vw, 1.8rem);
  letter-spacing: 0.01em;
  line-height: 1.28;
  color: rgba(22, 16, 11, 0.94);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, #ffe08a 0%, #ffd04d 48%, #f2b62f 100%);
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.sec2-promo__accent {
  color: #ffd667;
  font-weight: 950;
}

.sec2-promo__accent2 {
  color: #ffe7a6;
  font-weight: 950;
}

.sec2-promo__accent3 {
  color: var(--accent-strong-on-dark);
  font-weight: 1000;
  text-shadow:
    0 0 28px var(--accent-strong-on-dark-glow),
    0 2px 10px rgba(0, 0, 0, 0.65);
}

/* 골드 카드 위에서는 밝은 형광 톤 대신 ‘진한 잉크’로 대비를 확보 */
.sec2-promo__point--emph .sec2-promo__accent {
  color: #5a2a00;
  font-weight: 1000;
  text-shadow: none;
}

.sec2-promo__point--emph .sec2-promo__accent2 {
  color: #3d2208;
  font-weight: 1000;
  text-shadow: none;
}

.sec2-promo__point--emph .sec2-promo__accent3 {
  color: #7f1d1d;
  font-weight: 1000;
  text-shadow:
    0 0 18px rgba(127, 29, 29, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.25);
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes sec2-promo-point-glow {
    0%,
    100% {
      box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 0 rgba(255, 208, 77, 0);
    }
    50% {
      box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 38px rgba(255, 208, 77, 0.55);
    }
  }

  .sec2-promo__point--emph {
    animation: sec2-promo-point-glow 3.2s ease-in-out infinite;
  }
}

@media (max-width: 420px) {
  .sec2-promo__headline {
    transform: skewX(-6deg);
    letter-spacing: 0.01em;
  }
}

/* 섹션(추가): 레시피/노하우 전수 - 베이지 에디토리얼 */
.recipe-transfer {
  background: linear-gradient(180deg, #fbf6ed 0%, #f4efe6 100%);
  color: rgba(80, 15, 22, 0.92);
  font-family: "Noto Sans KR", system-ui, sans-serif;
}

/* recipe-transfer는 콘텐츠 기반으로 늘어나는 반응형 섹션 */
.slider.recipe-transfer {
  height: auto;
  min-height: 100svh;
  overflow: visible;
}

.recipe-transfer__inner {
  position: relative;
  inset: auto;
  overflow-y: auto;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  min-height: 100svh;
  padding:
    max(0.9rem, env(safe-area-inset-top, 0px))
    max(1.15rem, env(safe-area-inset-right, 0px))
    calc(max(0.95rem, env(safe-area-inset-bottom, 0px)) + 5.5rem)
    max(1.15rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto 1fr;
  row-gap: clamp(0.35rem, 1.2dvh, 0.7rem);
  max-width: 58rem;
  margin: 0 auto;
}

/* iOS Safari: body touch-action은 스크롤을 막을 수 있어 사용하지 않음 */

/* 종이 질감/오염 */
.recipe-transfer__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(ellipse 60% 35% at 20% 20%, rgba(90, 60, 30, 0.06), transparent 60%),
    radial-gradient(ellipse 55% 32% at 85% 75%, rgba(60, 40, 20, 0.05), transparent 62%),
    radial-gradient(circle at 15% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 55%),
    repeating-linear-gradient(-12deg, rgba(0, 0, 0, 0.018) 0 1px, transparent 1px 18px);
}

.recipe-transfer__kicker {
  margin: 0;
  justify-self: center;
  font-weight: 900;
  letter-spacing: 0.22em;
  font-size: clamp(0.75rem, 2.6vw, 0.9rem);
  color: rgba(185, 28, 28, 0.75);
  padding: 0 0.25rem;
}

.recipe-transfer__title {
  margin: 0;
  justify-self: stretch;
  text-align: center;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.12;
  font-size: clamp(1.55rem, 5.2vw, 2.6rem);
  text-shadow: 0 14px 50px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 100%;
  padding-inline: max(1rem, env(safe-area-inset-left, 0px))
    max(1rem, env(safe-area-inset-right, 0px));
  max-width: calc(100% - 0.5rem);
  box-sizing: border-box;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-all;
  min-width: 0;
}

.recipe-transfer__desc {
  margin: 0;
  justify-self: stretch;
  text-align: center;
  width: 100%;
  max-width: 48rem;
  padding-inline: max(1rem, env(safe-area-inset-left, 0px))
    max(1rem, env(safe-area-inset-right, 0px));
  max-width: min(48rem, calc(100% - 0.5rem));
  box-sizing: border-box;
  font-weight: 700;
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  color: rgba(80, 15, 22, 0.72);
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
}

.recipe-transfer__section-label {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  color: rgba(185, 28, 28, 0.82);
  padding: 0 0.25rem;
}

.recipe-transfer__section-label--mt {
  margin-top: clamp(0.25rem, 1.2dvh, 0.6rem);
}

.recipe-transfer__photos {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.4rem, 1.5vw, 0.75rem);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.15rem;
}

.recipe-transfer__photos-track {
  display: flex;
  flex-wrap: nowrap;
  gap: inherit;
  width: max-content;
  transition: transform var(--slide-duration) var(--slide-ease);
  will-change: transform;
}

/* 섹션(추가): WHY CHOOSE US */
.why-choose {
  background: linear-gradient(180deg, #fbf6ed 0%, #f4efe6 100%);
  color: rgba(24, 18, 14, 0.92);
}

.slider.why-choose {
  /* 카드 섹션은 100vh로 강제하지 않기 */
  min-height: auto;
}

.why-choose__inner {
  position: relative;
  max-width: 68rem;
  margin: 0 auto;
  padding:
    max(1.2rem, env(safe-area-inset-top, 0px))
    max(1.1rem, env(safe-area-inset-right, 0px))
    /* 하단 CTA 여유를 과하게 주지 않기 */
    max(1.1rem, env(safe-area-inset-bottom, 0px))
    max(1.1rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
}

.why-choose__kicker {
  margin: 0;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: rgba(185, 28, 28, 0.82);
}

.why-choose__title {
  margin: 0.4rem 0 0;
  text-align: center;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(1.6rem, 5.6vw, 2.8rem);
}

.why-choose__sub {
  margin: 0.55rem auto 0;
  max-width: 44rem;
  text-align: center;
  font-weight: 700;
  color: rgba(24, 18, 14, 0.68);
  line-height: 1.5;
}

.why-choose__grid {
  margin-top: clamp(1rem, 3.6dvh, 1.8rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2.6vw, 1.35rem);
}

@media (max-width: 900px) {
  .why-choose__inner {
    padding-bottom: max(0.9rem, env(safe-area-inset-bottom, 0px));
  }
}

.why-choose__card {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 1.1rem 1.05rem 1.05rem;
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.why-choose__no {
  position: absolute;
  top: 0.75rem;
  left: 0.9rem;
  font-weight: 950;
  font-size: 2.25rem;
  letter-spacing: 0.02em;
  color: rgba(210, 165, 135, 0.25);
}

.why-choose__icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background: linear-gradient(
    165deg,
    var(--accent-strong) 0%,
    #e63946 55%,
    var(--accent-strong-3) 100%
  );
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  margin-top: 0.65rem;
}

.why-choose__card-title {
  margin: 0.9rem 0 0;
  font-weight: 950;
  font-size: 1.25rem;
  line-height: 1.25;
  white-space: pre-line;
}

.why-choose__card-lines {
  margin: 0.55rem 0 0;
  font-weight: 900;
  color: rgba(185, 28, 28, 0.92);
  white-space: pre-line;
  line-height: 1.35;
}

.why-choose__card-body {
  margin: 0.75rem 0 0;
  font-weight: 650;
  color: rgba(24, 18, 14, 0.72);
  line-height: 1.55;
}

.why-choose__footer {
  margin-top: 1.05rem;
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    var(--accent-strong) 0%,
    #e63946 55%,
    var(--accent-strong-3) 100%
  );
  color: #ffffff;
  font-weight: 950;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 44px rgba(185, 28, 28, 0.22);
}

@media (max-width: 900px) {
  .why-choose__grid {
    grid-template-columns: 1fr;
  }
}

.recipe-transfer__photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.12);
  min-height: 0;
  aspect-ratio: 16 / 10;
  flex: 0 0 clamp(14rem, 38vw, 20rem);
  scroll-snap-align: start;
}

.recipe-transfer__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-transfer__reviews {
  min-height: 0;
}

.recipe-transfer__reviews-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 18px 52px rgba(0, 0, 0, 0.12);
  outline: none;
  --reviews-per-view: 3;
  height: clamp(16rem, 56dvh, 32rem);
  display: flex;
  align-items: center;
  touch-action: pan-y;
}

.recipe-transfer__reviews-viewport:focus-visible {
  box-shadow:
    0 0 0 2px rgba(185, 28, 28, 0.28),
    0 18px 52px rgba(0, 0, 0, 0.12);
}

.recipe-transfer__reviews-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform var(--slide-duration) var(--slide-ease);
  will-change: transform;
}

@keyframes recipe-review-skeleton {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.recipe-transfer__review-slide {
  flex: 0 0 calc(100% / var(--reviews-per-view));
  min-width: 0;
  padding: clamp(0.22rem, 1.1vw, 0.5rem);
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 14px;
  background: linear-gradient(
    110deg,
    rgba(235, 232, 226, 0.95) 0%,
    rgba(248, 246, 242, 0.98) 45%,
    rgba(235, 232, 226, 0.95) 90%
  );
  background-size: 200% 100%;
  animation: recipe-review-skeleton 1.35s ease-in-out infinite;
}

.recipe-transfer__review-slide--loaded {
  animation: none;
  background: transparent;
}

.recipe-transfer__review-slide--missing {
  animation: none;
  background: transparent;
}

.recipe-transfer__review-slide > img,
.recipe-transfer__review-slide > .recipe-transfer__ph {
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.08),
    0 16px 44px rgba(0, 0, 0, 0.1);
}

.recipe-transfer__review-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  opacity: 1;
}

.recipe-transfer__review-slide--loaded img {
  background: #ffffff;
}

.recipe-transfer__ph {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 6rem;
  font-weight: 800;
  opacity: 0.28;
}

@media (max-width: 900px) {
  .recipe-transfer__inner {
    grid-template-rows: auto auto auto auto auto auto auto;
  }

  .recipe-transfer__photos {
    /* 모바일에서는 슬라이드처럼 보이게(한 장씩) */
    overflow: hidden;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .recipe-transfer__photo {
    aspect-ratio: 16 / 9;
    flex: 0 0 100%;
    scroll-snap-align: none;
  }

  .recipe-transfer__photos-track {
    width: 100%;
    gap: 0;
  }

  .recipe-transfer__reviews-viewport {
    --reviews-per-view: 1;
    height: clamp(15rem, 52dvh, 24rem);
  }

  .recipe-transfer__review-slide img {
    height: 100%;
  }
}

@media (max-width: 420px) {
  .recipe-transfer__reviews-viewport {
    border-radius: 16px;
    --reviews-per-view: 1;
    height: clamp(15rem, 60dvh, 26rem);
  }
}

.slider__cell__ph {
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-weight: 600;
  opacity: 0.4;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 0.25rem;
}

.slider__progress {
  position: absolute;
  left: clamp(1rem, 5vw, 3rem);
  right: clamp(1rem, 5vw, 3rem);
  bottom: max(0px, env(safe-area-inset-bottom, 0px));
  z-index: 4;
  height: 4px;
  background: transparent;
}

.slider__progress::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: rgba(245, 240, 232, 0.12);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
}

.slider__progress-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  max-width: 100%;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    rgba(232, 196, 160, 0.75) 0%,
    #f0dcc8 40%,
    #e8c4a0 100%
  );
  box-shadow:
    0 0 16px rgba(232, 196, 160, 0.35),
    0 0 1px rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.slider__hint {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  max-width: min(
    40rem,
    calc(100% - 2rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
  );
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  line-height: 1.45;
  background: rgba(22, 18, 14, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 196, 160, 0.28);
  border-radius: 0.65rem;
  color: #e8dfd4;
  pointer-events: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.slider__hint code {
  font-size: 0.68rem;
  word-break: break-all;
  color: #f0dcc4;
}

/* 섹션3: 전면 가로 슬라이더(상단 제목 + 카드 + CTA) */
/* 복합 선택자 + ::before 로 섹션 전체에 레트로 배경이 확실히 깔리도록 함 */
.slider.menu-editorial {
  position: relative;
  isolation: isolate;
  background: #0f2a1f;
  overflow-x: hidden;
  min-height: 100svh;
}

.slider.menu-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 70% at 50% -10%, rgba(255, 215, 140, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 85% 60% at 0% 100%, rgba(0, 0, 0, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 85% 60% at 100% 100%, rgba(0, 0, 0, 0.35) 0%, transparent 55%),
    radial-gradient(circle, rgba(0, 0, 0, 0.22) 1px, transparent 1px) 0 0 / 4px 4px,
    repeating-linear-gradient(
      92deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 16px
    ),
    linear-gradient(
      168deg,
      #1f6b4b 0%,
      #16533c 24%,
      #0f3a2a 52%,
      #0a2a1f 100%
    );
  box-shadow:
    inset 0 0 180px rgba(0, 0, 0, 0.55),
    inset 0 2px 0 rgba(255, 215, 140, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.menu-editorial__layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  max-height: none;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: clamp(1.4rem, 5.2dvh, 3rem) clamp(0.6rem, 3vw, 1.35rem)
    clamp(0.4rem, 1.2dvh, 0.65rem);
  gap: clamp(1.65rem, 6dvh, 3.25rem);
}

.menu-editorial__header {
  flex-shrink: 0;
  text-align: center;
  padding-bottom: clamp(0.65rem, 2.8dvh, 1.4rem);
}

.menu-editorial__heading {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.42rem, 1.5dvh, 0.85rem);
}

.menu-editorial__brand {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0.2em 0.5em 0.24em;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(1.9rem, 8.2vw, 3.45rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.16em;
  color: #fff6e4;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.22) 1px, transparent 1px) 0 0 / 3px 3px,
    linear-gradient(180deg, rgba(255, 248, 230, 0.09) 0%, transparent 36%),
    linear-gradient(155deg, #6e2f26 0%, #4a1a16 48%, #2c0f0b 100%);
  border: 2px solid #d4b078;
  border-radius: 3px;
  box-shadow:
    0 0 0 2px #140808,
    0 5px 0 #0c0404,
    0 14px 32px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 236, 200, 0.2),
    inset 0 -4px 12px rgba(0, 0, 0, 0.35);
  outline: 1px dashed rgba(232, 200, 150, 0.32);
  outline-offset: -9px;
  text-shadow:
    0 1px 0 #2a1510,
    0 2px 0 #1a0b08,
    0 3px 8px rgba(0, 0, 0, 0.55);
  transform: rotate(-0.35deg);
}

.menu-editorial__page-title {
  display: block;
  margin: 0;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(0.95rem, 2.6vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(250, 247, 242, 0.88);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.menu-editorial__slider-shell {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.menu-editorial__carousel-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.menu-editorial__viewport {
  position: relative;
  flex: 1;
  min-height: clamp(9rem, 30dvh, 22rem);
  width: 100%;
  overflow: hidden;
  border-radius: clamp(6px, 0.8vw, 12px);
  /* 페이지는 안 밀리게(overflow-x hidden), 캐러셀은 pan-x 허용 */
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  outline: none;
  /* 리본이 이미지 밖(위)에 있어서 상단 여유 + 좌우 페이드만 */
  padding-top: clamp(0.35rem, 1.2dvh, 0.75rem);
  padding-bottom: clamp(0.2rem, 0.8dvh, 0.45rem);
  box-sizing: border-box;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
}

@media (max-width: 900px) {
  .slider.menu-editorial {
    min-height: 100svh;
  }

  .menu-editorial__layout {
    min-height: 100svh;
    gap: clamp(0.8rem, 3dvh, 1.4rem);
    padding:
      max(1rem, env(safe-area-inset-top, 0px))
      max(0.75rem, env(safe-area-inset-right, 0px))
      max(0.75rem, env(safe-area-inset-bottom, 0px))
      max(0.75rem, env(safe-area-inset-left, 0px));
  }

  .menu-editorial__header {
    padding-bottom: clamp(0.35rem, 1.8dvh, 0.75rem);
  }

  .menu-editorial__viewport {
    min-height: min(48vh, 22rem);
    padding-top: clamp(0.45rem, 1.6dvh, 1rem);
  }
}

.menu-editorial__viewport:focus-visible {
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.55),
    0 0 0 2px rgba(232, 196, 160, 0.45);
}

.menu-editorial__carousel-track {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2.2vw, 16px);
  transform: none !important;
}

.menu-editorial__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.18rem, 0.8vw, 0.35rem);
  width: 100%;
  margin: 0;
  min-width: 0;
  z-index: 1;
}

.menu-editorial__slide.is-active {
  z-index: 4;
}

.menu-editorial__slide .menu-editorial__frame--slide {
  transform: scale(0.9);
  transform-origin: center center;
  filter: brightness(0.96) saturate(1) contrast(1.02);
  opacity: 1;
  transition:
    transform var(--slide-duration) var(--slide-ease),
    filter 0.45s ease,
    opacity 0.45s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.menu-editorial__slide.is-active .menu-editorial__frame--slide {
  transform: scale(1.08);
  filter: brightness(1.22) saturate(1.1) contrast(1.04);
  opacity: 1;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(232, 196, 160, 0.28),
    0 0 32px rgba(212, 175, 100, 0.16);
}

.menu-editorial__frame--slide {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: clamp(4px, 0.5vw, 7px);
  overflow: hidden;
  background: #2a2622;
}

@media (max-width: 900px) {
  .menu-editorial__carousel-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(8px, 2.4vw, 14px);
  }

  .menu-editorial__slide .menu-editorial__frame--slide,
  .menu-editorial__slide.is-active .menu-editorial__frame--slide {
    transform: scale(1);
    filter: brightness(1.08) saturate(1.06) contrast(1.03);
  }

  .menu-editorial__frame--slide {
    aspect-ratio: 3 / 4;
  }
}

.menu-editorial__ribbon {
  position: relative;
  flex-shrink: 0;
  align-self: center;
  z-index: 5;
  margin: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.52em 1.85em 0.48em;
  background:
    linear-gradient(180deg, rgba(255, 248, 230, 0.07) 0%, transparent 38%),
    linear-gradient(155deg, #6e2f26 0%, #4a1a16 48%, #2f100d 100%);
  border: 2px solid #d4b078;
  border-radius: 2px;
  box-shadow:
    0 0 0 2px #1a0c0a,
    0 4px 0 #120807,
    0 10px 22px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 236, 200, 0.18),
    inset 0 -3px 8px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* 옛날 간판 질감(은은한 도트) + 안쪽 점선 테두리 */
.menu-editorial__ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1px;
  opacity: 0.14;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.55) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}

.menu-editorial__ribbon::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(232, 200, 150, 0.38);
  border-radius: 1px;
  pointer-events: none;
}

.menu-editorial__ribbon-text {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-size: clamp(0.74rem, 2.15vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  color: #fff6e4;
  text-shadow:
    0 1px 0 #2a1510,
    0 2px 0 #1a0b08,
    0 3px 4px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.menu-editorial__cta {
  position: absolute;
  bottom: clamp(0.4rem, 1.6dvh, 0.85rem);
  right: clamp(0.28rem, 1.4vw, 0.65rem);
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.06em;
  width: clamp(3.85rem, 13vw, 4.65rem);
  height: clamp(3.85rem, 13vw, 4.65rem);
  padding: 0.28em 0.22em;
  text-decoration: none;
  color: #faf4e4;
  text-align: center;
  background: linear-gradient(165deg, #165a3a 0%, #0a3020 48%, #061f14 100%);
  border: 1px solid rgba(232, 212, 160, 0.22);
  border-radius: 50%;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  clip-path: polygon(
    50% 0%,
    61% 6%,
    72% 0%,
    78% 12%,
    92% 10%,
    94% 24%,
    100% 32%,
    92% 42%,
    100% 52%,
    94% 64%,
    100% 74%,
    88% 78%,
    88% 90%,
    74% 88%,
    68% 100%,
    54% 94%,
    50% 100%,
    46% 94%,
    32% 100%,
    26% 88%,
    12% 90%,
    12% 78%,
    0% 74%,
    6% 64%,
    0% 52%,
    8% 42%,
    0% 32%,
    6% 24%,
    8% 10%,
    22% 12%,
    28% 0%,
    39% 6%
  );
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-editorial__cta:hover {
  transform: scale(1.04);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.menu-editorial__cta-icon {
  font-size: clamp(0.72rem, 2vw, 0.88rem);
  line-height: 1;
  opacity: 0.95;
}

.menu-editorial__cta-body {
  display: flex;
  flex-direction: column;
  gap: 0.06em;
  line-height: 1.15;
}

.menu-editorial__cta-line {
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(0.46rem, 1.15vw, 0.54rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.menu-editorial__cta-sub {
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(0.4rem, 1vw, 0.46rem);
  font-weight: 500;
  opacity: 0.88;
  color: #e8d4a8;
}

.menu-editorial__badge {
  position: absolute;
  top: clamp(0.32rem, 1.1vw, 0.5rem);
  left: clamp(0.32rem, 1.1vw, 0.5rem);
  z-index: 6;
  width: clamp(2.85rem, 10vw, 3.45rem);
  height: clamp(2.85rem, 10vw, 3.45rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.12em;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(0.38rem, 1.05vw, 0.46rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: #fffaf5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  background: radial-gradient(
    circle at 35% 30%,
    #e07028 0%,
    #b84312 45%,
    #7a2806 100%
  );
  clip-path: polygon(
    50% 0%,
    63% 14%,
    82% 10%,
    76% 30%,
    94% 38%,
    76% 48%,
    90% 68%,
    68% 62%,
    58% 88%,
    50% 72%,
    42% 88%,
    32% 62%,
    10% 68%,
    24% 48%,
    6% 38%,
    24% 30%,
    18% 10%,
    37% 14%
  );
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  white-space: pre-line;
}

.menu-editorial__carousel-caption {
  margin: 0;
  min-height: 1.25em;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: clamp(0.62rem, 1.65vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(232, 224, 212, 0.82);
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.menu-editorial__frame {
  position: relative;
  overflow: hidden;
  border-radius: clamp(3px, 0.5vw, 6px);
  background: #2a2622;
}

.menu-editorial__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.12) contrast(1.04) saturate(1.06);
}

.menu-editorial__frame--missing,
.menu-editorial__frame--missing.menu-editorial__frame--slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
  background: linear-gradient(160deg, #141414 0%, #080808 100%);
}

.menu-editorial__ph {
  font-size: clamp(1.1rem, 3.5vw, 1.75rem);
  font-weight: 600;
  opacity: 0.22;
  color: rgba(250, 245, 238, 0.25);
}

.slider__hint.menu-editorial__hint {
  top: max(0.65rem, env(safe-area-inset-top, 0px));
}

/* 모바일·좁은 화면: 캐러셀 영역이 세로로 늘어나며 생기는 하단 공백 제거 */
@media (max-width: 768px) {
  .menu-editorial__slider-shell {
    justify-content: center;
  }

  .menu-editorial__carousel-wrap {
    flex: 1 1 auto;
  }

  .menu-editorial__viewport {
    flex: 0 0 auto;
    /* 기존 min-height:0 이 모바일에서 레이아웃을 깨뜨려 정상 높이 확보 */
    min-height: min(48vh, 22rem) !important;
    height: auto !important;
    touch-action: pan-x pan-y !important;
  }
}

@media (max-width: 640px) {
  .slider__slide:not(.is-active) .slider__cell {
    transform: scale(0.94);
  }

  .slider__slide.is-active .slider__cell {
    transform: scale(1);
  }

  .menu-editorial__layout {
    gap: clamp(0.45rem, 3.5dvh, 1.35rem);
    padding-left: max(0.45rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.45rem, env(safe-area-inset-right, 0px));
    padding-top: max(clamp(2.2rem, 9dvh, 4.6rem), env(safe-area-inset-top, 0px));
    padding-bottom: max(0.3rem, env(safe-area-inset-bottom, 0px));
  }

  .menu-editorial__header {
    padding-bottom: clamp(0.2rem, 1dvh, 0.55rem);
  }

  .menu-editorial__brand {
    font-size: clamp(1.35rem, 7.2vw, 2.5rem);
    letter-spacing: 0.1em;
  }

  .menu-editorial__page-title {
    font-size: clamp(0.82rem, 3.2vw, 1.05rem);
  }

  .menu-editorial__viewport {
    padding-top: clamp(0.25rem, 1.1dvh, 0.65rem);
    min-height: min(48vh, 22rem) !important;
    height: auto !important;
  }

  .menu-editorial__ribbon-text {
    font-size: clamp(0.68rem, 2.8vw, 0.92rem);
  }

  .menu-editorial__cta {
    bottom: max(0.35rem, env(safe-area-inset-bottom, 0px));
    right: max(0.35rem, env(safe-area-inset-right, 0px));
    width: clamp(3.35rem, 16vw, 4.1rem);
    height: clamp(3.35rem, 16vw, 4.1rem);
  }

  .menu-editorial__carousel-caption {
    font-size: clamp(0.58rem, 2.4vw, 0.72rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-editorial__brand {
    transform: none;
  }

  .menu-editorial__carousel-track {
    transition-duration: 0.12s;
  }

  .menu-editorial__slide .menu-editorial__frame--slide {
    transition-duration: 0.12s;
  }

  .menu-editorial__slide .menu-editorial__frame--slide,
  .menu-editorial__slide.is-active .menu-editorial__frame--slide {
    transform: none;
  }

  .menu-editorial__slide:not(.is-active) .menu-editorial__frame--slide {
    filter: brightness(0.92) saturate(0.98);
    opacity: 1;
  }

  .menu-editorial__slide.is-active .menu-editorial__frame--slide {
    filter: brightness(1.18) saturate(1.08);
    opacity: 1;
  }

  .phone-screens .slider__track {
    transition-duration: 0.14s;
  }
}

/* 섹션4: 전체 화면 이미지 슬라이드 */
.phone-screens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  background: #ffffff;
}

.phone-screens .slider__slide {
  padding: 0;
  background: #080706;
}

.phone-screens__viewport {
  position: relative;
  inset: auto;
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  outline: none;
  touch-action: manipulation;
}

.phone-screens__viewport:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(200, 170, 230, 0.35);
}

.phone-screens__text-overlay {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 2;
  display: grid;
  grid-auto-flow: row;
  align-content: center;
  justify-items: start;
  row-gap: clamp(0.25rem, 1.3dvh, 0.75rem);
  padding: clamp(1rem, 4.2dvh, 2.4rem) clamp(1rem, 4vw, 3rem);
  box-sizing: border-box;
  pointer-events: none;
  user-select: none;
  text-align: left;
  background: linear-gradient(180deg, #fbf6ed 0%, #f3ede3 100%);
  direction: ltr;
  overflow: hidden;
}

.phone-screens__text-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 70% at 0% 0%, rgba(232, 196, 160, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(0, 0, 0, 0.06) 0%, transparent 55%);
}

.phone-screens__text-line {
  position: relative;
  z-index: 1;
  margin: 0;
  justify-self: start;
  width: 100%;
  max-width: 34rem;
  text-align: left;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.18;
  color: rgba(24, 18, 14, 0.92);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35);
}

.phone-screens__headline {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: 34rem;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.02;
  color: rgba(60, 34, 18, 0.92);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45),
    0 14px 50px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.phone-screens__headline-line {
  display: block;
  font-size: clamp(2.2rem, 6.2vw, 4.4rem);
  font-weight: 900;
}

.phone-screens__headline-line--accent {
  color: var(--accent-strong);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.16),
    0 0 34px var(--accent-strong-glow),
    0 18px 70px rgba(0, 0, 0, 0.08);
}

.phone-screens__subcopy {
  position: relative;
  z-index: 1;
  margin: clamp(0.55rem, 2dvh, 0.95rem) 0 0;
  width: 100%;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: rgba(24, 18, 14, 0.78);
  text-align: left;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.phone-screens__divider {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 34rem;
  height: 2px;
  margin: clamp(1.1rem, 4.2dvh, 2.2rem) 0 clamp(1.1rem, 4dvh, 2rem);
  background: rgba(60, 34, 18, 0.16);
}

.phone-screens__stat-label {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.9vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(60, 34, 18, 0.7);
  text-align: left;
}

.phone-screens__stat-value {
  position: relative;
  z-index: 1;
  margin: clamp(0.45rem, 1.8dvh, 0.85rem) 0 0;
  width: 100%;
  max-width: 34rem;
  font-size: clamp(3.1rem, 9.6vw, 6.2rem);
  font-weight: 950;
  letter-spacing: 0.01em;
  color: var(--accent-strong);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.16),
    0 0 44px var(--accent-strong-glow),
    0 18px 70px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.phone-screens__fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0908;
}

.phone-screens__fill img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.phone-screens__fill--missing {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a1820 0%, #0c0b10 100%);
}

.phone-screens__ph {
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 600;
  opacity: 0.28;
  color: rgba(240, 235, 255, 0.35);
}

.phone-screens__progress {
  z-index: 8;
  left: 1rem;
  right: 1rem;
  bottom: max(0px, env(safe-area-inset-bottom, 0px));
  grid-column: 1;
  grid-row: 1;
}

@media (max-width: 900px) {
  .phone-screens {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(16rem, 52vh) auto;
  }

  .phone-screens__viewport {
    grid-column: 1;
    grid-row: 1;
  }

  .phone-screens__text-overlay {
    grid-column: 1;
    grid-row: 2;
    height: auto;
    min-height: 0;
    pointer-events: none;
    padding: clamp(0.9rem, 3.6dvh, 1.6rem) clamp(0.85rem, 3.6vw, 1.4rem);
  }

  .phone-screens__progress {
    grid-column: 1;
    grid-row: 1;
  }
}

/* 섹션4: 좁은 화면에서 줄바꿈·크기·안전 영역 */
@media (max-width: 640px) {
  .phone-screens__text-overlay {
    row-gap: clamp(0.28rem, 1.2dvh, 0.55rem);
    padding: max(0.45rem, env(safe-area-inset-top, 0px))
      max(0.55rem, env(safe-area-inset-right, 0px))
      max(0.55rem, env(safe-area-inset-bottom, 0px))
      max(0.55rem, env(safe-area-inset-left, 0px));
  }

  .phone-screens__text-line {
    white-space: normal;
    width: 100%;
    max-width: 100%;
    padding-inline-start: max(0.15rem, env(safe-area-inset-left, 0px));
    padding-inline-end: max(0.15rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.32;
  }

  .phone-screens__headline-line {
    font-size: clamp(1.85rem, 8.2vw, 3rem);
  }

  .phone-screens__subcopy {
    font-size: clamp(0.98rem, 3.6vmin, 1.25rem);
  }

  .phone-screens__stat-value {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }
}

@media (max-width: 380px) {
  .phone-screens__text-line--rent {
    font-size: clamp(0.95rem, 3.9vmin, 1.35rem);
  }

  .phone-screens__text-line--sales {
    font-size: clamp(1rem, 4.4vmin, 1.5rem);
  }
}

/* 섹션5: 전수창업 1000만원(텍스트 전면) */
.all-in-price {
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.16) 1px, transparent 1px) 0 0 / 4px 4px,
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 85%, rgba(0, 0, 0, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, #8f1417 0%, #6e0f12 52%, #3a0709 100%);
}

/* 섹션5: 섹션4처럼 50:50 분할(좌 이미지, 우 텍스트) */
.all-in-price--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  background: #ffffff;
}

.all-in-price__media {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
  background: #080706;
}

.all-in-price__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.all-in-price__inner--split {
  position: relative;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(0.25rem, 1.3dvh, 0.75rem);
  padding: clamp(1rem, 4.2dvh, 2.4rem) clamp(1rem, 4vw, 3rem);
  text-align: left;
  background: linear-gradient(180deg, #fbf6ed 0%, #f4efe6 100%);
}

.all-in-price__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  min-height: 0;
}

/* split 에서는 본문 영역이 과하게 늘어나 겹치지 않게 */
.all-in-price--split .all-in-price__content {
  flex: 0 0 auto;
  min-height: auto;
}

.all-in-price--split .all-in-price__inner--split::before,
.all-in-price--split .all-in-price__inner--split::after {
  content: none;
}

.all-in-price--split .all-in-price__bubble::before,
.all-in-price--split .all-in-price__bubble::after {
  content: none;
}

.all-in-price--split .all-in-price__bubble {
  margin-bottom: 0;
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.all-in-price--split .all-in-price__headline {
  color: rgba(60, 34, 18, 0.92);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  text-align: left;
  align-self: stretch;
}

.all-in-price--split .all-in-price__body {
  margin: clamp(0.85rem, 3.2dvh, 1.45rem) 0 0;
  text-align: left;
  align-self: stretch;
}

.all-in-price__body {
  margin: clamp(0.55rem, 2dvh, 0.95rem) 0 0;
  width: 100%;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.55;
  color: rgba(24, 18, 14, 0.78);
  white-space: pre-line;
  text-shadow: none;
}

.all-in-price__stats {
  width: 100%;
  max-width: 34rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.8rem, 2.4dvh, 1.2rem);
  margin-top: auto;
  padding-top: clamp(0.9rem, 3.4dvh, 1.6rem);
}

.all-in-price--split .all-in-price__stats {
  align-self: flex-start;
  text-align: left;
  /* split에서는 아래로 밀어붙이지 말고 자연스럽게 내려가게 */
  margin-top: clamp(1rem, 3.5dvh, 1.6rem);
  padding-top: 0;
}

.all-in-price--split .all-in-price__stat-label,
.all-in-price--split .all-in-price__stat-value {
  text-align: left;
}

.all-in-price__stat {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.all-in-price__stat-label {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: clamp(1.75rem, 5.5vw, 2.75rem);
  color: rgba(60, 34, 18, 0.7);
}

.all-in-price__stat-value {
  margin: clamp(0.35rem, 1.4dvh, 0.6rem) 0 0;
  font-size: clamp(5rem, 17vw, 9.5rem);
  font-weight: 1000;
  letter-spacing: 0.01em;
  color: var(--accent-strong);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.1),
    0 0 44px var(--accent-strong-glow);
}

.all-in-price__divider {
  width: 100%;
  max-width: 34rem;
  height: 2px;
  margin: clamp(1.35rem, 4.8dvh, 2.35rem) 0 0;
  background: rgba(60, 34, 18, 0.16);
}

.all-in-price--split .all-in-price__divider {
  align-self: stretch;
}

@media (max-width: 900px) {
  /* 섹션5(2층 입지): 모바일에서 내용이 길면 100vh에 의해 잘릴 수 있어 높이 고정 해제 */
  .slider.all-in-price--split {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .all-in-price--split {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(14rem, 45vh) 1fr;
  }

  .all-in-price__media {
    grid-column: 1;
    grid-row: 1;
  }

  .all-in-price__inner--split {
    grid-column: 1;
    grid-row: 2;
    height: 100%;
    min-height: 0;
    padding: clamp(0.9rem, 3.6dvh, 1.6rem) clamp(0.85rem, 3.6vw, 1.4rem);
    padding-bottom: max(
      clamp(0.9rem, 3.6dvh, 1.6rem),
      env(safe-area-inset-bottom, 0px)
    );
    overflow: visible;
  }

  .all-in-price--split .all-in-price__stats {
    margin-top: clamp(1rem, 3.5dvh, 1.6rem);
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  .all-in-price__stat-label {
    font-size: clamp(1.55rem, 5.8vw, 2.15rem);
  }

  .all-in-price__stat-value {
    font-size: clamp(4rem, 17vw, 6.75rem);
  }
}

.all-in-price__inner {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  row-gap: clamp(0.55rem, 2.6dvh, 1.2rem);
  padding: clamp(0.9rem, 4dvh, 2rem) clamp(0.75rem, 4vw, 2rem);
  box-sizing: border-box;
  text-align: center;
}

.all-in-price--split .all-in-price__inner--split {
  position: relative;
  inset: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(0.25rem, 1.3dvh, 0.75rem);
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 2;
  padding: clamp(1rem, 4.2dvh, 2.4rem) clamp(1rem, 4vw, 3rem);
  text-align: left;
  background: linear-gradient(180deg, #fbf6ed 0%, #f4efe6 100%);
}

/* 섹션6: k 배경 + 성과 오버레이 */
.k-performance {
  background: #080706;
}

.k-performance__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.k-performance__track {
  display: flex;
  height: 100%;
  width: 100%;
  transform: translateX(0);
  transition: transform 0.9s cubic-bezier(0.2, 0.85, 0.25, 1);
  will-change: transform;
}

.k-performance__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0908;
}

.k-performance__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05) brightness(0.82);
  transform: scale(1.02);
}

.k-performance__overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: clamp(1rem, 4.2dvh, 2.8rem) clamp(1rem, 4vw, 3rem);
  box-sizing: border-box;
  gap: clamp(0.9rem, 3vw, 2rem);
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.28) 56%,
      rgba(0, 0, 0, 0.68) 100%
    );
}

.k-performance__left {
  max-width: 40rem;
}

.k-performance__headline {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: #ffffff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
}

.k-performance__headline-line {
  display: block;
  font-size: clamp(1.9rem, 5.6vw, 3.75rem);
}

.k-performance__headline-line--accent {
  color: var(--accent-strong-on-dark);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.45),
    0 0 40px var(--accent-strong-on-dark-glow);
}

.k-performance__sub {
  margin: clamp(0.55rem, 2dvh, 0.95rem) 0 0;
  font-size: clamp(0.95rem, 2.7vw, 1.25rem);
  font-weight: 700;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
}

.k-performance__right {
  justify-self: end;
  text-align: right;
}

.k-performance__stat-label {
  margin: 0;
  font-size: clamp(0.95rem, 2.7vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.k-performance__stat-value {
  margin: clamp(0.55rem, 2dvh, 0.95rem) 0 0;
  font-size: clamp(2.6rem, 8.8vw, 4.8rem);
  font-weight: 950;
  letter-spacing: 0.01em;
  color: var(--accent-strong-on-dark);
  text-shadow:
    0 10px 40px rgba(0, 0, 0, 0.55),
    0 0 56px var(--accent-strong-on-dark-glow);
}

@keyframes k-performance-price-blink {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
    text-shadow:
      0 10px 40px rgba(0, 0, 0, 0.55),
      0 0 48px var(--accent-strong-on-dark-glow);
  }
  50% {
    opacity: 0.45;
    filter: brightness(1.35);
    text-shadow:
      0 10px 40px rgba(0, 0, 0, 0.55),
      0 0 80px rgba(255, 214, 120, 0.95),
      0 0 24px rgba(255, 240, 200, 0.85);
  }
}

.k-performance__stat-value--blink {
  animation: k-performance-price-blink 1.05s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .k-performance__stat-value--blink {
    animation: none;
  }
}

@media (max-width: 900px) {
  .k-performance__overlay {
    grid-template-columns: 1fr;
    align-content: center;
    text-align: left;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 62%, rgba(0, 0, 0, 0.62) 100%);
  }

  .k-performance__right {
    justify-self: start;
    text-align: left;
  }
}

/* 섹션7: 경험 배너 */
.exp-banner {
  background: linear-gradient(180deg, #fbf6ed 0%, #f4efe6 100%);
}

.exp-banner__inner {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  row-gap: clamp(0.7rem, 2.6dvh, 1.2rem);
  padding: clamp(1.1rem, 5dvh, 2.5rem) clamp(1rem, 5vw, 3rem);
  box-sizing: border-box;
  text-align: center;
}

.exp-banner__title {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: rgba(60, 34, 18, 0.92);
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.08);
}

.exp-banner__title-line {
  display: block;
  font-size: clamp(1.7rem, 6.2vw, 3.6rem);
}

.exp-banner__title-line--accent {
  color: var(--accent-strong);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.08),
    0 0 40px var(--accent-strong-glow);
}

/* 섹션8 */
.final-banner {
  background: linear-gradient(180deg, #fbf6ed 0%, #f4efe6 100%);
}

.final-banner--overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  pointer-events: none;
  transition: opacity 280ms ease, transform 360ms cubic-bezier(0.2, 0.85, 0.25, 1);
}

body.show-final .final-banner--overlay {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

body.show-final {
  /* iOS에서 overflow hidden이 스크롤을 완전히 잠그는 케이스가 있어 잠금 제거 */
  overflow: auto;
}

.final-banner__inner {
  position: absolute;
  inset: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  row-gap: clamp(0.55rem, 2.2dvh, 1.1rem);
  padding: clamp(1.2rem, 5dvh, 3rem) clamp(1rem, 5vw, 3rem);
  box-sizing: border-box;
  text-align: center;
}

.final-banner__text {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(2rem, 7.2vw, 4.2rem);
  color: rgba(60, 34, 18, 0.92);
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.08);
}

.final-banner__sub {
  margin: clamp(0.6rem, 2.2dvh, 1.1rem) 0 0;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  font-size: clamp(1.4rem, 5.2vw, 3rem);
  color: var(--accent-strong);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.08),
    0 0 44px var(--accent-strong-glow);
}

.final-banner__desc {
  margin: clamp(0.7rem, 2.4dvh, 1.2rem) 0 0;
  max-width: 42rem;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.55;
  font-size: clamp(1rem, 3.2vw, 1.35rem);
  color: rgba(24, 18, 14, 0.72);
  white-space: pre-line;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.final-banner__price {
  margin: clamp(0.9rem, 3.2dvh, 1.6rem) 0 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  padding: 0.22em 0.65em 0.28em;
  border-radius: 0.18em;
  font-weight: 1000;
  letter-spacing: 0.04em;
  font-size: clamp(1.9rem, 7vw, 3.6rem);
  color: #ffffff;
  background: linear-gradient(
    165deg,
    var(--accent-strong) 0%,
    #e63946 45%,
    var(--accent-strong-3) 100%
  );
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.14),
    0 0 44px var(--accent-strong-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  /* 기본(메인 상태)에서는 공간을 차지하지 않게 숨김 */
  display: none;
}

.final-banner__price-prefix {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.78em;
  opacity: 0.92;
}

.final-banner__price-value {
  font-weight: 1000;
  letter-spacing: 0.02em;
  font-size: 1.38em;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.18),
    0 0 60px rgba(255, 255, 255, 0.22);
}

/* 하단 고정 CTA */
.global-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9500;
  padding: max(0.75rem, env(safe-area-inset-bottom, 0px))
    max(0.85rem, env(safe-area-inset-right, 0px))
    max(0.9rem, env(safe-area-inset-bottom, 0px))
    max(0.85rem, env(safe-area-inset-left, 0px));
  display: grid;
  place-items: center;
  pointer-events: none;
}

.global-cta__btn {
  pointer-events: auto;
  width: min(34rem, calc(100% - 1.8rem));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9em 1.2em 0.95em;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  color: #ffffff;
  background: linear-gradient(
    165deg,
    var(--accent-strong) 0%,
    #e63946 45%,
    var(--accent-strong-3) 100%
  );
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.16),
    0 0 44px var(--accent-strong-glow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  transition: transform 180ms ease;
}

.global-cta__btn:active {
  transform: scale(0.98);
}

.final-banner.is-price-shown .final-banner__price {
  display: inline-flex;
}

/* 마지막 섹션: 메트 메시지 */
.meta-promise {
  background:
    radial-gradient(ellipse 80% 70% at 50% -10%, rgba(255, 210, 110, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 120%, rgba(255, 123, 123, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 0% 120%, rgba(0, 0, 0, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, #0d0906 0%, #060403 100%);
  color: rgba(255, 248, 235, 0.95);
}

.meta-promise__inner {
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(0.65rem, 2.2dvh, 1.15rem);
  padding:
    max(1.1rem, env(safe-area-inset-top, 0px))
    max(1rem, env(safe-area-inset-right, 0px))
    max(1.25rem, env(safe-area-inset-bottom, 0px))
    max(1rem, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  text-align: center;
}

.meta-promise__headline {
  margin: 0;
  width: min(56rem, calc(100% - 1.25rem));
  font-family: "Noto Serif KR", "Noto Sans KR", serif;
  font-weight: 1000;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(2.2rem, 7.2vw, 5.2rem);
  color: rgba(255, 248, 235, 0.98);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.85),
    0 18px 70px rgba(0, 0, 0, 0.55);
}

.meta-promise__sub {
  margin: 0;
  width: min(46rem, calc(100% - 1.25rem));
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.45;
  font-size: clamp(1.05rem, 3.2vw, 1.55rem);
  color: rgba(255, 248, 235, 0.86);
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.55),
    0 18px 70px rgba(0, 0, 0, 0.35);
}

@media (max-width: 420px) {
  .meta-promise__headline {
    font-size: clamp(1.85rem, 9vw, 3.1rem);
    line-height: 1.1;
  }
}

.exp-banner__price {
  margin: 0;
  display: inline-block;
  padding: 0.22em 0.6em 0.28em;
  border-radius: 0.18em;
  font-weight: 1000;
  letter-spacing: 0.04em;
  font-size: clamp(2.2rem, 7.8vw, 4.1rem);
  color: #ffffff;
  background: linear-gradient(
    165deg,
    var(--accent-strong) 0%,
    #e63946 45%,
    var(--accent-strong-3) 100%
  );
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.16),
    0 0 44px var(--accent-strong-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.exp-banner__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.45rem, 2vw, 0.75rem);
}

.exp-banner__chip {
  display: inline-block;
  padding: 0.5em 0.95em 0.55em;
  border-radius: 999px;
  font-weight: 900;
  font-size: clamp(0.9rem, 2.8vw, 1.05rem);
  letter-spacing: 0.01em;
  color: rgba(60, 34, 18, 0.86);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.exp-banner__sub {
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.02rem, 3.2vw, 1.25rem);
  letter-spacing: 0.01em;
  color: rgba(24, 18, 14, 0.7);
}

.exp-banner__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(0.9rem, 3.6dvh, 1.3rem) clamp(1rem, 5vw, 2.2rem);
  background: linear-gradient(180deg, #5a3a22 0%, #3f2717 100%);
  color: rgba(255, 248, 235, 0.92);
  box-shadow: 0 -16px 50px rgba(0, 0, 0, 0.22);
}

.exp-banner__bottom-text {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  line-height: 1.4;
}

.exp-banner__bottom-arrow {
  display: grid;
  place-items: center;
  width: clamp(2.2rem, 8vw, 2.6rem);
  height: clamp(2.2rem, 8vw, 2.6rem);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 1.2rem;
  transform: rotate(180deg);
}

@media (max-width: 640px) {
  .exp-banner__bottom {
    padding: max(0.85rem, env(safe-area-inset-bottom, 0px))
      max(0.85rem, env(safe-area-inset-right, 0px))
      max(0.95rem, env(safe-area-inset-bottom, 0px))
      max(0.85rem, env(safe-area-inset-left, 0px));
  }
}

.all-in-price__inner::after {
  content: "ONLY";
  position: absolute;
  right: clamp(1.1rem, 4.8vw, 3.4rem);
  top: clamp(1.15rem, 4.8vw, 3.35rem);
  z-index: 2;
  width: clamp(3.25rem, 14vw, 4.65rem);
  height: clamp(3.25rem, 14vw, 4.65rem);
  display: grid;
  place-items: center;
  font-weight: 950;
  letter-spacing: 0.06em;
  font-size: clamp(0.72rem, 2.5vw, 0.95rem);
  color: rgba(25, 16, 12, 0.92);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.24) 0%, transparent 55%),
    linear-gradient(
      165deg,
      var(--accent-strong) 0%,
      #e63946 55%,
      var(--accent-strong-3) 100%
    );
  clip-path: polygon(
    50% 0%,
    60% 10%,
    74% 4%,
    78% 18%,
    92% 22%,
    84% 35%,
    100% 44%,
    84% 54%,
    96% 70%,
    78% 68%,
    72% 96%,
    58% 80%,
    50% 100%,
    42% 80%,
    28% 96%,
    22% 68%,
    4% 70%,
    16% 54%,
    0% 44%,
    16% 35%,
    8% 22%,
    22% 18%,
    26% 4%,
    40% 10%
  );
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.35));
  transform: rotate(10deg);
  pointer-events: none;
}

.all-in-price__inner::before {
  content: "";
  position: absolute;
  inset: clamp(1rem, 5vw, 3rem);
  border-radius: clamp(14px, 2.6vw, 22px);
  background:
    repeating-linear-gradient(
      -12deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 14px
    ),
    repeating-linear-gradient(
      76deg,
      rgba(0, 0, 0, 0.08) 0 1px,
      transparent 1px 18px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
    linear-gradient(165deg, rgba(0, 0, 0, 0.18) 0%, transparent 55%),
    rgba(10, 8, 7, 0.18);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 250, 245, 0.12);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.all-in-price__bubble::before,
.all-in-price__bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(0.95rem, 4.2vw, 1.65rem);
  height: clamp(0.55rem, 2.4vw, 0.95rem);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  transform: translateY(-50%) rotate(-8deg);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.all-in-price__bubble::before {
  left: calc(-1 * clamp(0.7rem, 3vw, 1.15rem));
}

.all-in-price__bubble::after {
  right: calc(-1 * clamp(0.7rem, 3vw, 1.15rem));
  transform: translateY(-50%) rotate(8deg);
}

.all-in-price__bubble,
.all-in-price__headline {
  margin: 0;
  position: relative;
  z-index: 1;
}

.all-in-price__bubble {
  display: inline-block;
  margin-bottom: clamp(0.15rem, 0.9dvh, 0.45rem);
  padding: 0.55em 1.1em 0.6em;
  border-radius: 999px;
  font-weight: 800;
  font-size: clamp(0.95rem, 2.9vw, 1.35rem);
  letter-spacing: 0.02em;
  color: rgba(25, 20, 16, 0.92);
  background: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.all-in-price__headline {
  font-weight: 950;
  letter-spacing: 0.06em;
  font-size: clamp(2.35rem, 11.5vw, 6.8rem);
  color: #fff7e8;
  text-transform: none;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.7),
    0 22px 70px rgba(0, 0, 0, 0.55);
}

.all-in-price__sub {
  margin: 0;
  position: relative;
  z-index: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(1.05rem, 3.4vw, 1.9rem);
  color: rgba(255, 248, 235, 0.92);
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.8),
    0 14px 50px rgba(0, 0, 0, 0.55);
}

