/* =====================================================================
   삐딱 — 메인 페이지 스타일
   ===================================================================== */
@font-face {
  font-family: 'Gapyeong Hanseokbong';
  src: url('assets/fonts/GapyeongHanseokbongL.woff2?v=2026-05-23') format('woff2'),
    url('assets/fonts/GapyeongHanseokbongL.otf?v=2026-05-23') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gapyeong Hanseokbong';
  src: url('assets/fonts/GapyeongHanseokbongR.woff2?v=2026-05-23') format('woff2'),
    url('assets/fonts/GapyeongHanseokbongR.otf?v=2026-05-23') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gapyeong Hanseokbong';
  src: url('assets/fonts/GapyeongHanseokbongB.woff2?v=2026-05-23') format('woff2'),
    url('assets/fonts/GapyeongHanseokbongB.otf?v=2026-05-23') format('opentype');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chungju Kimsaeng';
  src: url('assets/fonts/ChungjuKimSaeng.woff2?v=2026-05-23') format('woff2'),
    url('assets/fonts/ChungjuKimSaeng.otf?v=2026-05-23') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000000;
  --bg-nav: rgba(10, 10, 10, 0.89);
  --bg-card: #1b1b1b;
  --bg-card-2: #1a1a1a;
  --bg-card-grad: #14110d;
  --orange: #ff490d;
  --orange-cta: #ff490d;
  --orange-active: #ff490d;
  --orange-hero-card: rgba(255, 81, 0, 0.92);
  --border-featured: #f15005;
  --divider: #1f1f23;
  --divider-table: #2a2a2a;
  --cream: #f5f1ea;
  --light-title: #ecf1f0;
  --muted: #888888;
  --white: #ffffff;

  --nav-h: 99px;
  --maxw-page: 1920px;
  --maxw-content: 1600px;
  --maxw-text: 906px;
  --gutter: clamp(20px, 4vw, 80px);

  --font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo',
    'Malgun Gothic', sans-serif;
  --font-ko: 'Noto Sans KR', var(--font);
  --font-num: 'Inter', var(--font);
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --fs-hero-h1: clamp(2.2rem, 4.4vw, 4.1rem);
  --fs-display-1: clamp(2rem, 4.2vw, 3.85rem);
  --fs-display-2: clamp(1.75rem, 3.4vw, 3.05rem);
  --fs-display-3: clamp(1.4rem, 2.4vw, 2.3rem);
  --fs-stat-xl: clamp(2.4rem, 5.4vw, 4.6rem);
  --fs-pill-num: clamp(1.35rem, 1.9vw, 1.8rem);
  --fs-pill-label: clamp(1.05rem, 1.45vw, 1.4rem);
  --fs-eyebrow: clamp(0.95rem, 1.2vw, 1.25rem);
  --fs-sub: clamp(1rem, 1.35vw, 1.35rem);
  --fs-body: clamp(0.95rem, 1.05vw, 1.1rem);
  --fs-caption: clamp(0.7rem, 0.75vw, 0.78rem);
  --sp-section-y: clamp(80px, 9vw, 180px);
  --sp-section-sm: clamp(48px, 5vw, 96px);
  --sp-head-gap: clamp(40px, 4.5vw, 80px);
  --sp-head-inner: clamp(18px, 2vw, 32px);
  --sp-content-gap: clamp(20px, 2vw, 36px);
}

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

html {
  scroll-behavior: smooth;
}

br.br-mobile {
  display: none;
}

br.br-desktop {
  display: initial;
}

@media (max-width: 720px) {
  br.br-mobile {
    display: initial;
  }

  br.br-desktop {
    display: none;
  }
}

html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  touch-action: pan-y;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.font-display {
  font-family: 'Gapyeong Hanseokbong', 'GapyeongHanseokbong', var(--font);
  font-weight: 800;
}

.accent {
  color: var(--orange);
}

.hl-orange {
  color: var(--orange);
}

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

@keyframes nav-drop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes hero-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== Navbar ==================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg-nav);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  animation: nav-drop 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) 0.05s both;
}

.navbar__inner {
  max-width: var(--maxw-page);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 60px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.logo {
  flex-shrink: 0;
  justify-self: start;
}

.logo__img {
  height: clamp(30px, 2.6vw, 42px);
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.6vw, 28px);
  justify-self: center;
}

.nav__item {
  font-size: clamp(0.95rem, 1.3vw, 1.31rem);
  font-weight: 600;
  color: var(--light-title);
  padding: 10px;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.nav__item:hover {
  color: var(--white);
}

.nav__item.is-active {
  color: var(--orange-active);
  font-weight: 900;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  grid-column: 3;
  justify-self: end;
}

.btn-cta-wrap {
  position: relative;
  display: inline-flex;
}

.cta-bubble {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: clamp(0.74rem, 0.85vw, 0.85rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  transform-origin: top center;
  animation: ctaBubbleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both,
    ctaBubbleBob 2.6s ease-in-out 1.85s infinite;
}

.cta-bubble strong {
  font-weight: 800;
}

.cta-bubble::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--orange);
  transform: translateX(-50%) rotate(45deg);
  border-top-left-radius: 2px;
  z-index: -1;
}

@keyframes ctaBubbleIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px) scale(0.85);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes ctaBubbleBob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-bubble {
    animation: none;
  }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-cta);
  color: var(--white);
  font-weight: 900;
  font-size: clamp(0.9rem, 1.2vw, 1.22rem);
  padding: 0 clamp(20px, 2.2vw, 31px);
  height: 57px;
  border-radius: 200px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg,
      transparent 0%,
      rgba(255, 255, 255, 0.45) 50%,
      transparent 100%);
  transform: skewX(-22deg);
  animation: btn-shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes btn-shimmer {
  0% {
    left: -120%;
  }

  60% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta::after {
    animation: none;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #0c0c0e;
  border-top: 2px solid var(--orange-cta);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.45);
}

.sticky-cta__form {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 24px);
  padding: clamp(16px, 1.5vw, 24px) clamp(24px, 4vw, 80px);
  max-width: 1920px;
  margin: 0 auto;
}

.sticky-cta__brand {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-right: clamp(8px, 1vw, 16px);
}

.sticky-cta__logo {
  height: clamp(22px, 1.7vw, 30px);
  width: auto;
  display: block;
}

.sticky-cta__phone {
  color: var(--orange-cta);
  font-weight: 800;
  font-size: clamp(13px, 1.05vw, 16px);
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.sticky-cta__fields {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(8px, 0.8vw, 14px);
  min-width: 0;
}

.sticky-cta__input {
  height: clamp(46px, 3.4vw, 56px);
  width: 100%;
  min-width: 0;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  color: #1a1a1a;
  font: inherit;
  font-size: clamp(14px, 1vw, 15px);
  letter-spacing: -0.005em;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta__input::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 400;
}

.sticky-cta__input:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.sticky-cta__input:focus {
  border-color: var(--orange-cta);
  box-shadow: 0 0 0 3px rgba(255, 81, 0, 0.15);
}

.sticky-cta__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23333' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
  cursor: pointer;
}

.sticky-cta__consent {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(12px, 0.9vw, 13.5px);
  letter-spacing: -0.005em;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.sticky-cta__consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--orange-cta);
  cursor: pointer;
}

.sticky-cta__submit {
  flex-shrink: 0;
  height: clamp(46px, 3.4vw, 56px);
  padding: 0 clamp(28px, 2.6vw, 44px);
  background: var(--orange-cta);
  color: var(--white);
  font-weight: 900;
  font-size: clamp(14px, 1.05vw, 16px);
  letter-spacing: -0.01em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.sticky-cta__submit:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.sticky-cta__submit:active {
  transform: translateY(0);
}

.sticky-cta__mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 56px;
  padding: 0 28px;
  background: var(--orange-cta);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.sticky-cta__mobile svg {
  transition: transform 0.25s ease;
}

.sticky-cta__mobile:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1280px) {
  .sticky-cta__brand {
    display: none;
  }
}

@media (max-width: 1080px) {
  .sticky-cta__consent {
    display: none;
  }
}

@media (max-width: 880px) {
  .sticky-cta {
    border-top: 2px solid var(--orange-cta);
  }

  .sticky-cta__form {
    display: none;
  }

  .sticky-cta__mobile {
    display: inline-flex;
  }
}

body {
  padding-bottom: clamp(80px, 7vw, 100px);
}

@media (max-width: 880px) {
  body {
    padding-bottom: 60px;
  }
}

.section {
  padding: var(--sp-section-y) 0;
}

.sec-head {
  text-align: center;
  max-width: var(--maxw-text);
  margin: 0 auto var(--sp-head-gap);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-head-inner);
}

.sec-head__title {
  color: var(--white);
  font-size: var(--fs-display-1);
  line-height: 1.3;
  letter-spacing: -0.033em;
  word-break: keep-all;
}

.sec-head__title--md {
  font-size: var(--fs-display-2);
}

.sec-head__title .accent {
  display: block;
}

.sec-head__sub {
  font-size: var(--fs-sub);
  font-weight: 400;
  color: var(--white);
  line-height: 1.55;
  word-break: keep-all;
  letter-spacing: -0.01em;
  opacity: 0.9;
}

.sec-head__sub strong {
  font-weight: 700;
}

.sec-head__sub--bold {
  font-weight: 700;
  font-size: var(--fs-display-3);
  opacity: 1;
}

.num-pill {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 0.9vw, 12px);
  background: var(--orange);
  border-radius: 999px;
  padding: clamp(4px, 0.4vw, 6px);
  padding-right: clamp(16px, 1.6vw, 22px);
  width: max-content;
  max-width: 100%;
}

.num-pill__num {
  width: clamp(36px, 3.4vw, 44px);
  height: clamp(36px, 3.4vw, 44px);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--orange);
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--fs-pill-num);
  letter-spacing: -0.025em;
  line-height: 1;
}

.num-pill__label {
  color: var(--white);
  font-weight: 700;
  font-size: var(--fs-pill-label);
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 100vh;
  height: 100svh;
  min-height: 480px;
  max-height: 1080px;
  margin: 0 auto;
  background: #0a0a0a;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  pointer-events: none;
  user-select: none;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.1vw, 22px);
  text-align: center;
}

.hero__title {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 4.1rem);
  line-height: 1.32;
  letter-spacing: -0.025em;
  word-break: keep-all;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.5),
    0 16px 48px rgba(0, 0, 0, 0.35);
  animation: hero-rise 1.1s cubic-bezier(0.2, 0.7, 0.3, 1) 0.35s both;
}

.hero__tagline {
  margin: 0;
  font-size: clamp(0.85rem, 1.35vw, 1.35rem);
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  animation: hero-fade 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) 0.7s both;
}

.hero__tagline-accent {
  display: inline;
  color: var(--white);
  background: rgba(255, 82, 13, 0.8);
  font-weight: 700;
  letter-spacing: -0.012em;
  padding: 0.16em 0.5em 0.2em;
  border-radius: 0;
  text-shadow: none;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  margin-right: 0.06em;
}

.hero__indicator {
  position: absolute;
  left: clamp(20px, 3vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
  pointer-events: auto;
  animation: hero-fade 0.8s ease-out 1.05s both;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: background 0.3s ease, height 0.3s ease, transform 0.3s ease;
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero__dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.hero__dot.is-active {
  background: var(--orange);
  height: 28px;
  border-radius: 999px;
}

@media (max-width: 880px) {
  .hero__slide[src*="hero-1"] {
    object-position: 28% 30%;
  }

  .hero__indicator {
    left: 14px;
    gap: 10px;
  }

  .hero__dot {
    width: 8px;
    height: 8px;
  }

  .hero__dot.is-active {
    height: 22px;
  }
}

.stat-banner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: rgba(255, 81, 0, 0.74);
  aspect-ratio: 1920 / 340;
  container-type: inline-size;
  overflow: visible;
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 1s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 1s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.stat-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-banner__border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.stat-banner__food {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(320px, 26vw, 560px);
  height: clamp(340px, 28vw, 560px);
  z-index: 1;
  pointer-events: none;
  transform: translateX(-50%);
  animation: food-float 6s ease-in-out infinite;
}

.stat-banner__food-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0;
  animation: food-dissolve 15s ease-in-out infinite;
  animation-play-state: paused;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.42));
  transform-origin: center bottom;
}

.stat-banner.is-visible .stat-banner__food-img {
  animation-play-state: running;
}

.stat-banner__food-img:nth-child(1) {
  animation-delay: -9s;
  transform: scale(1.1) translateY(7%);
}

.stat-banner__food-img:nth-child(2) {
  animation-delay: -6s;
  transform: scale(1.1) translateY(9%);
}

.stat-banner__food-img:nth-child(3) {
  animation-delay: -3s;
  transform: scale(0.85) translateY(4%);
}

.stat-banner__food-img:nth-child(4) {
  animation-delay: 0s;
  transform: scale(1);
}

.stat-banner__food-img:nth-child(5) {
  animation-delay: -12s;
  transform: scale(0.85);
}

@keyframes food-dissolve {
  0% {
    opacity: 0;
  }

  4% {
    opacity: 1;
  }

  16% {
    opacity: 1;
  }

  19% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes food-float {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -10px);
  }
}

.stat-banner__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: clamp(40px, 10cqw, 192px);
  padding: 0 clamp(40px, 6vw, 120px);
}

.stat-banner__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.2cqw, 16px);
  color: var(--white);
  text-align: center;
}

.stat-banner__label {
  font-size: clamp(0.95rem, 1.73cqw, 2.08rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  margin: 0;
  line-height: 1.1;
}

.stat-banner__value {
  font-size: clamp(1.7rem, 3.1cqw, 3.71rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

@media (max-width: 720px) {
  .stat-banner {
    aspect-ratio: auto;
    padding: clamp(28px, 7vw, 44px) 0;
  }

  .stat-banner__inner {
    height: auto;
    gap: clamp(20px, 5vw, 40px);
    padding: 0 var(--gutter);
  }

  .stat-banner__label {
    font-size: clamp(0.78rem, 3.1vw, 1.05rem);
  }

  .stat-banner__value {
    font-size: clamp(1.3rem, 6.2vw, 2.1rem);
  }

  .stat-banner__food {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-banner__food {
    animation: none;
  }

  .stat-banner__food-img {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .stat-banner__food-img:nth-child(1) {
    opacity: 1;
  }
}

.section--gallery {
  padding: clamp(80px, 8vw, 132px) 0 min(clamp(56px, 5vw, 96px), 8vh);
}

.section--gallery .sec-head {
  margin-bottom: min(clamp(40px, 4.5vw, 72px), 7vh);
  gap: clamp(14px, 1.4vw, 26px);
}

.section-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0 auto clamp(28px, 3vw, 48px);
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.section-dots span {
  display: block;
  border-radius: 50%;
  background: var(--white);
}

.section-dots span:nth-child(1) {
  width: 8px;
  height: 8px;
  opacity: 0.95;
}

.section-dots span:nth-child(2) {
  width: 6px;
  height: 6px;
  opacity: 0.55;
}

.section-dots span:nth-child(3) {
  width: 4px;
  height: 4px;
  opacity: 0.28;
}

.section.is-visible .section-dots {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section-dots {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section--gallery .sec-head__sub {
  font-size: clamp(1rem, 1.5vw, 1.65rem);
  line-height: 1.45;
}

.section--gallery .sec-head__title .accent {
  color: #fe5100;
}

.marquee {
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
  padding-block: 40px;
  margin-block: -40px;
  /* mask-image 는 박스를 클립 형태로 잘라버려 확대된 이미지가 안 보임 — 제거하고
     좌우 페이드는 갤러리 전용 ::before/::after 오버레이로 처리(아래 .marquee--gallery 규칙 참조) */
}

.marquee__track {
  display: flex;
  gap: clamp(14px, 1.3vw, 24px);
  width: max-content;
  animation: marquee 60s linear infinite;
}

.marquee--gallery {
  position: relative;
}

.marquee--gallery::before,
.marquee--gallery::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  pointer-events: none;
  z-index: 2;
}

.marquee--gallery::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 100%);
}

.marquee--gallery::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, rgba(0, 0, 0, 0.5) 45%, transparent 100%);
}

.marquee--gallery .marquee__track img {
  height: min(clamp(240px, 22vw, 465px), 52vh);
  width: auto;
  aspect-ratio: 450 / 700;
  object-fit: cover;
  border-radius: clamp(14px, 1.25vw, 24px);
  flex-shrink: 0;
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.45s ease,
    filter 0.35s ease;
  cursor: zoom-in;
}

.marquee--gallery .marquee__track img:hover {
  transform: scale(1.08);
  z-index: 3;
  position: relative;
  box-shadow: 0 18px 48px -16px rgba(0, 0, 0, 0.7);
  filter: saturate(1.08) brightness(1.04);
}

.marquee--gallery:hover .marquee__track {
  animation-play-state: paused;
}

.section--gallery .sec-head__title,
.section--gallery .sec-head__sub {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.section--gallery .sec-head__title {
  transition-delay: 0.05s;
}

.section--gallery .sec-head__title .accent {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.35s,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.35s;
}

.section--gallery .sec-head__sub {
  transition-delay: 0.55s;
}

.section--gallery.is-visible .sec-head__title,
.section--gallery.is-visible .sec-head__title .accent,
.section--gallery.is-visible .sec-head__sub {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .section--gallery .sec-head__title,
  .section--gallery .sec-head__title .accent,
  .section--gallery .sec-head__sub {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee--gallery .marquee__track img {
    transition: none;
  }

  .marquee--gallery .marquee__track img:hover {
    transform: none;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 720px) {
  .section--gallery .sec-head {
    margin-bottom: clamp(28px, 6vw, 40px);
  }

  .section--gallery .sec-head__sub {
    font-size: clamp(0.92rem, 3.4vw, 1.1rem);
  }

  .marquee--gallery .marquee__track img {
    height: clamp(220px, 50vw, 320px);
  }
}

.section--stores {
  padding: min(var(--sp-section-y), 9vh) 0;
}

.section--stores .sec-head {
  margin-bottom: min(var(--sp-head-gap), 6vh);
  gap: min(var(--sp-head-inner), 2vh);
}

.section--stores .sec-head__title {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section--stores .accent-line {
  color: var(--white);
}

/* 그리드 기준: 콘텐츠 1200 / 좌우 마진 360 (1920 ref).
   부모 .container가 max-width 1600 + gutter 80을 제공 → 1920 viewport에서
   (1920-1600)/2 + 80 + (1440-1200)/2 = 160 + 80 + 120 = 360 좌우 여백 자동 충족 */
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.store-card {
  background: #191919;
  border: 2px solid transparent;
  border-radius: clamp(20px, 1.8vw, 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.35s ease;
  transform-origin: center center;
}

.section--stores.is-visible .store-card:hover,
.section--stores .store-card:hover {
  border-color: var(--orange);
  transform: scale(1.028);
}

.section--stores.is-visible .store-card:focus-visible,
.section--stores .store-card:focus-visible {
  outline: none;
  border-color: var(--orange);
  transform: scale(1.028);
}

.store-card__photo {
  position: relative;
  aspect-ratio: 384 / 263;
  overflow: hidden;
  border-top-left-radius: clamp(18px, 1.6vw, 30px);
  border-top-right-radius: clamp(18px, 1.6vw, 30px);
}

.store-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card__photo::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
  z-index: 1;
}

.store-card__badge {
  position: absolute;
  top: clamp(10px, 1vw, 14px);
  left: clamp(16px, 1.5vw, 24px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: clamp(38px, 3.2vw, 53px);
  padding: 0 clamp(16px, 1.4vw, 24px);
  border-radius: 999px;
  background: var(--orange);
  color: var(--cream);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.1vw, 1.3rem);
  letter-spacing: -0.028em;
  white-space: nowrap;
}

.store-card__body {
  padding: 0 clamp(16px, 1.5vw, 24px) clamp(16px, 1.5vw, 24px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.store-stats {
  margin-top: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.store-stats__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: clamp(11px, 0.95vw, 15px) 0 clamp(12px, 1vw, 16px);
  border-bottom: 1.071px solid #1f1f23;
}

.store-stats__row dt {
  font-weight: 700;
  font-size: var(--fs-body);
  color: var(--white);
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 1;
}

.store-stats__row dd {
  font-weight: 700;
  font-size: var(--fs-body);
  color: var(--white);
  letter-spacing: -0.009em;
  white-space: nowrap;
}

.store-stats__row--total {
  border-bottom: none;
  padding: clamp(11px, 0.95vw, 15px) 0;
  margin-top: auto;
}

.store-stats__row--total dt {
  font-size: clamp(1.2rem, 1.4vw, 1.55rem);
  font-weight: 700;
  color: var(--white);
  opacity: 1;
}

.store-stats__row--total dd {
  font-weight: 800;
  font-size: clamp(1.5rem, 1.9vw, 2.15rem);
  color: var(--orange) !important;
  letter-spacing: -0.011em;
}

.section--stores .sec-head__title,
.section--stores .sec-head__sub {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.section--stores .sec-head__title {
  transition-delay: 0.05s;
}

.section--stores .sec-head__title .accent-line {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s;
}

.section--stores .sec-head__title .accent {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.35s,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.35s;
}

.section--stores .sec-head__sub {
  transition-delay: 0.55s;
}

.section--stores.is-visible .sec-head__title,
.section--stores.is-visible .sec-head__title .accent-line,
.section--stores.is-visible .sec-head__title .accent,
.section--stores.is-visible .sec-head__sub {
  opacity: 1;
  transform: translateY(0);
}

/* 매장 카드 — 진입은 @keyframes animation (backwards로 delay 동안에도 from 유지),
   호버는 base .store-card의 transition으로 처리 → 두 인터랙션이 서로 간섭 X */
.section--stores .store-card {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  will-change: opacity, transform;
}

.section--stores.is-visible .store-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: storeCardEnter 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}

.section--stores.is-visible .store-card:nth-child(1) {
  animation-delay: 0.75s;
}

.section--stores.is-visible .store-card:nth-child(2) {
  animation-delay: 0.95s;
}

.section--stores.is-visible .store-card:nth-child(3) {
  animation-delay: 1.15s;
}

.section--stores.is-visible .store-card:nth-child(4) {
  animation-delay: 1.35s;
}

.section--stores.is-visible .store-card:nth-child(5) {
  animation-delay: 1.55s;
}

@keyframes storeCardEnter {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .section--stores .sec-head__title,
  .section--stores .sec-head__title .accent-line,
  .section--stores .sec-head__title .accent,
  .section--stores .sec-head__sub,
  .section--stores .store-card,
  .section--stores.is-visible .store-card {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

.logo-marquee {
  margin-top: clamp(60px, 6vw, 100px);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(14px, 1.4vw, 22px) 0;
}

.logo-marquee__track {
  display: flex;
  gap: clamp(28px, 4vw, 72px);
  width: max-content;
  align-items: center;
  animation: marquee 36s linear infinite;
}

.logo-marquee--reverse .logo-marquee__track {
  animation-direction: reverse;
}

.logo-marquee--strip {
  margin: 0;
  background: #000;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.lm-item img {
  height: clamp(28px, 2.4vw, 44px);
  width: auto;
  opacity: 0.92;
}

.section--limited {
  padding: min(clamp(100px, 12vw, 220px), 11vh) 0 0;
}

.limited {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.6vw, 44px);
  max-width: 1200px;
  margin: 0 auto;
}

.limited__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.limited__big {
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.limited__sub {
  font-size: clamp(2.2rem, 5.5vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
}

.limited__date {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
}

.limited__left {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 0.9vw, 16px);
  font-size: clamp(1.8rem, 3.6vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.limited__pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 18px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.limited__pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      transparent 0%,
      transparent 36%,
      rgba(255, 255, 255, 0.7) 50%,
      transparent 64%,
      transparent 100%);
  transform: translateX(-110%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.limited__divider {
  width: clamp(120px, 14vw, 240px);
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  margin: clamp(24px, 2.5vw, 44px) 0;
}

.limited__benefit {
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.limited__price {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 36px);
  margin-top: clamp(20px, 2vw, 36px);
}

.limited__strike {
  font-size: clamp(1.6rem, 3.4vw, 3.4rem);
  font-family: 'Gapyeong Hanseokbong', var(--font);
  font-weight: 800;
  color: var(--white);
  position: relative;
  letter-spacing: -0.025em;
}

.limited__strike::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  top: 50%;
  height: 5px;
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-50%) rotate(-2deg);
}

.limited__arrow {
  width: clamp(80px, 9vw, 160px);
  height: auto;
  flex-shrink: 0;
  transform: translateY(8px);
}

.limited__zero {
  display: inline-flex;
  align-items: center;
  padding: clamp(8px, 0.9vw, 18px) clamp(22px, 2.4vw, 44px);
  background: var(--orange);
  color: var(--white);
  border-radius: clamp(14px, 1.4vw, 24px);
  font-family: 'Gapyeong Hanseokbong', var(--font);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  letter-spacing: -0.035em;
  box-shadow: 0 12px 32px rgba(255, 60, 0, 0.35);
  transform-origin: center center;
  will-change: transform, opacity, filter;
}

/* 진입 전 초기 상태 — fill-mode "both"가 from 상태를 delay 동안 유지하지만,
   IO 트리거 전(is-visible 없을 때)을 위해서도 base에서 숨겨둠 */
.section--limited .limited__big {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.section--limited .limited__benefit {
  opacity: 0;
  will-change: opacity, transform;
}

.section--limited .limited__arrow {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  will-change: opacity, clip-path;
}

.section--limited .limited__zero {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.section--limited.is-visible .limited__big {
  animation: limitedPunch 0.85s ease-out 0.1s both;
}

.section--limited.is-visible .limited__benefit {
  animation: benefitTextReveal 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) 0.7s both;
}

.section--limited.is-visible .limited__arrow {
  animation: arrowSweep 0.85s cubic-bezier(0.65, 0, 0.35, 1) 1.25s both;
}

.section--limited.is-visible .limited__zero {
  animation:
    zeroSlam 0.95s ease-out 1.95s both,
    zeroWobble 4.6s ease-in-out 2.9s infinite;
}

.section--limited.is-visible .limited__pill::after {
  animation: pillShimmer 2.6s ease-in-out 0.6s infinite;
}

@keyframes limitedPunch {
  0% {
    opacity: 0;
    transform: scale(1.32) translateY(-10px);
    filter: blur(6px);
  }

  60% {
    opacity: 1;
    transform: scale(0.97) translateY(2px);
    filter: blur(0);
  }

  80% {
    transform: scale(1.02) translateY(-1px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes benefitTextReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes arrowSweep {
  from {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0% 0 0);
  }
}

@keyframes pillShimmer {
  0% {
    transform: translateX(-110%);
  }

  55% {
    transform: translateX(110%);
  }

  100% {
    transform: translateX(110%);
  }

  /* hold off-screen until next loop */
}

@keyframes zeroSlam {
  0% {
    opacity: 0;
    transform: scale(3.6) translateY(-26px) rotate(-6deg);
    filter: blur(10px);
  }

  55% {
    opacity: 1;
    transform: scale(0.9) translateY(10px) rotate(2deg);
    filter: blur(0);
  }

  72% {
    transform: scale(1.06) translateY(-4px) rotate(-1.2deg);
  }

  88% {
    transform: scale(0.985) translateY(2px) rotate(0.4deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes zeroWobble {

  0%,
  100% {
    transform: scale(1) translateY(0) rotate(0deg);
  }

  20% {
    transform: scale(1.022) translateY(-4px) rotate(1.2deg);
  }

  40% {
    transform: scale(0.996) translateY(1px) rotate(-0.4deg);
  }

  60% {
    transform: scale(1.018) translateY(-3px) rotate(0.8deg);
  }

  80% {
    transform: scale(1.004) translateY(2px) rotate(-1.1deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  .section--limited .limited__big,
  .section--limited .limited__benefit,
  .section--limited .limited__arrow,
  .section--limited .limited__zero,
  .section--limited.is-visible .limited__big,
  .section--limited.is-visible .limited__benefit,
  .section--limited.is-visible .limited__arrow,
  .section--limited.is-visible .limited__zero,
  .section--limited.is-visible .limited__pill::after {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
    clip-path: none;
  }
}

.section--why {
  padding-top: clamp(80px, 10vw, 160px);
  padding-bottom: clamp(80px, 10vw, 160px);
}

.section--why .container {
  max-width: 1200px;
}

.why__hero {
  text-align: center;
  font-size: clamp(2rem, 5.5vw, 5rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  margin-bottom: clamp(28px, 3.5vw, 56px);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.section--why.is-visible .why__hero {
  opacity: 1;
  transform: translateY(0);
}

.why__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0 auto clamp(20px, 2.4vw, 40px);
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.section--why.is-visible .why__dots {
  opacity: 1;
  transform: translateY(0);
}

.why__dots span {
  display: block;
  border-radius: 50%;
  background: var(--white);
}

.why__dots span:nth-child(1) {
  width: 8px;
  height: 8px;
  opacity: 0.95;
}

.why__dots span:nth-child(2) {
  width: 6px;
  height: 6px;
  opacity: 0.55;
}

.why__dots span:nth-child(3) {
  width: 4px;
  height: 4px;
  opacity: 0.28;
}

.section--why .sec-head {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) 0.15s,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) 0.15s;
}

.section--why.is-visible .sec-head {
  opacity: 1;
  transform: translateY(0);
}

.bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 31px);
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1s cubic-bezier(0.2, 0.7, 0.3, 1) 0.35s,
    transform 1s cubic-bezier(0.2, 0.7, 0.3, 1) 0.35s;
}

.section--why.is-visible .bento {
  opacity: 1;
  transform: translateY(0);
}

.bento__card {
  background: var(--bg-card-2);
  border: 1.3px solid var(--divider-table);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.85s cubic-bezier(0.2, 0.7, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.section--why.is-visible .bento__card:nth-child(1) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.5s;
}

.section--why.is-visible .bento__card:nth-child(2) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.65s;
}

.bento__card:hover {
  border-color: rgba(255, 73, 13, 0.6);
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 73, 13, 0.25);
}

.bento-table tbody tr {
  transition: background-color 0.25s ease;
}

.bento-table tbody tr:hover {
  background-color: rgba(255, 73, 13, 0.06);
}

.bento-table tbody tr:hover td:last-child {
  color: var(--orange);
}

.bento__head {
  background: var(--bg-card);
  border-bottom: 1.3px solid var(--divider-table);
  padding: clamp(16px, 1.6vw, 24px);
  text-align: center;
}

.bento__title {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.1vw, 2.05rem);
  font-family: 'Gapyeong Hanseokbong', var(--font);
  letter-spacing: -0.02em;
}

.bento__body {
  background: var(--bg-card);
  flex: 1;
  padding: clamp(18px, 2.4vw, 31px);
}

.bento-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ko);
}

.bento-table th {
  font-family: var(--font-ko);
  font-weight: 500;
  color: #dddddd;
  font-size: clamp(0.85rem, 1.25vw, 1.25rem);
  letter-spacing: 0.04em;
  padding: 4px 0 14px;
  text-transform: uppercase;
  border-bottom: 1.3px solid var(--divider-table);
}

.bento-table td {
  color: var(--white);
  font-size: clamp(0.95rem, 1.3vw, 1.28rem);
  padding: clamp(12px, 1.1vw, 18px) 0;
  border-bottom: 1.3px solid rgba(42, 42, 42, 0.5);
  font-family: var(--font-ko);
  font-weight: 700;
}

.bento-table td:nth-child(2),
.bento-table td:nth-child(3) {
  font-family: var(--font-num);
  font-weight: 700;
}

.bento-table tr:last-child td {
  border-bottom: none;
}

.bento-table .al-l {
  text-align: left;
}

.bento-table .al-r {
  text-align: right;
}

.bento-table tr:first-of-type td:last-child {
  color: var(--orange);
}

.bento-table--two td:nth-child(2) {
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.45rem);
}

.bento__foot {
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 1.5vw, 24px) clamp(20px, 2vw, 32px);
  gap: 12px;
}

.bento__foot-label {
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-ko);
  font-size: clamp(1.05rem, 1.6vw, 1.6rem);
}

.bento__foot-value {
  font-family: var(--font);
  color: var(--white);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  margin-left: auto;
  margin-right: 20px;
}

.bento__foot-pct {
  color: var(--white);
  font-family: 'Gapyeong Hanseokbong', var(--font);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
  display: inline-block;
  opacity: 0;
  transform: scale(0.7);
  transform-origin: center;
}

.bento__foot-pct--solo {
  margin-left: auto;
}

.profit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.6vw, 28px);
  max-width: 1200px;
  margin: clamp(36px, 3.6vw, 60px) auto 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) 0.85s,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) 0.85s;
}

.section--why.is-visible .profit-cards {
  opacity: 1;
  transform: translateY(0);
}

.profit-card {
  position: relative;
  background: var(--bg-card-2);
  border: 1px solid var(--divider-table);
  border-radius: 16px;
  padding: clamp(28px, 2.6vw, 40px) clamp(24px, 2.2vw, 34px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.6vw, 28px);
  min-height: clamp(180px, 16vw, 230px);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.profit-card:hover {
  background: #1f1f22;
  border-color: rgba(255, 73, 13, 0.35);
}

.profit-card--highlight {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(255, 73, 13, 0.22);
}

.profit-card--highlight:hover {
  background: #ff5d28;
  border-color: #ff5d28;
}

.profit-card__label {
  margin: 0;
  font-size: clamp(0.92rem, 1.1vw, 1.1rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.profit-card--highlight .profit-card__label {
  color: rgba(255, 255, 255, 0.95);
}

.profit-card__pct {
  font-weight: 500;
  font-size: 0.92em;
  opacity: 0.78;
  margin-left: 2px;
}

.profit-card__value {
  margin: auto 0 0;
  font-size: clamp(1.65rem, 2.9vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.028em;
}

.profit-card__sub {
  margin: 0;
  font-size: clamp(0.8rem, 0.95vw, 0.92rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: -0.005em;
  line-height: 1.4;
}

.profit-card--highlight .profit-card__sub {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 980px) {
  .profit-cards {
    grid-template-columns: 1fr 1fr;
  }

  .profit-card--highlight {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .profit-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .profit-card--highlight {
    grid-column: auto;
  }

  .profit-card {
    min-height: 0;
    padding: 24px 22px;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profit-cards {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .profit-card {
    transition: none;
  }
}

.section--why.is-visible .bento__foot-pct {
  animation: pct-pop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards,
    pct-pulse 2.6s ease-in-out 1.8s infinite;
}

@keyframes pct-pop {
  0% {
    opacity: 0;
    transform: scale(0.5);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  60% {
    opacity: 1;
    transform: scale(1.18);
    text-shadow: 0 0 26px rgba(255, 255, 255, 0.55);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pct-pulse {

  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }

  50% {
    transform: scale(1.05);
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {

  .section--why .why__hero,
  .section--why .sec-head,
  .section--why .bento {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section--why .bento__foot-pct {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.section--mkt {
  padding-top: clamp(80px, 10vw, 160px);
  padding-bottom: clamp(80px, 10vw, 160px);
}

.section--mkt .container {
  max-width: 1200px;
}

.section--mkt .sec-head {
  margin-bottom: var(--sp-head-gap);
}

.mkt-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.1vw, 36px);
  align-items: end;
}

.mkt-channel {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 36px);
}

.mkt-channel__shot {
  width: 100%;
  aspect-ratio: 596 / 418;
  overflow: hidden;
  border-radius: clamp(10px, 0.9vw, 16px);
  background: #0a0a0a;
}

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

.mkt-channel__label {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(8px, 0.7vw, 12px);
  text-align: center;
  padding: clamp(16px, 1.8vw, 28px) clamp(16px, 2vw, 28px);
  min-height: clamp(96px, 10vw, 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(4px, 0.4vw, 6px);
  font-size: clamp(0.95rem, 1.35vw, 1.35rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -0.005em;
}

.mkt-channel__label strong {
  font-weight: 700;
}

.mkt-bodytext {
  margin-top: clamp(36px, 4vw, 70px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 3.2vw, 52px);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.mkt-bodytext p {
  color: #d1d5dc;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  line-height: 1.6;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.mkt-bodytext p strong {
  color: #fff;
  font-weight: 700;
}

.mkt-bodytext__link {
  font-size: clamp(0.95rem, 1.3vw, 1.3rem);
  color: #f9f9f9;
  font-weight: 300;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  padding-bottom: 8px;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.mkt-bodytext__link:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
  transform: translateY(-2px);
}

.mkt-subhead {
  text-align: center;
  margin-top: clamp(90px, 11vw, 179px);
  margin-bottom: clamp(48px, 5.5vw, 88px);
  color: var(--orange);
  font-size: var(--fs-display-1);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.mkt-grid-wrap {
  position: relative;
}

.mkt-grid {
  --mkt-grid-gap: clamp(16px, 1.8vw, 28px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * var(--mkt-grid-gap)) / 3);
  gap: var(--mkt-grid-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mkt-grid::-webkit-scrollbar {
  display: none;
}

.mkt-card {
  scroll-snap-align: start;
}

.mkt-grid__nav {
  display: inline-flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.mkt-grid__nav svg {
  width: 22px;
  height: 22px;
}

.mkt-grid__nav:hover {
  background: rgba(0, 0, 0, 0.85);
}

.mkt-grid__nav:active {
  transform: translateY(-50%) scale(0.92);
}

.mkt-grid__nav--prev {
  left: -8px;
}

.mkt-grid__nav--next {
  right: -8px;
}

.mkt-grid__nav[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.mkt-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 1.8vw, 33px);
}

.mkt-card__shot {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 447;
  border-radius: clamp(12px, 1.1vw, 18px);
  overflow: hidden;
  background: #f4f5f7;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.4s ease;
}

.mkt-card:hover .mkt-card__shot {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.mkt-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.mkt-card figcaption {
  text-align: center;
}

.mkt-card__pct {
  font-size: clamp(1.05rem, 1.65vw, 1.65rem);
  line-height: 1.25;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.mkt-card__rank {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  color: var(--white);
  letter-spacing: -0.025em;
  margin-top: 4px;
  font-weight: 700;
  line-height: 1.25;
}

.mkt-views-wrap {
  position: relative;
  margin-top: clamp(50px, 5.5vw, 83px);
}

.mkt-views {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.5vw, 29px);
}

.mkt-views__item {
  overflow: hidden;
  border-radius: clamp(12px, 1.1vw, 18px);
}

.mkt-views__item img {
  width: 100%;
  aspect-ratio: 377 / 508;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.mkt-views__item:hover img {
  transform: scale(1.04);
}

.mkt-views__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.mkt-views__nav svg {
  width: 22px;
  height: 22px;
}

.mkt-views__nav:hover {
  background: rgba(0, 0, 0, 0.65);
}

.mkt-views__nav:active {
  transform: translateY(-50%) scale(0.92);
}

.mkt-views__nav--prev {
  left: 8px;
}

.mkt-views__nav--next {
  right: 8px;
}

.mkt-views__nav[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.mkt-finalfoot {
  margin-top: clamp(70px, 8vw, 111px);
  text-align: center;
}

.mkt-foot {
  text-align: center;
  font-size: clamp(1.6rem, 3.3vw, 3.3rem);
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.3;
  font-weight: 700;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.mkt-foot .hl-orange {
  background: var(--orange);
  color: var(--white);
  padding: 0 clamp(8px, 1vw, 16px);
  border-radius: 4px;
  font-weight: 800;
}

.mkt-foot-copy {
  margin-top: clamp(40px, 4.6vw, 68px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.mkt-foot-copy__lead {
  font-size: clamp(1.3rem, 2.5vw, 2.5rem);
  line-height: 1.4;
  color: var(--white);
  font-weight: 400;
  letter-spacing: -0.005em;
}

.mkt-foot-copy__lead strong {
  font-weight: 700;
}

.mkt-foot-copy__sub {
  margin-top: clamp(24px, 2.6vw, 40px);
  font-size: clamp(1rem, 1.55vw, 1.55rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  letter-spacing: -0.005em;
}

.mkt-foot-copy__sub strong {
  color: #fff;
  font-weight: 700;
}

.mkt-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #515151;
  border-bottom: 1px solid #515151;
  margin-top: clamp(48px, 6vw, 74px);
}

.mkt-feature {
  padding: clamp(20px, 2.2vw, 30px) clamp(20px, 2.2vw, 34px);
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.7vw, 10px);
}

.mkt-feature+.mkt-feature {
  border-left: 1px solid #515151;
}

.mkt-feature__num {
  font-family: 'Fraunces', serif;
  color: var(--orange);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1;
  font-variation-settings: "SOFT" 0, "WONK" 1;
}

.mkt-feature__title {
  font-size: clamp(1.25rem, 1.85vw, 1.85rem);
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-top: 6px;
}

.mkt-feature__desc {
  font-size: clamp(0.95rem, 1.2vw, 1.25rem);
  color: var(--white);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.85s cubic-bezier(0.2, 0.7, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .mkt-foot {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
  }
}

@media (max-width: 880px) {
  .mkt-channels {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 36px);
  }

  .mkt-features {
    grid-template-columns: 1fr;
  }

  .mkt-feature+.mkt-feature {
    border-left: none;
    border-top: 1px solid #515151;
  }

  .mkt-subhead {
    margin-top: clamp(60px, 9vw, 100px);
    font-size: clamp(1.25rem, 5.4vw, 2rem);
    letter-spacing: -0.03em;
    white-space: nowrap;
  }

  .mkt-grid {
    --mkt-grid-gap: 12px;
    grid-auto-columns: 78%;
    padding: 0 12px;
    margin: 0 -12px;
  }

  .mkt-card {
    scroll-snap-align: center;
  }

  .mkt-grid__nav {
    width: 44px;
    height: 44px;
  }

  .mkt-grid__nav--prev {
    left: 8px;
  }

  .mkt-grid__nav--next {
    right: 8px;
  }

  .mkt-views {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 12px;
    margin: 0 -12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mkt-views::-webkit-scrollbar {
    display: none;
  }

  .mkt-views__item {
    scroll-snap-align: center;
  }

  .mkt-views__nav {
    display: inline-flex;
  }

  .mkt-card__pct {
    font-size: clamp(1.3rem, 4.6vw, 1.6rem);
  }

  .mkt-card__rank {
    font-size: clamp(1.15rem, 4vw, 1.4rem);
  }
}

@media (max-width: 560px) {
  .mkt-channel__label {
    font-size: clamp(1rem, 4.4vw, 1.3rem);
    padding: 24px 18px;
    min-height: auto;
  }

  .mkt-foot-copy__lead {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .mkt-foot-copy__sub {
    font-size: clamp(0.92rem, 3.4vw, 1.05rem);
  }

  .mkt-feature__title {
    font-size: clamp(1.15rem, 5vw, 1.4rem);
  }

  .mkt-grid {
    grid-auto-columns: 86%;
  }

  .mkt-views {
    grid-auto-columns: 86%;
  }

  .mkt-card__pct {
    font-size: clamp(1.35rem, 5vw, 1.7rem);
  }

  .mkt-card__rank {
    font-size: clamp(1.2rem, 4.4vw, 1.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section--avg {
  padding-top: clamp(80px, 10vw, 160px);
  padding-bottom: clamp(40px, 5vw, 80px);
}

.section--avg .container {
  max-width: 1200px;
}

.section--avg .num-pill,
.section--avg .sec-head__title,
.section--avg .sec-head__sub,
.section--avg .avg-platter__img,
.section--avg .avg-platter__caption {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.section--avg.is-visible .num-pill {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.section--avg.is-visible .sec-head__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.section--avg.is-visible .sec-head__sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}

.section--avg.is-visible .avg-platter__img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.section--avg.is-visible .avg-platter__caption {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.avg-platter {
  margin: clamp(28px, 3vw, 48px) auto 0;
  max-width: min(620px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
}

.avg-platter__frame {
  position: relative;
  width: 100%;
  max-height: min(52vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avg-platter__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 13%, transparent 87%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 0%, transparent 13%, transparent 87%, var(--bg) 100%);
}

.avg-platter__img {
  width: 100%;
  height: auto;
  max-height: min(52vh, 560px);
  object-fit: contain;
  display: block;
}

.avg-platter__caption {
  margin: 0;
  text-align: center;
  color: var(--white);
  font-size: clamp(1.2rem, 2.4vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.avg-platter__price {
  display: inline-block;
  margin-top: clamp(2px, 0.4vw, 8px);
  color: var(--orange);
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  transform-origin: center;
}

.section--avg.is-visible .avg-platter__price {
  animation: price-breathe 4s ease-in-out 1.4s infinite;
}

@keyframes price-breathe {

  0%,
  100% {
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(255, 73, 13, 0);
  }

  50% {
    transform: translateY(-4px) scale(1.015);
    text-shadow: 0 6px 22px rgba(255, 73, 13, 0.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--avg.is-visible .avg-platter__price {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .section--avg .num-pill,
  .section--avg .sec-head__title,
  .section--avg .sec-head__sub,
  .section--avg .avg-platter__img,
  .section--avg .avg-platter__caption {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section--signature {
  padding-top: clamp(120px, 14vw, 240px);
  background:
    linear-gradient(180deg, transparent 0%, transparent 35%, var(--bg) 35%, var(--bg) 100%),
    linear-gradient(180deg, #2a0a04 0%, #1a0703 100%);
}

.sig__title {
  text-align: center;
  font-size: var(--fs-display-2);
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.035em;
  margin-bottom: clamp(48px, 5vw, 80px);
}

.sig__title-big {
  font-size: clamp(3rem, 7vw, 7rem);
  display: block;
  line-height: 1.1;
  margin-top: 8px;
}

.sig-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.4vw, 28px);
  align-items: end;
  max-width: 1500px;
  margin: 0 auto;
}

.sig-item {
  aspect-ratio: 1 / 1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sig-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.6));
}

.sec-head--spaced {
  margin-top: clamp(120px, 12vw, 200px);
}

.section--visit {
  padding: clamp(40px, 5vw, 80px) 0 clamp(80px, 10vw, 160px);
}

.section--visit .container {
  max-width: 1200px;
}

.section--visit .num-pill,
.section--visit .sec-head__title,
.section--visit .sec-head__sub {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.section--visit.is-visible .num-pill {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.section--visit.is-visible .sec-head__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.section--visit.is-visible .sec-head__sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.24s;
}

.visit-grid-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(16px, 1.4vw, 24px);
  aspect-ratio: 1132 / 655;
  max-height: 72vh;
}

.visit-grid__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.visit-grid__nav svg {
  width: 22px;
  height: 22px;
}

.visit-grid__nav:hover {
  background: rgba(0, 0, 0, 0.65);
}

.visit-grid__nav:active {
  transform: translateY(-50%) scale(0.92);
}

.visit-grid__nav--prev {
  left: 8px;
}

.visit-grid__nav--next {
  right: 8px;
}

.visit-grid__nav[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.visit-card {
  position: relative;
  background: linear-gradient(180deg, #14110d, #1a1a1a);
  border: 1px solid #2a2a2e;
  border-radius: 4px;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1),
    border-color 0.3s ease;
}

.section--visit.is-visible .visit-card:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.section--visit.is-visible .visit-card:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.section--visit.is-visible .visit-card:nth-of-type(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.visit-card:hover {
  border-color: rgba(255, 73, 13, 0.4);
}

.visit-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.visit-card:hover img {
  transform: scale(1.04);
}

.visit-card--main {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.visit-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(10px, 1vw, 16px) clamp(14px, 1.5vw, 22px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  color: rgba(245, 241, 234, 0.7);
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 0.7vw, 0.78rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s ease;
}

.visit-card:hover figcaption {
  color: rgba(245, 241, 234, 0.95);
}

.visit-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: clamp(40px, 4.5vw, 70px) auto 0;
  padding: 0;
  border-top: 1px solid #515151;
  border-bottom: 1px solid #515151;

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) 0.7s,
    transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) 0.7s;
}

.section--visit.is-visible .visit-features {
  opacity: 1;
  transform: translateY(0);
}

.visit-feature {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.9vw, 12px);
  padding: clamp(28px, 2.6vw, 40px) clamp(20px, 2vw, 33px);
  position: relative;
}

.visit-feature+.visit-feature {
  border-left: 1px solid #515151;
}

.visit-feature__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 3vw, 45px);
  height: clamp(34px, 2.85vw, 43px);
  background: rgba(197, 62, 0, 0.8);
  color: var(--white);
  border-radius: 24px;
  font-family: 'Fraunces', 'Pretendard', serif;
  font-size: clamp(1.05rem, 1.4vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}

.visit-feature__title {
  font-family: 'Gapyeong Hanseokbong', var(--font);
  font-size: clamp(1.3rem, 2.1vw, 2.1rem);
  font-weight: 800;
  color: #f5f1ea;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin: 0;
  transition: color 0.3s ease;
}

.visit-feature:hover .visit-feature__title {
  color: var(--orange);
}

.visit-feature__desc {
  font-size: clamp(0.92rem, 1.2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {

  .section--visit .num-pill,
  .section--visit .sec-head__title,
  .section--visit .sec-head__sub,
  .section--visit .visit-card,
  .section--visit .visit-features {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .visit-card img {
    transition: none;
  }
}

.section--concept {
  padding-top: clamp(60px, 7vw, 120px);
  padding-bottom: clamp(60px, 7vw, 120px);
  overflow: hidden;
}

.section--concept .container {
  max-width: 1200px;
}

.section--concept .sec-head {
  margin-bottom: clamp(40px, 5vw, 72px);
}

.font-kimsaeng {
  font-family: 'Chungju Kimsaeng', 'ChungjuKimSaeng', var(--font);
  font-weight: 400;
}

.concept-banner-wrap {
  position: relative;
  width: 100%;
  background: #000;
}

.concept-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  aspect-ratio: 1928 / 787;
  max-height: min(60vh, 560px);
}

.concept-banner__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 40px);
  overflow: hidden;
}

.concept-banner__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.concept-overlay {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(1.05rem, 2.4vw, 2.85rem);
  line-height: 1.45;
  letter-spacing: -0.005em;
  text-align: center;
  text-shadow: 5px 11px 30px rgba(0, 0, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.4);
  margin: 0;
  pointer-events: none;
}

.concept-banner__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.concept-banner__nav svg {
  width: 22px;
  height: 22px;
}

.concept-banner__nav:hover {
  background: rgba(0, 0, 0, 0.65);
}

.concept-banner__nav:active {
  transform: translateY(-50%) scale(0.92);
}

.concept-banner__nav--prev {
  left: 8px;
}

.concept-banner__nav--next {
  right: 8px;
}

.concept-banner__nav[disabled] {
  opacity: 0.3;
  pointer-events: none;
}

.concept-intro {
  margin-top: clamp(56px, 7vw, 110px);
  text-align: center;
  font-size: clamp(1.1rem, 1.8vw, 1.85rem);
  line-height: 1.6;
  color: var(--white);
  letter-spacing: -0.015em;
  font-weight: 400;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.concept-intro strong {
  font-weight: 700;
}

.concept-origin {
  margin: clamp(56px, 7vw, 110px) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  max-width: 520px;
  width: 100%;
}

.concept-origin__shot {
  width: 100%;
  aspect-ratio: 704 / 480;
  overflow: hidden;
  border-radius: clamp(8px, 0.8vw, 14px);
  background: #1a1a1a;
}

.concept-origin__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.concept-origin:hover .concept-origin__shot img {
  transform: scale(1.03);
}

.concept-origin__cap {
  font-size: clamp(1.05rem, 1.7vw, 1.7rem);
  color: var(--white);
  letter-spacing: -0.025em;
  text-align: center;
  line-height: 1.3;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.concept-timeline {
  margin-top: clamp(64px, 8vw, 120px);
  text-align: center;
}

.concept-timeline__title {
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: clamp(36px, 4.4vw, 60px);
  line-height: 1.15;
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  position: relative;
  padding-top: clamp(20px, 2.2vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: calc(clamp(20px, 2.2vw, 32px) + clamp(13px, 1.4vw, 18px));
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  padding: 0 clamp(6px, 1vw, 14px);
  position: relative;
}

.timeline__dot {
  display: block;
  width: clamp(14px, 1.5vw, 21px);
  height: clamp(14px, 1.5vw, 21px);
  border-radius: 50%;
  background: #b8b8b8;
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.4s ease;
}

.timeline__step[data-size="xs"] .timeline__dot {
  width: clamp(14px, 1.4vw, 19px);
  height: clamp(14px, 1.4vw, 19px);
  background: #383838;
}

.timeline__step[data-size="sm"] .timeline__dot {
  width: clamp(15px, 1.6vw, 22px);
  height: clamp(15px, 1.6vw, 22px);
  background: #747474;
}

.timeline__step[data-size="md"] .timeline__dot {
  width: clamp(16px, 1.8vw, 24px);
  height: clamp(16px, 1.8vw, 24px);
  background: #b8b8b8;
}

.timeline__step[data-size="lg"] .timeline__dot {
  width: clamp(18px, 2vw, 27px);
  height: clamp(18px, 2vw, 27px);
  background: #d9d9d9;
}

.timeline__step[data-size="xl"] .timeline__dot {
  width: clamp(20px, 2.4vw, 32px);
  height: clamp(20px, 2.4vw, 32px);
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
}

.timeline__step:hover .timeline__dot {
  transform: scale(1.15);
}

.timeline__year {
  font-family: var(--font-num);
  font-size: clamp(1.1rem, 1.7vw, 1.7rem);
  color: var(--white);
  letter-spacing: 0.015em;
  font-weight: 400;
}

.timeline__step--current .timeline__year {
  font-weight: 700;
}

.timeline__desc {
  font-size: clamp(0.85rem, 1.15vw, 1.15rem);
  color: #99a1af;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-align: center;
}

.timeline__step--current .timeline__desc {
  color: var(--white);
  font-weight: 700;
}

.concept-callout {
  margin-top: clamp(56px, 7vw, 110px);
  text-align: center;
  color: var(--orange);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.2;
  letter-spacing: 0.005em;
}

.concept-callout p {
  margin: 0;
}

.concept-callout p+p {
  margin-top: clamp(6px, 0.8vw, 14px);
}

.concept-mark {
  margin: clamp(36px, 5vw, 72px) auto 0;
  display: flex;
  justify-content: center;
}

.concept-mark img {
  height: clamp(80px, 10vw, 150px);
  width: auto;
  opacity: 0.75;
}

.concept-closing {
  margin-top: clamp(32px, 4vw, 64px);
  text-align: center;
  color: var(--white);
  font-size: clamp(0.95rem, 1.3vw, 1.25rem);
  line-height: 1.75;
  letter-spacing: -0.005em;
  font-weight: 400;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.concept-closing strong {
  font-weight: 700;
}

.concept-final {
  margin-top: clamp(28px, 3.5vw, 56px);
  text-align: center;
  color: var(--white);
  font-size: clamp(1.4rem, 2.3vw, 2.25rem);
  line-height: 1.5;
  letter-spacing: 0.015em;
}

@media (max-width: 1024px) {
  .concept-overlay {
    font-size: clamp(1rem, 2.4vw, 1.7rem);
  }
}

@media (max-width: 720px) {
  .concept-banner {
    display: flex;
    grid-template-columns: none;
    aspect-ratio: auto;
    max-height: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .concept-banner::-webkit-scrollbar {
    display: none;
  }

  .concept-banner__slide {
    flex: 0 0 100%;
    aspect-ratio: 360 / 460;
    max-height: 70vh;
    scroll-snap-align: center;
  }

  .concept-overlay {
    font-size: clamp(1.15rem, 5vw, 1.6rem);
  }

  .concept-banner__nav {
    display: inline-flex;
  }

  .timeline {
    grid-template-columns: 1fr;
    padding-top: 0;
    gap: clamp(20px, 5vw, 36px);
  }

  .timeline::before {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    transform: none;
  }

  .timeline__step {
    padding: 0;
  }

  .concept-callout {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}

.section--invest {
  padding-top: clamp(60px, 7vw, 120px);
  padding-bottom: clamp(60px, 7vw, 120px);
}

.section--invest .container {
  max-width: 1200px;
}

.section--invest .sec-head {
  margin-bottom: clamp(36px, 4.5vw, 64px);
}

.invest-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: clamp(16px, 1.8vw, 28px);
  padding: clamp(28px, 4vw, 56px) clamp(24px, 3.6vw, 52px);
  position: relative;
  overflow: visible;
}

.invest-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, 1vw, 14px);
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

.invest-tab {
  position: relative;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: clamp(10px, 1.1vw, 14px) clamp(20px, 2.4vw, 32px);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
  font-family: inherit;
}

.invest-tab:hover {
  border-color: rgba(255, 60, 0, 0.6);
  color: var(--orange);
}

.invest-tab.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(255, 60, 0, 0.55);
}

.invest-tab.is-active:hover {
  color: var(--white);
}

.invest-tab__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-cta);
  color: var(--white);
  font-size: clamp(0.7rem, 0.8vw, 0.78rem);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.invest-tab--recommended.is-active .invest-tab__badge,
.invest-tab--recommended .invest-tab__badge {
  opacity: 1;
}

.invest-total {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 14px);
}

.invest-total__label {
  color: var(--muted);
  font-size: clamp(0.85rem, 1vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.invest-total__value {
  color: var(--orange);
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.invest-total__note {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  letter-spacing: -0.01em;
}

.invest-divider {
  border: 0;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.12);
  margin: clamp(28px, 3.5vw, 48px) 0 clamp(20px, 2.5vw, 36px);
}

.invest-rows {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.6vw, 8px);
}

.invest-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(14px, 1.4vw, 18px) clamp(8px, 1.2vw, 16px);
  border-radius: 10px;
  transition: background 0.25s ease;
}

.invest-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.invest-row__label {
  color: var(--white);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.invest-row__amount {
  color: var(--white);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.015em;
  font-family: var(--font-num), var(--font);
}

.invest-row__note {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  text-align: right;
  letter-spacing: -0.01em;
}

.invest-actual {
  margin-top: clamp(24px, 3vw, 40px);
  background: var(--bg-card-grad);
  border: 1px solid rgba(255, 60, 0, 0.25);
  border-radius: clamp(16px, 1.8vw, 28px);
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 3vw, 44px);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 3.5vw, 48px);
}

.invest-actual__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 1vw, 14px);
}

.invest-actual__brand {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-num);
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 999px;
}

.invest-actual__title {
  color: var(--white);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.invest-actual__total {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  letter-spacing: -0.01em;
}

.invest-actual__total strong {
  color: var(--orange);
  font-weight: 700;
  margin-left: 4px;
}

.invest-actual__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: clamp(20px, 2.5vw, 40px);
}

.invest-actual__item {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.8vw, 12px);
  padding-top: clamp(8px, 1vw, 14px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.invest-actual__label {
  color: var(--muted);
  font-size: clamp(0.8rem, 0.95vw, 0.92rem);
  letter-spacing: 0.02em;
}

.invest-actual__amount {
  color: var(--white);
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-family: var(--font-num), var(--font);
}

@media (max-width: 880px) {
  .invest-actual {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 36px);
  }

  .invest-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "label amount"
      "note  note";
    row-gap: 4px;
  }

  .invest-row__label {
    grid-area: label;
  }

  .invest-row__amount {
    grid-area: amount;
    text-align: right;
  }

  .invest-row__note {
    grid-area: note;
    text-align: left;
    font-size: 0.85rem;
  }
}

@media (max-width: 560px) {
  .invest-tab {
    padding: 10px 16px;
    font-size: 0.92rem;
  }

  .invest-actual__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.section--process {
  padding-top: clamp(60px, 7vw, 120px);
  padding-bottom: clamp(60px, 7vw, 120px);
}

.section--process .container {
  max-width: 1200px;
}

.section--process .sec-head {
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section--process .sec-head__sub strong {
  color: var(--white);
  font-weight: 700;
}

.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.5vw, 24px);
  counter-reset: process;
}

.process-card {
  background: var(--bg-card);
  border: 1.5px solid transparent;
  border-radius: clamp(12px, 1.1vw, 16px);
  padding: clamp(20px, 2vw, 28px) clamp(14px, 1.6vw, 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(8px, 0.9vw, 12px);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1),
    border-color 0.25s ease,
    background 0.25s ease;
}

.process-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.process-card__num {
  font-family: var(--font-num);
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.22em;
  margin-bottom: clamp(2px, 0.4vw, 6px);
}

.process-card__icon {
  width: clamp(36px, 3.6vw, 46px);
  height: clamp(36px, 3.6vw, 46px);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.process-card__icon svg {
  width: 100%;
  height: 100%;
}

.process-card:hover .process-card__icon {
  transform: scale(1.04);
}

.process-card__title {
  font-family: var(--font-display, 'Gapyeong Hanseokbong'), var(--font);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.process-card__desc {
  font-size: clamp(0.75rem, 0.88vw, 0.85rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.process-card--highlight {
  background: var(--orange);
  border-color: var(--orange);
  justify-content: center;
}

.process-card--highlight:hover {
  background: var(--orange-cta);
  border-color: var(--orange-cta);
}

.process-card--highlight .process-card__num {
  color: rgba(255, 255, 255, 0.9);
}

.process-card--highlight .process-card__icon {
  color: var(--white);
}

.process-card--highlight .process-card__title {
  color: var(--white);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.25;
}

.process-grid .process-card {
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.process-grid.is-visible .process-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-grid .process-card:nth-child(1) {
  transition-delay: 0.10s;
}

.process-grid .process-card:nth-child(2) {
  transition-delay: 0.25s;
}

.process-grid .process-card:nth-child(3) {
  transition-delay: 0.40s;
}

.process-grid .process-card:nth-child(4) {
  transition-delay: 0.55s;
}

.process-grid .process-card:nth-child(5) {
  transition-delay: 0.70s;
}

.process-grid .process-card:nth-child(6) {
  transition-delay: 0.85s;
}

.process-grid .process-card:nth-child(7) {
  transition-delay: 1.00s;
}

.process-grid .process-card:nth-child(8) {
  transition-delay: 1.15s;
}

.process-grid[data-reveal] {
  transition-duration: 0.3s;
}

@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 1.2vw, 16px);
  }
}

@media (max-width: 560px) {
  .process-grid {
    gap: 8px;
  }

  .process-card {
    padding: 16px 12px;
    gap: 6px;
    border-radius: 12px;
  }

  .process-card__num {
    font-size: 0.75rem;
  }

  .process-card__icon {
    width: 32px;
    height: 32px;
  }

  .process-card__title {
    font-size: 0.95rem;
  }

  .process-card__desc {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .process-card--highlight .process-card__title {
    font-size: 1rem;
  }
}

.section--inquiry {
  position: relative;
  overflow: hidden;
  padding-top: clamp(50px, 6vw, 96px);
  padding-bottom: clamp(70px, 8vw, 120px);
  background-color: #e8e4d8;
  background-image:
    radial-gradient(ellipse 120% 90% at 50% 50%, transparent 55%, rgba(90, 80, 65, 0.10) 100%),
    radial-gradient(ellipse 70% 55% at 80% 8%, rgba(252, 250, 245, 0.45), transparent 60%),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 1200'%3E%3Cfilter id='hC'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='3' stitchTiles='stitch' seed='9'/%3E%3CfeColorMatrix values='0 0 0 0 0.28 0 0 0 0 0.25 0 0 0 0 0.20 0 0 0 0.20 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23hC)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='hM'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.06' numOctaves='2' stitchTiles='stitch' seed='4'/%3E%3CfeColorMatrix values='0 0 0 0 0.26 0 0 0 0 0.23 0 0 0 0 0.18 0 0 0 0.10 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23hM)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='hF'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch' seed='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.22 0 0 0 0 0.20 0 0 0 0 0.16 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23hF)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Cfilter id='hS'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.2' numOctaves='1' stitchTiles='stitch' seed='7'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='discrete' tableValues='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1'/%3E%3C/feComponentTransfer%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.16 0 0 0 0.12 0 0 0 0.28 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23hS)'/%3E%3C/svg%3E");
  background-size:
    auto,
    auto,
    1200px 1200px,
    600px 600px,
    300px 300px,
    500px 500px;
  background-repeat:
    no-repeat,
    no-repeat,
    repeat,
    repeat,
    repeat,
    repeat;
  background-blend-mode:
    multiply,
    screen,
    multiply,
    multiply,
    multiply,
    multiply;
}

.inquiry-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  color: rgba(58, 48, 32, 0.18);
  z-index: 0;
}

.inquiry-cloud {
  position: absolute;
  height: auto;
  will-change: transform;
  filter: drop-shadow(0 1px 0 rgba(255, 252, 245, 0.4));
}

.inquiry-cloud--tl {
  top: clamp(40px, 5vw, 80px);
  left: clamp(-30px, -1vw, 40px);
  width: clamp(160px, 18vw, 280px);
  animation: cloudDrift1 18s ease-in-out infinite;
  opacity: 0.85;
}

.inquiry-cloud--br {
  bottom: clamp(48px, 6vw, 96px);
  right: clamp(-40px, -1vw, 24px);
  width: clamp(200px, 22vw, 340px);
  animation: cloudDrift2 22s ease-in-out infinite;
  opacity: 0.75;
}

.inquiry-cloud--ml {
  top: 48%;
  left: clamp(-60px, -3vw, -20px);
  width: clamp(140px, 14vw, 220px);
  animation: cloudDrift3 16s ease-in-out infinite;
  opacity: 0.55;
}

@keyframes cloudDrift1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(18px, -8px);
  }
}

@keyframes cloudDrift2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-22px, 10px);
  }
}

@keyframes cloudDrift3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(14px, 6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .inquiry-cloud {
    animation: none;
  }
}

@media (max-width: 720px) {
  .inquiry-cloud--ml {
    display: none;
  }

  .inquiry-cloud--tl {
    width: 140px;
    top: 24px;
    left: -20px;
  }

  .inquiry-cloud--br {
    width: 180px;
    bottom: 40px;
    right: -30px;
  }
}

.section--inquiry .container {
  max-width: 1080px;
  position: relative;
  z-index: 1;
}

.section--inquiry .sec-head {
  gap: clamp(12px, 1.3vw, 20px);
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

.section--inquiry .sec-head__title,
.section--inquiry .sec-head__sub--accent {
  color: #1b1410;
}

.sec-head__sub--accent {
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  letter-spacing: -0.015em;
}

.inquiry-lead {
  margin: clamp(18px, 2vw, 28px) auto 0;
  color: #4a3f33;
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.75;
  letter-spacing: -0.01em;
  text-align: center;
  max-width: 680px;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.inquiry-lead strong {
  color: #1b1410;
  font-weight: 700;
}

.inquiry-notice {
  margin: 0 auto clamp(28px, 3.5vw, 48px);
  max-width: 600px;
  background: #1c1612;
  border-radius: clamp(12px, 1.2vw, 16px);
  padding: clamp(20px, 2.2vw, 30px) clamp(28px, 3vw, 44px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  box-shadow: 0 6px 20px rgba(28, 22, 18, 0.12);
  position: relative;
}

.inquiry-notice__msg {
  color: rgba(245, 241, 234, 0.78);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  letter-spacing: -0.005em;
  line-height: 1.6;
}

.inquiry-notice__count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.inquiry-notice__count::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.inquiry-notice__count strong {
  font-weight: 700;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1.15fr) minmax(0, 1.2fr);
  gap: clamp(20px, 2.4vw, 40px);
  align-items: center;
}

.inquiry-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
}

.inquiry-brand__title {
  color: #1b1410;
  font-size: var(--fs-display-1);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  word-break: keep-all;
  margin: 0;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: translateY(10px);
  transition:
    clip-path 0.65s cubic-bezier(0.65, 0.05, 0.25, 1) 0.95s,
    opacity 0.4s ease-out 0.95s,
    transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) 0.95s;
}

.inquiry-layout.is-visible .inquiry-brand__title,
[data-reveal].is-visible .inquiry-brand__title {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .inquiry-brand__title {
    clip-path: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.inquiry-brand__brush {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3 / 1.18;
  object-fit: cover;
  object-position: center 58%;
  margin-bottom: -2.5%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(27, 20, 16, 0.18));
  /* 페인트 애니메이션 — 붓이 왼→오로 슥 그어지는 reveal
     edge에 12% 페더 + 살짝 끝쪽 jitter용 거친 SVG 마스크 합성 */
  -webkit-mask-image:
    linear-gradient(102deg,
      #000 0%,
      #000 calc(var(--brush-pos, 0%) - 6%),
      rgba(0, 0, 0, 0.85) calc(var(--brush-pos, 0%) - 2%),
      rgba(0, 0, 0, 0.4) calc(var(--brush-pos, 0%) + 2%),
      transparent calc(var(--brush-pos, 0%) + 8%),
      transparent 100%);
  mask-image:
    linear-gradient(102deg,
      #000 0%,
      #000 calc(var(--brush-pos, 0%) - 6%),
      rgba(0, 0, 0, 0.85) calc(var(--brush-pos, 0%) - 2%),
      rgba(0, 0, 0, 0.4) calc(var(--brush-pos, 0%) + 2%),
      transparent calc(var(--brush-pos, 0%) + 8%),
      transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: translateY(18px) scale(0.985);
  opacity: 0.0;
  transition:
    --brush-pos 1.15s cubic-bezier(0.65, 0.05, 0.25, 1) 0.15s,
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s,
    opacity 0.4s ease-out 0.15s;
}

.inquiry-layout.is-visible .inquiry-brand__brush,
[data-reveal].is-visible .inquiry-brand__brush {
  --brush-pos: 108%;
  transform: translateY(0) scale(1);
  opacity: 1;
}

@property --brush-pos {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

@media (prefers-reduced-motion: reduce) {
  .inquiry-brand__brush {
    -webkit-mask-image: none;
    mask-image: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.inquiry-form {
  background: #ffffff;
  border: 2px solid var(--orange);
  border-radius: clamp(12px, 1.2vw, 18px);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.6vw, 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 1.6vw, 22px) clamp(14px, 1.8vw, 24px);
}

.inquiry-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inquiry-form__field--full {
  grid-column: 1 / -1;
}

.inquiry-form__label {
  color: #2a2520;
  font-size: clamp(0.88rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.inquiry-form__input {
  width: 100%;
  background: #fbfaf5;
  border: 1.5px solid rgba(42, 37, 32, 0.12);
  border-radius: 10px;
  padding: clamp(12px, 1.4vw, 16px) clamp(14px, 1.6vw, 18px);
  color: #2a2520;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-family: inherit;
  letter-spacing: -0.005em;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-form__input::placeholder {
  color: rgba(42, 37, 32, 0.35);
}

.inquiry-form__input:hover {
  border-color: rgba(255, 60, 0, 0.35);
}

.inquiry-form__input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 60, 0, 0.1);
}

.inquiry-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232a2520' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right clamp(14px, 1.6vw, 18px) center;
  background-size: 12px 8px;
  padding-right: clamp(36px, 4vw, 44px);
  cursor: pointer;
}

.inquiry-form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
  font-family: inherit;
}

.inquiry-form__label-opt {
  color: rgba(42, 37, 32, 0.5);
  font-weight: 500;
  margin-left: 4px;
}

.inquiry-form__toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.inquiry-form__toggle-btn {
  background: transparent;
  border: 1.5px solid rgba(42, 37, 32, 0.15);
  border-radius: 8px;
  padding: clamp(11px, 1.3vw, 14px) 12px;
  color: #4a3f33;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

@media (hover: hover) {
  .inquiry-form__toggle-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
  }
}

.inquiry-form__toggle-btn.is-active {
  background: #ff5a14;
  border-color: #ff5a14;
  color: var(--white);
  font-weight: 700;
  box-shadow: none;
  transform: none;
}

.inquiry-form__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 1.5vw, 24px);
  margin-top: clamp(6px, 0.8vw, 12px);
  flex-wrap: wrap;
}

.inquiry-form__field,
.inquiry-form__footer {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.inquiry-layout.is-visible .inquiry-form__field,
.inquiry-layout.is-visible .inquiry-form__footer,
[data-reveal].is-visible .inquiry-form__field,
[data-reveal].is-visible .inquiry-form__footer {
  opacity: 1;
  transform: translateY(0);
}

.inquiry-layout.is-visible .inquiry-form__field:nth-child(1) {
  transition-delay: 0.30s;
}

.inquiry-layout.is-visible .inquiry-form__field:nth-child(2) {
  transition-delay: 0.38s;
}

.inquiry-layout.is-visible .inquiry-form__field:nth-child(3) {
  transition-delay: 0.46s;
}

.inquiry-layout.is-visible .inquiry-form__field:nth-child(4) {
  transition-delay: 0.54s;
}

.inquiry-layout.is-visible .inquiry-form__field:nth-child(5) {
  transition-delay: 0.62s;
}

.inquiry-layout.is-visible .inquiry-form__field:nth-child(6) {
  transition-delay: 0.70s;
}

.inquiry-layout.is-visible .inquiry-form__field:nth-child(7) {
  transition-delay: 0.78s;
}

.inquiry-layout.is-visible .inquiry-form__field:nth-child(8) {
  transition-delay: 0.86s;
}

.inquiry-layout.is-visible .inquiry-form__footer {
  transition-delay: 0.95s;
}

@media (prefers-reduced-motion: reduce) {

  .inquiry-form__field,
  .inquiry-form__footer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.inquiry-form__consent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2a2520;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  letter-spacing: -0.01em;
  cursor: pointer;
  user-select: none;
}

.inquiry-form__consent-link {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inquiry-form__consent input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(42, 37, 32, 0.3);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.inquiry-form__consent input[type="checkbox"]:checked {
  background: var(--orange);
  border-color: var(--orange);
}

.inquiry-form__consent input[type="checkbox"]:checked::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.inquiry-form__submit {
  background: var(--orange-cta);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: clamp(12px, 1.4vw, 16px) clamp(28px, 3vw, 44px);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.inquiry-form__submit:hover {
  background: #ff5a14;
  transform: translateY(-2px);
}

.inquiry-form__submit:active {
  transform: translateY(0);
}

@media (max-width: 880px) {
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3.5vw, 32px);
  }

  .inquiry-brand {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 0;
    gap: clamp(14px, 3vw, 22px);
  }

  .inquiry-brand__brush {
    max-width: 380px;
  }

  .inquiry-brand__title {
    font-size: clamp(1.6rem, 5.5vw, 2rem);
  }
}

@media (max-width: 720px) {
  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }

  .inquiry-form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .inquiry-form__submit {
    width: 100%;
  }

  .inquiry-lead {
    font-size: clamp(0.95rem, 3.6vw, 1.05rem);
    line-height: 1.7;
    max-width: 320px;
  }

  .inquiry-notice {
    max-width: none;
    padding: 16px 18px 16px 22px;
  }

  .inquiry-notice__msg {
    font-size: 0.85rem;
  }

  .inquiry-notice__count {
    font-size: 1.05rem;
  }
}

/* ==================== Reduce-motion ==================== */
@media (prefers-reduced-motion: reduce) {

  .marquee__track,
  .logo-marquee__track {
    animation: none;
  }

  .stat-banner {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .navbar,
  .hero__title,
  .hero__tagline,
  .hero__indicator {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .concept-origin__shot img,
  .timeline__dot {
    transition: none;
  }

  .invest-tab,
  .invest-row {
    transition: none;
  }

  .process-card,
  .process-card__icon {
    animation: none;
    transition: none;
    transform: none;
  }

  .inquiry-form__input,
  .inquiry-form__submit {
    transition: none;
  }
}

/* ==================== Responsive ==================== */
@media (max-width: 1200px) {

  .store-grid,
  .interior-grid {
    gap: 18px;
  }

  .sig-row {
    grid-template-columns: repeat(5, 1fr);
  }
}

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

  .interior-grid {
    grid-template-columns: 1fr 1fr;
  }

  .interior-grid img:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .sig-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .sig-item:nth-child(4),
  .sig-item:nth-child(5) {
    grid-column: span 1;
  }

  .sig-item:nth-child(4) {
    grid-column: 1 / 3;
  }

  .sig-item:nth-child(5) {
    grid-column: 3 / 4;
  }
}

@media (max-width: 880px) {
  :root {
    --nav-h: 64px;
  }

  .nav {
    position: fixed;
    top: var(--nav-h);
    right: 12px;
    left: auto;
    width: min(240px, 80vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15, 15, 17, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(-12px) scale(0.96);
    transform-origin: top right;
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.28s cubic-bezier(0.2, 0.7, 0.3, 1);
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav__item {
    font-size: 1rem;
    padding: 12px 18px;
    text-align: left;
    border-radius: 8px;
    margin: 0 6px;
    transition: background-color 0.2s ease;
  }

  .nav__item:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle {
    display: flex;
  }

  .navbar__inner {
    padding: 0 16px;
    gap: 12px;
  }

  .navbar__right {
    gap: 8px;
  }

  .btn-cta {
    height: 38px;
    padding: 0 16px;
    font-size: 0.86rem;
    border-radius: 100px;
  }

  .cta-bubble {
    font-size: 0.68rem;
    padding: 5px 10px;
    top: calc(100% + 8px);
  }

  .cta-bubble::before {
    width: 9px;
    height: 9px;
    top: -4px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-toggle span {
    width: 22px;
  }

  .logo__img {
    height: 28px;
  }

  .hero__title {
    font-size: clamp(1.6rem, 7.4vw, 2.65rem);
    line-height: 1.34;
    letter-spacing: -0.022em;
    margin-bottom: clamp(8px, 2.4vw, 14px);
    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.55),
      0 6px 18px rgba(0, 0, 0, 0.5);
  }

  .hero__text-block {
    padding: 0 4vw;
  }

  .hero__tagline {
    font-size: clamp(0.85rem, 2.7vw, 1.1rem);
    line-height: 1.5;
  }

  .hero__tagline-accent {
    padding: 0.16em 0.5em 0.2em;
  }

  .avg-platter {
    gap: 16px;
  }

  .avg-platter__price {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .bento__foot {
    flex-wrap: wrap;
  }

  .bento__foot-value {
    margin-right: 0;
  }
}

@media (max-width: 720px) {
  .store-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .interior-grid {
    grid-template-columns: 1fr;
  }

  .interior-grid img:nth-child(3) {
    max-width: 100%;
  }

  .sig-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .sig-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .visit-grid {
    grid-template-columns: none;
    grid-template-rows: none;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    aspect-ratio: auto;
    max-height: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 12px;
    margin: 0 -12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .visit-grid::-webkit-scrollbar {
    display: none;
  }

  .visit-card {
    scroll-snap-align: center;
    aspect-ratio: 16 / 11;
  }

  .visit-card--main {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 11;
  }

  .visit-grid__nav {
    display: inline-flex;
  }

  .visit-features {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .visit-feature+.visit-feature {
    border-left: 0;
    border-top: 1px solid #515151;
  }

  .visit-feature {
    padding: 24px 18px;
  }
}

@media (max-width: 560px) {
  .limited__big {
    font-size: clamp(4.5rem, 26vw, 8rem);
  }

  .limited__benefit {
    font-size: clamp(2.5rem, 13vw, 4.5rem);
  }

  .limited__zero {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .limited__strike {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }

  .why__hero {
    font-size: clamp(1.7rem, 7.6vw, 2.4rem);
    white-space: nowrap;
    letter-spacing: -0.035em;
  }

  .sig__title-big {
    font-size: clamp(2.6rem, 14vw, 5rem);
  }

  .mkt-foot {
    font-size: clamp(1.5rem, 7vw, 2.4rem);
  }
}