@font-face {
  font-family: "Demo Serif";
  src: url("/assets/zibibbo/fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("/site-assets/official/fonts/Pretendard-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("/site-assets/official/fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

/* =========================================================
   Root tokens
========================================================= */
:root {
  --viewport-scale: 1;
  --page-bg: #ebe9e3;
  --section-yellow: #f2cf69;
  --section-cream: #ffe0a1;
  --section-paper: #ffecca;
  --section-red: #d13e37;
  --section-purple: #8c509b;
  --primary: #db2817;
  --primary-dark: #ad1e13;
  --text-main: #db2817;
  --text-muted: rgba(219, 40, 23, 0.72);
  --text-cream: #ffe0a1;
  --text-paper: #ffecca;
  --border-soft: rgba(219, 40, 23, 0.38);
  --container: 512px;
  --gutter: 30px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 30px;
  --space-8: 36px;
  --space-9: 44px;
  --space-10: 52px;
  --radius-pill: 999px;
  --font-main: "Pretendard", "Apple SD Gothic Neo", "Noto Sans CJK KR", sans-serif;
  --font-rounded: "NanumSquareRound", "NanumSquare", "Pretendard", "Apple SD Gothic Neo", "Noto Sans CJK KR", sans-serif;
  --font-display: "goldenbook", "Demo Serif", Georgia, serif;
  --font-narrow: "Escoredream", "Pretendard", sans-serif;
  --font-cooper: "goldenbook", "Demo Serif", Georgia, serif;
  --shadow-page: 0 0 50px rgba(34, 24, 6, 0.1);
  --shadow-soft: 0 8px 24px rgba(128, 34, 20, 0.12);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: none;
  font-family: var(--font-main);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  color: var(--text-main);
  background: var(--page-bg);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  padding: 0;
  border: 0;
  background: none;
}

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

img,
video,
svg,
canvas,
iframe {
  /* display: block; */
  max-width: 100%;
}

img,
video {
  width: 100%;
  height: auto;
}

/* Kakao map injects its own <img> elements (map tiles, marker icons, and the
   InfoWindow close button). The width:100% rule above blew the 14x13 close
   button up to the full InfoWindow width. Keep map images at native size. */
#vendor-map img,
.map-canvas img {
  width: auto;
  height: auto;
  max-width: none;
}

figure,
blockquote,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   Global shell
========================================================= */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1400;
  width: 100%;
  height: 4px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-shell {
  position: relative;
  width: min(100%, var(--container));
  min-height: 100vh;
  margin-inline: auto;
  overflow: visible;
  background: var(--section-yellow);
  box-shadow: var(--shadow-page);
}

@media (max-width: 511.98px) {
  @supports (zoom: 1) {
    html {
      overflow-x: hidden;
    }

    body {
      width: var(--container);
      min-width: var(--container);
      zoom: var(--viewport-scale);
    }

    .site-shell {
      width: var(--container);
    }
  }
}

section,
footer {
  position: relative;
  isolation: isolate;
}

.section-yellow {
  background: var(--section-yellow);
}

.section-cream {
  background: var(--section-cream);
}

.section-red {
  color: var(--text-cream);
  background: var(--section-red);
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* =========================================================
   Shared typography / reveal
========================================================= */
.section-heading>p,
.section-intro p,
.line-card,
.line-card b,
.line-card p,
.life-speech,
.why-card,
.why-card em,
.origin-copy,
.collage-caption,
.style-chart,
.nose-copy,
.recommend-card,
.label-story p,
.quiet-copy,
.memory-copy,
.place-section,
.family-section,
.faq-section,
.instagram-section,
.demo-footer,
.video-caption em,
.pairing-card h3,
.pairing-card p {
  font-family: var(--font-rounded);
  font-synthesis: none;
}

.proof-copy h2,
.section-heading h2,
.label-story h2,
.family-heading h2,
.instagram-heading h2 {
  font-family: var(--font-narrow);
  font-weight: 600;
  font-synthesis: none;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

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

.media-reveal {
  clip-path: inset(12% 0 12% 0);
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-out), clip-path 1.2s var(--ease-out);
}

.media-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

html.capture-mode {
  scroll-behavior: auto;
}

html.capture-mode *,
html.capture-mode *::before,
html.capture-mode *::after {
  animation: none !important;
  transition: none !important;
}

html.capture-mode .reveal {
  opacity: 1;
  transform: none;
}

html.capture-mode .media-reveal {
  clip-path: none;
}

html[data-qa-section] .page-progress,
html[data-qa-section] .demo-footer {
  display: none;
}

html[data-qa-section="footer"] .demo-footer {
  display: block;
}

/* =========================================================
   Shared cards / dividers
========================================================= */
.line-card {
  position: relative;
  border: 1px solid currentColor;
  background:
    radial-gradient(circle at 0 0, currentColor 0 3px, transparent 3.5px),
    radial-gradient(circle at 100% 0, currentColor 0 3px, transparent 3.5px),
    radial-gradient(circle at 0 100%, currentColor 0 3px, transparent 3.5px),
    radial-gradient(circle at 100% 100%, currentColor 0 3px, transparent 3.5px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.line-card b,
.line-card strong {
  display: block;
}

.line-card p+p {
  margin-top: 16px;
}

.star-rule {
  display: flex;
  align-items: center;
}

.star-rule::before,
.star-rule::after {
  flex: 1;
  height: 1px;
  content: "";
  background: currentColor;
}

.star-rule img {
  width: 18px;
  height: 18px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  outline: none;
  gap: 1px;
  width: 34px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
  animation: cue-bounce 1.8s ease-in-out infinite;
}

.scroll-cue i {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: cue-bounce 1.8s ease-in-out infinite;
}

.scroll-cue-inline {
  position: relative;
  bottom: auto;
  display: flex;
  margin-top: 50px;
}

/* =========================================================
   Hero
========================================================= */
.hero {
  position: relative;
  z-index: 1; /* scroll-cue가 다음 섹션(proof) 위로 보이도록 */
  height: 1032px;
  min-height: 688px;
  padding-inline: var(--gutter);
  background: var(--section-yellow);
}

.hero-kicker,
.hero-copy,
.hero-copy p,
.hero-copy strong,
.hero-copy strong b {
  font-family: var(--font-main);
  font-synthesis: none;
}

.hero-kicker {
  position: absolute;
  top: 88px;
  left: var(--gutter);
  z-index: 3;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.hero-kicker b,
.hero-copy strong b {
  font-weight: 900;
}

.hero-kicker i {
  display: block;
  width: 65px;
  height: 1px;
  margin-top: 13px;
  background: var(--primary);
  transform-origin: left center;
  animation: line-breathe 3s ease-in-out infinite;
}

.nearby-pill {
  position: fixed;
  display: block;
  right: max(18px, calc((100vw - var(--container)) / 2 + 18px));
  bottom: max(32px, env(safe-area-inset-bottom));
  z-index: 1300;
  width: 100px;
  min-height: 55px;
  pointer-events: auto;
  filter: drop-shadow(0 8px 14px rgba(128, 34, 20, 0.2));
  transition: transform .35s var(--ease-out), filter .35s var(--ease-out);
}

.nearby-pill img {
  display: block;
  width: 100%;
  height: auto;
}

.nearby-pill:hover,
.nearby-pill:focus-visible {
  transform: translateY(-4px) rotate(-2deg);
  filter: drop-shadow(0 12px 18px rgba(128, 34, 20, 0.26));
}

.hero-title {
  font-size: 0;
  line-height: 1;
  pointer-events: none;
}

.hero-artboard {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-title-lunagaia,
.hero-title-zibibbo {
  position: absolute;
  left: 50%;
  display: block;
  height: auto;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-title-lunagaia {
  top: 216px;
  z-index: 1;
  width: 360px;
}

.hero-title-zibibbo {
  top: 455px;
  z-index: 3;
  width: 420px;
}

.hero-orbit,
.orbit,
.orbit-one,
.orbit-two {
  display: none;
}

.hero-bottle-layer {
  position: absolute;
  top: 166px;
  left: calc(50% - 2px);
  z-index: 2;
  width: 290px;
  height: 470px;
  transform: translateX(-50%);
}

.hero-bottle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 110%;
  max-width: none;
  transform: translateX(-50%);
  transform-origin: center center;
  animation: bottle-float 5.2s ease-in-out infinite;
}

.bottle-shadow {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 114px;
  height: 10px;
  border-radius: 50%;
  background: rgba(77, 40, 0, 0.7);
  filter: blur(6px);
  transform: translateX(-50%);
  animation: shadow-float 5.2s ease-in-out infinite;
}

.hero-decor {
  position: absolute;
  top: 153px;
  left: -10px;
  z-index: 4;
  width: 462px;
  height: 540px;
  object-fit: fill;
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  right: 34px;
  left: 34px;
  bottom: 51px;
  z-index: 5;
  text-align: center;
}

.hero-copy p {
  margin-inline: auto;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.hero-copy strong {
  display: block;
  padding-top: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.46;
  letter-spacing: -0.02em;
  font-family: var(--font-narrow)
}

.hero-copy strong b {
  display: block;
  margin-top: 6px;
  font-family: var(--font-narrow);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.origin-rule {
  position: relative;
  display: block;
  width: 100%;
  height: 42px;
  margin: 25px auto 14px;
}

.origin-rule::before {
  position: absolute;
  top: 37%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--primary);
  transform: translateY(-50%);
}

.origin-rule::after {
  display: none;
}

.origin-rule span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 102.4px;
  height: 75%;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  background: var(--section-yellow);
  font-family: var(--font-cooper);
  font-style: normal;
  font-size: 11.5px;
  font-weight: 900;
  -webkit-text-stroke: 0.4px var(--primary);
  line-height: 1.05;
  text-transform: lowercase;
}

.scroll-cue {
  bottom: 12px; /* 애니메이션으로 내려가도 섹션 안에 머물러 잘리지 않게 */
}

/* =========================================================
   Proof
========================================================= */
.proof {
  padding: 61.44px var(--gutter) 24px;
  color: var(--primary);
  background: var(--section-yellow);
  container-type: inline-size;
}

.proof-background,
.proof-deco {
  position: absolute;
  left: 0;
  z-index: 0;
  width: 100%;
  pointer-events: none;
}

.proof-background {
  top: 322.56px;
  bottom: 0;
  object-fit: cover;
  object-position: center top;
  opacity: .6;
}

.proof-deco {
  top: 438px;
  height: 778.24px;
  object-fit: fill;
}

.chef-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

.chef-frame img {
  aspect-ratio: 1.0067;
  object-fit: cover;
  object-position: 23% center;
}

.bottle-pattern {
  display: none;
}

.proof-number {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 84px 0 40.96px -8px;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: .72;
  transform: translateX(-18px) scaleX(.965) scaleY(1.045);
  transform-origin: left top;
}

.proof-number strong {
  display: block;
  font-size: clamp(155px, 47.5cqw, 215.04px);
  font-weight: 800;
  line-height: .72;
  letter-spacing: -.06em;
  transform: scale(.965, 1.3);
  transform-origin: center bottom;
}

.proof-bottles {
  position: relative;
  top: -34px;
  display: block;
  padding-left: 6%;
  font-size: clamp(92px, 28.3cqw, 128px);
  font-weight: 800;
  line-height: -6.24;
  letter-spacing: -0.04em;
  transform-origin: center top;
}

.bottle-icon {
  display: inline-block;
  width: .18em;
  height: 1.0em;
  margin-left: .09em;
  background: url("/site-assets/official/title-bottles.svg") center bottom / contain no-repeat;
  transform: translateY(.02em);
}

.proof-copy {
  position: relative;
  z-index: 3;
  padding: 0 25.6px;
}

.proof-copy h2 {
  margin-bottom: 46.08px;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.11;
  letter-spacing: -0.055em;
}

.proof-copy .line-card {
  padding: 56px 40px 44px;
}

.proof-copy .line-card b {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.34;
  letter-spacing: -0.04em;
  font-family: var(--font-main);
}

.proof-copy .line-card p {
  font-size: 20.5px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.04em;
  word-break: keep-all;
  font-family: var(--font-main);
}

.proof-copy .star-rule {
  margin: 16px 0 16px;
}

/* =========================================================
   Video and recipe
========================================================= */
.video-section {
  padding: 59px 28px 25px;
  background: var(--section-red);
}

.section-intro {
  width: fit-content;
  margin-bottom: 29px;
  border-bottom: 1px solid currentColor;
}

.section-intro p {
  margin-bottom: 10px;
  font-size: 18.43px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.035em;
  font-family: var(--font-main);
}

.section-intro span {
  letter-spacing: -.15em;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--text-cream);
  color: var(--text-cream);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.video-card>img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .9s var(--ease-out), filter .9s var(--ease-out);
}

.video-card:hover>img,
.video-card:focus-visible>img {
  filter: saturate(1.04);
  transform: scale(1.03);
}

.play-button {
  position: absolute;
  top: 39%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(7px);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease-out), background-color .35s var(--ease-out);
}

.video-card:hover .play-button,
.video-card:focus-visible .play-button {
  background: rgba(216, 58, 49, 0.72);
  transform: translate(-50%, -50%) scale(1.08);
}

.play-button i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
}

.video-embed {
  cursor: default;
}

.video-card.video-embed,
.recipe-video-card.video-embed {
  padding: 0;
  background: #101010;
}

.video-card.video-embed {
  aspect-ratio: 16 / 9;
}

.recipe-video-card.video-embed {
  min-height: 100%;
  aspect-ratio: 1 / 1.18;
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.video-caption {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(125px, .78fr) minmax(0, 1.22fr);
  gap: 0;
  padding: 12px 13px 10px;
  color: rgba(254, 212, 117);
}

.video-caption>b {
  font-family: var(--font-display);
  font-size: 33.28px;
  line-height: .8;
  letter-spacing: -0.06em;
}

.video-caption em {
  font-family: var(--font-main);
  font-style: normal;
  font-size: 17px;
  line-height: 1.32;
  letter-spacing: -0.07em;
  text-align: right;
  word-break: keep-all;
}

.video-caption em strong {
  font-weight: 1000;
}

.pairing-heading {
  margin-top: 107.52px;
}

.carousel-shell {
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 0 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.pairing-card {
  overflow: hidden;
  color: var(--primary);
  background: var(--section-cream);
  scroll-snap-align: start;
  transition: transform .35s var(--ease-out);
  font-family: var(--font-main);
  padding: 12px 12px 0;
  flex: 0 0 clamp(260px, 78%, 320px);
}

.carousel-track>.pairing-card:last-child {
  margin-right: 12px;
}

.pairing-card:hover,
.pairing-card:focus-within {
  transform: translateY(-6px);
}

.pairing-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / .74;
  border: 1px solid var(--primary);
  object-fit: cover;
}

.pairing-card div {
  padding: 12px 0 18px;
}

.pairing-card h3 {
  margin-bottom: 9px;
  margin-top: 9px;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-family: var(--font-main);
}

.pairing-card p {
  font-size: 13.5px;
  font-family: var(--font-main);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
  font-family: var(--font-rounded);
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: inherit;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.06em;
  cursor: pointer;
  transition: transform .2s var(--ease-out);
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  gap: 13px;
}

.carousel-dots i {
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.carousel-dots i.is-active {
  background: currentColor;
}

/* =========================================================
   Life
========================================================= */
.life-section {
  padding: 31px 29px 27px;
  background: var(--section-cream);
}

.life-image {
  overflow: hidden;
}

.life-image img {
  aspect-ratio: .66765;
  object-fit: cover;
  object-position: 50% 50%;
}

.life-lockup {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: calc(244px * -1);
}

.life-title-svg {
  display: block;
  width: 238px;
  margin-left: -5px;
}

.life-speech {
  width: 356px;
  margin: calc(71px * -1) 0 0 auto;
  color: var(--section-cream);
  font-family: var(--font-narrow);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.055em;
  text-align: center;
}

.life-speech span {
  display: block;
  width: 100%;
  padding: 10px 25px 12px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--section-red);
  white-space: nowrap;
}

.life-speech span+span {
  width: 340px;
  margin-top: -2px;
  margin-right: auto;
  margin-left: 0;
}

/* =========================================================
   Horizontal roll base
========================================================= */
.hroll-viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hroll-viewport::-webkit-scrollbar {
  display: none;
}

.hroll-track {
  display: flex;
}

.hroll-panel {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: center;
}

.is-hrolling {
  overflow: visible;
}

.is-hrolling .hroll-pin {
  position: sticky;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.is-hrolling .hroll-viewport {
  width: 100%;
  overflow: hidden;
  scroll-snap-type: none;
}

.is-hrolling .hroll-track {
  will-change: transform;
}

/* =========================================================
   Why
========================================================= */
.why-section {
  padding: 92px 30px 37px;
  color: var(--primary);
  background: var(--section-yellow);
}

.why-section.is-hrolling {
  padding-top: 0;
  padding-bottom: 0;
}

.why-section.is-hrolling .hroll-pin {
  padding: 48px 0 28px;
}

.why-section .section-heading>p {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.why-section .section-heading h2 {
  margin-bottom: 24px;
  font-size: 31.74px;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.why-track {
  gap: 24px;
}

.why-viewport {
  position: relative;
  padding-bottom: 8px;
  perspective: 1200px;
}

.why-track {
  transform-style: preserve-3d;
}

.why-track .why-card,
.why-track .hroll-panel {
  flex: 0 0 calc(100% - 8px);
  width: calc(100% - 8px);
}

.why-card {
  position: relative;
  min-height: 565px;
  padding: 40.96px 87.04px 28px 40.96px;
  overflow: hidden;
  border: 1px solid currentColor;
  background: var(--section-cream);
  box-shadow: 0 3px 0 var(--primary);
  font-family: var(--font-main);
}

.why-card.why-card-expert {
  color: var(--section-cream);
  border-color: var(--section-cream);
  background: var(--section-red);
  box-shadow: none;
}

.vertical-title {
  position: absolute;
  top: 15px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 700;
  line-height: .88;
  letter-spacing: -0.035em;
  writing-mode: vertical-rl;
}

.why-card.why-card-expert .vertical-title {
  color: var(--section-cream);
}

.why-levels {
  display: flex;
  margin-left: 0;
}

.why-levels em,
.why-card>em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
  font-size: 20.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  font-family: var(--font-narrow);
}

.why-levels em+em {
  margin-left: -15px;
}

.why-card h3 {
  margin: 18px 0 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.055em;
  word-break: keep-all;
  font-family: var(--font-main);
}

.why-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.why-card li {
  position: relative;
  margin: 0 0 22px;
  padding-left: 27px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.035em;
  word-break: keep-all;
  font-family: var(--font-narrow);
}

.why-card li:last-child {
  margin-bottom: 0;
}

.why-card li::before {
  position: absolute;
  top: .08em;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  background: url("/site-assets/official/bullet-point.svg") center / contain no-repeat;
}

.why-card-expert li::before {
  filter: brightness(0) invert(92%) sepia(20%) saturate(571%) hue-rotate(334deg) brightness(108%);
}

button.why-direction {
  position: absolute;
  right: 5px;
  bottom: 6px;
  color: inherit;
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  /* 클릭/터치 범위 확대 */
  padding: 14px 18px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (max-width: 1023.98px) {
  button.why-direction[data-hroll-next],
  button.why-direction[data-hroll-prev] {
    animation: why-direction-blink 1.05s ease-in-out infinite;
  }
}

@keyframes why-direction-blink {
  0%,
  100% {
    opacity: 1;
    text-shadow: none;
  }

  50% {
    opacity: .28;
    text-shadow: 0 0 10px currentColor;
  }
}

.why-card-expert .why-direction {
  right: auto;
  left: 12px;
}

/* =========================================================
   Origin
========================================================= */
.origin-section {
  padding: 90px 30px 70px;
  color: var(--primary);
  background: var(--section-cream);
}

.origin-section .section-heading>p {
  margin-bottom: 20px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.origin-section .section-heading h2 {
  margin-bottom: 50px;
  font-size: 30.72px;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.corridor-frame {
  position: relative;
  width: 100%;
  margin: 0 auto 62px;
  overflow: hidden;
}

.corridor-frame video,
.corridor-frame img,
.korea-video-fallback {
  display: block;
  width: 100%;
  aspect-ratio: .67;
  object-fit: cover;
  object-position: 50% 52%;
}

.corridor-frame .korea-video-fallback {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms linear;
}

.corridor-frame.video-fallback-active video {
  opacity: 0;
}

.corridor-frame.video-fallback-active .korea-video-fallback {
  opacity: 1;
}

.origin-copy {
  width: 90%;
  margin: 0 auto;
  padding: 40px 40.96px 38px;
  border: 1px solid var(--border-soft);
  color: var(--primary);
}

.origin-copy p,
.origin-copy b {
  font-size: 19.5px;
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: -0.005em;
  word-break: keep-all;
}

.origin-copy b {
  font-weight: 800;
  font-family: var(--font-main);
}

.origin-copy p+p {
  margin-top: 17px;
}

.origin-copy .star-rule {
  margin: 16px -8px 15px;
}

/* =========================================================
   Celebrity
========================================================= */
.celebrity-section {
  padding: 92px 30px 32px;
  color: var(--primary);
  background: var(--section-yellow);
}

.celebrity-section .section-heading>p {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.celebrity-section .section-heading h2 {
  margin-bottom: 64px;
  font-size: 31.74px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.collage {
  position: relative;
  min-height: 537.6px;
}

.collage figure {
  position: absolute;
  overflow: hidden;
  border: 5px solid var(--primary);
  background: var(--primary);
  aspect-ratio: 2 / 3;
}

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

.collage-one {
  top: 13px;
  left: -53px;
  width: 53.1%;
  height: auto;
  /* 반시계 방향 회전 */
  transform: rotate(-4deg);
}

.collage-two {
  top: 136px;
  left: 30px;
  width: 58.2%;
  height: auto;
  transform: rotate(.35deg);
}

.collage-three {
  top: 213px;
  right: -30px;
  width: 59.3%;
  height: auto;
  /* 시계 방향 회전 */
  transform: rotate(6deg);
}

.collage blockquote {
  position: absolute;
  top: -37px;
  right: -7px;
  width: 35%;
  /* 따옴표가 코너에 들어갈 공간 확보 */
  padding: 36px 30px 36px 8px;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

/* 따옴표를 본문에서 떼어내 코너에 고정 */
.collage blockquote .bq-quote {
  position: absolute;
  font-family: var(--font-cooper);
  font-size: 2.0em;
  font-weight: 500;
  line-height: 0;
  pointer-events: none;
}

/* 여는 따옴표: 좌상단 */
.collage blockquote .bq-quote:first-child {
  top: 52px;
  left: -21px;
}

/* 닫는 따옴표: 우하단 */
.collage blockquote .bq-quote:last-child {
  right: 23px;
  bottom: 37px;
}

.collage-caption {
  width: 235px;
  margin: 13px 0 0 30px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.045em;
  word-break: keep-all;
  font-family: var(--font-main);
}

.collage-caption b {
  font-weight: 900;
}

.collage-label { display: none; }
.collage-label-stack { display: none; }
.collage-caption-desktop { display: none; }

/* Celebrity collage: reveal each asset one-by-one instead of all at once.
   The .collage container itself stays put; its children fade in staggered. */
.collage.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.collage > figure,
.collage > blockquote,
.collage > .collage-caption-desktop {
  opacity: 0;
  transition: opacity .7s var(--ease-out);
}
.collage.is-visible > figure,
.collage.is-visible > blockquote,
.collage.is-visible > .collage-caption-desktop {
  opacity: 1;
}
.collage.is-visible > .collage-one   { transition-delay: .05s; }
.collage.is-visible > .collage-two   { transition-delay: .45s; }
.collage.is-visible > .collage-three { transition-delay: .85s; }
.collage.is-visible > blockquote     { transition-delay: .125s; }
.collage.is-visible > .collage-caption-desktop { transition-delay: .145s; }

html.capture-mode .collage > figure,
html.capture-mode .collage > blockquote,
html.capture-mode .collage > .collage-caption-desktop {
  opacity: 1 !important;
}

.celebrity-section .scroll-cue-inline {
  left: calc(50% + 5px);
  margin-top: 90px;
  color: var(--primary);
  transform: translateX(-50%) scale(1.2);
}

/* =========================================================
   Taste
========================================================= */
.taste-section {
  padding: 0 22px 78px;
  overflow: hidden;
  color: var(--primary);
  background: var(--section-yellow);
}

.taste-hero {
  width: calc(100% + 44px);
  margin: 0 -22px 40px;
  overflow: hidden;
}

.taste-hero img {
  aspect-ratio: 380 / 305;
  object-fit: cover;
  object-position: 50% 47%;
}

/* 잔에 채우는 순간 ... 본문: Escoredream Light/Medium 19 */
.taste-section > p {
  font-family: var(--font-narrow);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.02em;
  word-break: keep-all;
  max-width: 420px;
  margin-inline: auto;
  text-align: center;
}
.taste-section > p > strong {
  font-weight: 500;
}

.taste-section .section-heading>p {
  margin-bottom: 14px;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.taste-section .section-heading h2 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.style-chart {
  --chart-col: 328px;
  width: 100%;
  margin-top: 43px;
  margin-bottom: 60px;
  border: 1px solid currentColor;
  font-size: 20px;
  letter-spacing: -0.035em;
  text-align: left;
  background: transparent;
}

.style-chart>* {
  width: 100%;
  min-height: 148px;
  padding-left: calc((100% - min(var(--chart-col), 100%)) / 2);
  padding-right: calc((100% - min(var(--chart-col), 100%)) / 2);
}

.style-chart>*+* {
  border-top: 1px solid currentColor;
}

.style-chart>.ratings {
  display: block;
  padding-top: 30px;
}

.ratings span {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  line-height: 1.15;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 18px;
  width: min(var(--chart-col), 100%);
}

.rating-grid p {
  display: flex;
  align-items: baseline;
  gap: 4px;
  width: auto;
  font-weight: 500;
  white-space: nowrap;
}

.rating-grid p+p {
  margin-top: 0;
}

.rating-grid em {
  font-style: normal;
}

.rating-grid b {
  display: inline-block;
  font-size: 1.16em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.14em;
  transform: translateY(1px);
}

.style-chart>p {
  padding-top: 17px;
  font-weight: 200;
  line-height: 1.42;
  text-align: left;
  word-break: keep-all;
  font-family: var(--font-narrow);
}

.style-chart p strong {
  font-weight: 900;
}

.style-chart>p:last-child {
  padding-top: 38px;
}

.style-chart>p:last-child span {
  display: inline-block;
  margin-bottom: 7px;
  font-size: 22px;
  font-weight: 400;
  line-height: .9;
  letter-spacing: -0.02em;
}

.chart-notes span,
.chart-finish b {
  display: block;
  font-weight: inherit;
}

.style-chart,
.style-chart>* {
  background-image:
    radial-gradient(circle at 0 0, currentColor 0 3px, transparent 3.5px),
    radial-gradient(circle at 100% 0, currentColor 0 3px, transparent 3.5px),
    radial-gradient(circle at 0 100%, currentColor 0 3px, transparent 3.5px),
    radial-gradient(circle at 100% 100%, currentColor 0 3px, transparent 3.5px);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.nose-strip {
  width: calc(100% + 60px);
  margin: 20px 0 70px -30px;
  padding: 7px;
  background: rgba(255, 246, 222, .94);
}

.nose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin: 0;
  gap: 3px;
}

.nose-card {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.taste-scroll-cue {
  color: var(--primary);
  left: auto;
  margin: 0 auto 140px;
  transform: none;
}

.nose-card img {
  aspect-ratio: .672;
  object-fit: cover;
  filter: saturate(.84) sepia(.08);
  transition: transform .8s var(--ease-out), filter .8s var(--ease-out);
}

.nose-card:hover img,
.nose-card:focus-within img {
  filter: saturate(.95);
  transform: scale(1.03);
}

.nose-copy {
  position: absolute;
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: rgba(253, 241, 216, 0.84);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-align: center;
  font-weight: 400;

  transform: translate(-50%, -50%);
  font-family: var(--font-main);

  font-size: medium;
  letter-spacing: -0.05em;
  line-height: normal;
}

.nose-card:nth-child(1) .nose-copy {
  top: 50%;
  left: 50%;
  width: 76%;
}

.nose-card:nth-child(2) .nose-copy {
  top: 50%;
  left: 50%;
  width: 70.5%;
}

.nose-card:nth-child(3) .nose-copy {
  top: 50%;
  left: 50%;
  width: 71.5%;
}

.nose-card:nth-child(4) .nose-copy {
  top: 50%;
  left: 50%;
  width: 70.5%;
}

.nose-copy {
  padding: 18px 11px 17px;
}

.nose-copy p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.nose-copy em {
  font-style: normal;
  letter-spacing: 0;
}

.nose-copy strong {
  display: inline;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.025em;
  text-align: center;
  word-break: keep-all;
}

.recommend-card {
  position: relative;
  margin-inline: 3px;
  padding: 42px 35px 28px;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: var(--section-cream);
  box-shadow: 0 4px 0 var(--primary);
}

.recommend-card h3 {
  position: absolute;
  top: -69px;
  left: 0;
  width: 78%;
  font-size: 23.5px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.04em;
  text-align: left;
  font-family: var(--font-narrow);
}

.recommend-card h3 span {
  display: block;
  /* width: 232px; */
  padding: 11px 34px 11px;
  border-radius: 99999px;
  color: var(--section-cream);
  background: var(--section-red);
  text-align: center;
}

.recommend-card h3 span:first-child {
  margin-left: 58px;
  margin-right: 28px;
}

.recommend-card h3 span+span {
  /* width: 255px; */
  margin: -4px -67px 0 116px;
}

.recommend-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.recommend-card li {
  padding: 0 0 10px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.035em;
  text-align: center;
  word-break: keep-all;
  font-family: var(--font-narrow);
}

.recommend-card li:last-child {
  padding-bottom: 0;
}

.recommend-card li::before,
.recommend-card li+li::before {
  display: block;
  width: 100%;
  height: 20px;
  margin-bottom: 9px;
  content: "";
  background-image:
    url("/site-assets/official/bullet-point.svg"),
    linear-gradient(currentColor, currentColor);
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: 18px 18px, 100% 1px;
}

/* =========================================================
   Label
========================================================= */
.label-section {
  padding: 45px 0 88px;
  overflow: visible;
  color: var(--text-cream);
  background: var(--section-red);
}

.label-section.is-hrolling {
  padding-top: 0;
  padding-bottom: 0;
}

.label-section.is-hrolling .hroll-pin {
  padding: 34px 0 28px;
}

.label-section.is-hrolling .label-story figure {
  height: min(57svh, 520px);
  margin-bottom: 28px;
}

.label-section.is-hrolling .label-story h2 {
  margin-bottom: 16px;
}

.label-section.is-hrolling .label-story p {
  margin-bottom: 14px;
}

.label-section.is-hrolling .label-story p:last-child {
  margin-bottom: 0;
}

.label-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 24px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
}

.label-viewport::-webkit-scrollbar {
  display: none;
}

.label-track {
  display: flex;
  gap: 45px;
  padding: 0 24px;
  overflow: visible;
  scroll-snap-type: none;
}

.label-story {
  flex: 0 0 77.1%;
  width: 77.1%;
  scroll-snap-align: start;
}

.label-track::after {
  content: "";
  display: block;
  flex: 0 0 24px;
  margin-left: -45px;
}

.label-story figure {
  height: 599.55px;
  margin-bottom: 45px;
  overflow: hidden;
}

.label-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.label-story h2 {
  margin-bottom: 22px;
  color: var(--text-cream);
  font-size: 33.5px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.055em;
  text-wrap: balance;
  word-break: keep-all;
}

.label-story p {
  margin-bottom: 23px;
  color: var(--text-cream);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-wrap: pretty;
  word-break: keep-all;
  font-family: var(--font-main);
}

.label-story p:last-child {
  margin-bottom: 0;
}

.label-track .label-story:nth-child(1) {
  transition-delay: 0ms !important;
}

.label-track .label-story:nth-child(2) {
  transition-delay: 180ms !important;
}

/* =========================================================
   Reviews
========================================================= */
.review-section {
  padding: 73px 24px 74px;
  background: var(--section-cream);
}

.review-file {
  position: relative;
  width: 108%;
  max-width: 545px;
  margin-right: -4%;
  margin-left: -4%;
  aspect-ratio: 1000 / 1340;
  overflow: hidden;
  color: var(--primary);
}

.review-frame-art {position: absolute;inset: 0 0 0 4px;z-index: 3;width: calc(100% + -12px);max-width: none;height: 100%;object-fit: contain;pointer-events: none;}

.review-track,
.review-slide {
  position: absolute;
  inset: 0;
}

.review-track {
  z-index: 4;
  overflow: hidden;
  cursor: grab;
  pointer-events: auto;
  touch-action: pan-y;
}

.review-track.is-dragging {
  cursor: grabbing;
}

.review-slide {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: none;
  transition: opacity .36s var(--ease-out);
  user-select: none;
}

.review-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.review-slide figure {
  position: absolute;
  top: 19.9%;
  left: 26.75%;
  width: 47.1%;
  background: #f7f4e8;
  transform: rotate(2.1deg);
  pointer-events: none;
}

.review-slide figure img {
  aspect-ratio: 0.96;
  object-fit: cover;
  pointer-events: none;
}

.review-copy {
  position: absolute;
  top: 64.2%;
  left: 18%;
  z-index: 6;
  width: 63.8%;
  color: var(--primary);
  font-family: var(--font-rounded);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.39;
  letter-spacing: -0.052em;
  word-break: keep-all;
  pointer-events: none;
}

.review-copy b {
  display: block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  font-family: var(--font-main);
}

.review-copy p {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.42;
  letter-spacing: -0.055em;
}

.review-controls {
  position: absolute;
  right: 17.8%;
  bottom: 10.8%;
  left: 16.8%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-controls button {
  color: var(--primary);
  font-family: var(--font-rounded);
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  cursor: pointer;
  transition: transform .25s var(--ease-out);
}

.review-controls button:hover,
.review-controls button:focus-visible {
  transform: scale(1.08);
}

.review-dots {
  display: flex;
  gap: 15px;
}

.review-dots i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--primary);
  border-radius: 50%;
}

.review-dots i.is-active {
  background: var(--primary);
}

/* =========================================================
   Quiet
========================================================= */
.quiet-section {
  padding: 0 0 45px;
  color: var(--primary);
  background: var(--section-yellow);
}

.quiet-image img {
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  object-position: 57% 48%;
}

.quiet-copy {
  padding: 62px 30px 0;
  font-family: var(--font-main);
}

.quiet-kicker,
.quiet-copy>p:first-child {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.quiet-copy h2 {
  margin-bottom: 31px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.055em;
  font-family: var(--font-narrow);
}

.quiet-copy p {
  margin-bottom: 22px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.035em;
}

.quiet-copy p:last-child {
  margin-bottom: 0;
}

.quiet-copy-primary,
.quiet-copy-secondary {
  min-width: 0;
}

/* =========================================================
   Memory
========================================================= */
.memory-media {
  position: relative;
}

.memory-image {
  margin-bottom: 0;
  overflow: hidden;
}

.memory-image img {
  aspect-ratio: .59;
  object-fit: cover;
  object-position: center 48%;
}

.memory-lockup {position: absolute;right: -33px;bottom: -108px;z-index: 5;width: 277px;height: auto;}

.memory-media::before,
.memory-media::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.memory-media::before {
  right: -24px;
  bottom: -39px;
  z-index: 4;
  width: 245px;
  height: 245px;
  background: url("/site-assets/official/hero-deco.svg") center / 245px auto no-repeat;
}

.memory-media::after {
  display: none;
}

.memory-copy {
  position: relative;
  z-index: 5;
  margin-top: 60px;
}

.memory-copy p {
  width: clamp(236px, 84vw, 360px);
  height: 50px;
  margin-left: -18px;
  padding: 11px 0 10px;
  border-radius: 999px;
  color: var(--section-cream);
  background: var(--section-red);
  font-family: var(--font-narrow);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.045em;
  text-align: center;
  /* white-space: nowrap; */
}

.memory-copy strong {
  display: block;
  width: clamp(285px, 41vw, 210px);
  margin-top: 13px;
  margin-left: 41%;
  color: var(--primary);
  font-family: var(--font-narrow);
  font-size: 25.5px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.048em;
  text-align: left;
  word-break: keep-all;
}

.memory-copy strong b {
  font-weight: 700;
}

/* =========================================================
   Purchase
========================================================= */
.place-section {
  padding: 93px 30px 90px;
  color: #de3820;
  background: var(--section-yellow);
  font-family: var(--font-main);
}

.place-section .section-heading h2 {
  margin-bottom: 18px;
  font-size: 31.74px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.place-section .section-heading>p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.04em;
}

.place-notice {
  padding-left: 17px;
  margin-top: 23px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
}

.place-notice li+li {
  margin-top: 4px;
}

.place-search {
  display: grid;
  grid-template-columns: 1fr 84px;
  height: 47px;
  margin-top: 51px;
  border: 1px solid currentColor;
  background: #f9dc8f;
}

.place-search input {
  min-width: 0;
  height: 43px;
  padding: 0 16px;
  border: 0;
  color: currentColor;
  background: #f9dc8f;
  font-family: var(--font-rounded);
  font-size: 17px;
  font-weight: 500;
  line-height: 43px;
  letter-spacing: -0.03em;
  outline: none;
}

.place-search input::placeholder {
  color: rgba(222, 56, 32, 0.62);
  opacity: 1;
}

.place-search button,
.nearby-button {
  color: var(--section-cream);
  background: #de3820;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.035em;
  cursor: pointer;
}

.nearby-button {
  width: 100%;
  min-height: 46px;
  margin: 12px 0 47px;
}

.place-search button:hover,
.place-search button:focus-visible,
.nearby-button:hover,
.nearby-button:focus-visible {
  filter: brightness(.96);
}

.map-status {
  display: none;
}

.map-layout {
  display: grid;
  gap: 20px;
}

.map-frame {
  position: relative;
  height: 334px;
  min-height: 334px;
  overflow: hidden;
  border: 1px solid currentColor;
  background: #f9dc8f;
}

.map-frame.is-hidden,
.map-canvas.is-hidden {
  display: none;
}

.map-canvas,
.map-frame .map-canvas {
  width: 100%;
  height: 334px;
  min-height: 334px;
  padding: 0;
  filter: saturate(.9) sepia(.04);
  background: #f9dc8f;
}

.map-controls {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 10;
  display: grid;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: var(--section-cream);
  box-shadow: 0 7px 18px rgba(128, 34, 20, 0.14);
}

.map-control-btn {
  width: 34px;
  height: 34px;
  border-bottom: 1px solid rgba(222, 56, 32, 0.45);
  color: currentColor;
  font-family: var(--font-rounded);
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease;
}

.map-control-btn:last-child {
  border-bottom: 0;
}

.map-control-btn:hover,
.map-control-btn:focus-visible {
  color: var(--section-cream);
  background: #de3820;
}

.vendor-panel {
  height: 387px;
  max-height: 387px;
  overflow-y: auto;
  border: 1px solid currentColor;
  background: rgba(249, 220, 143, 0.72);
  scrollbar-color: currentColor transparent;
  scrollbar-width: thin;
}

.vendor-summary {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(222, 56, 32, 0.25);
  background: rgba(244, 207, 102, 0.96);
  font-size: 12.5px;
  font-weight: 1000;
  line-height: 1.45;
  letter-spacing: -0.04em;
  font-family: var(--font-main);
}

.vendor-list {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  margin: 0;
  list-style: none;
}

.vendor-list li {
  position: relative;
  min-height: 67px;
  padding: 16px 0px 13px 0;
  border-bottom: 1px solid rgba(222, 56, 32, 0.25);
}

.vendor-list li:last-child {
  border-bottom: 0;
}

/* Group heading for name-search results vs. nearby results */
.vendor-list li.vendor-group-label {
  min-height: 0;
  padding: 2px 0 6px;
  border-bottom: 0;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #de3820;
  opacity: 0.9;
}

.vendor-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.vendor-name-button,
.vendor-title,
.vendor-list li>b,
.vendor-list li>strong {
  color: currentColor;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.vendor-name-button {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  text-align: left;
  cursor: pointer;
}

.vendor-name-button:hover,
.vendor-name-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vendor-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vendor-address,
.vendor-list li>p {
  margin-top: 4px;
  color: currentColor;
  font-family: var(--font-main);
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.vendor-distance {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  height: 18px;
  padding: 0 7px;
  border: 1px solid rgba(222, 56, 32, 0.44);
  border-radius: 999px;
  background: rgba(255, 236, 202, 0.52);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.vendor-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.vendor-kakao-icon,
.vendor-naver-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: opacity .2s ease, transform .2s var(--ease-out);
}

.vendor-kakao-icon img,
.vendor-naver-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.vendor-kakao-icon:hover,
.vendor-kakao-icon:focus-visible,
.vendor-naver-icon:hover,
.vendor-naver-icon:focus-visible {
  opacity: .72;
  transform: translateY(-2px);
}

.fallback-card {
  padding: 22px 0;
  text-align: center;
}

.fallback-card strong,
.fallback-card p {
  display: block;
  margin-bottom: 10px;
}

.fallback-card p {
  font-size: 11px;
}

.fallback-card a {
  display: inline-flex;
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--section-cream);
  background: #de3820;
  font-size: 11px;
  font-weight: 700;
}

.map-layout.is-fallback {
  grid-template-columns: 1fr;
}

.map-layout.is-fallback .vendor-panel {
  border-top: 2px solid currentColor;
}

/* =========================================================
   Family
========================================================= */
.family-section {
  padding: 82px 0 72px;
  color: var(--section-cream);
  background: var(--section-red);
  font-family: var(--font-rounded);
}

.family-heading {
  padding: 0 30px;
}

.family-heading p {
  font-size: 20px;
  line-height: 1.2;
}

.family-heading h2 {
  margin: 7px 0 53px;
  font-size: 31.74px;
  line-height: 1.1;
}

.family-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(118px, 29%, 148px);
  gap: 11px;
  overflow-x: auto;
  padding: 0 30px 7px;
  scroll-padding-inline: 30px;
  scrollbar-width: none;
}

.family-track::-webkit-scrollbar {
  display: none;
}

.family-card {
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.family-card img {
  padding: 8px;
  border: 1px solid var(--section-cream);
  border-bottom-width: 6px;
  aspect-ratio: .66;
  object-fit: contain;
  transition: transform .35s var(--ease-out);
}

.family-card:hover img,
.family-card:focus-visible img {
  transform: translateY(-6px);
}

.family-card b {
  min-height: 54px;
  padding: 12px 0 4px;
  font-size: 18.5px;
  font-weight: 600;
  line-height: 2.25;
  font-family: var(--font-narrow);
  white-space: nowrap;
}

.family-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
}

.family-modal[hidden] {
  display: none;
}

.family-modal:not([hidden]) {
  display: flex;
}

/* Each <section> has `isolation: isolate`, so the fixed .family-modal is
   trapped in #family's stacking context and the later FAQ section paints
   over it. Lift #family above sibling sections while the modal is open. */
#family:has(.family-modal:not([hidden])) {
  z-index: 9999;
}

.family-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(84px, 35%) 1fr;
  gap: 20px;
  width: 486.4px;
  min-height: 356px;
  padding: 34px 30px;
  color: var(--primary);
  border: 1px solid var(--primary);
  background: #fff;
}

.family-close-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--primary);
  border-radius: 22px;
  color: var(--primary);
  background: #fff;
  font-family: var(--font-rounded);
  cursor: pointer;
}

.family-close-btn span {
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
}

.family-close-btn i {
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
}

.family-modal-content {
  display: contents;
}

.family-modal-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.family-bottle-img {
  width: 120px;
  max-height: 305px;
  margin-left: 10px;
  object-fit: contain;
}

.family-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.organic-badge {
  height: 38px;
  object-fit: contain;
}

.family-modal-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.family-header-group {
  padding-bottom: 8px;
  margin-bottom: 4px;
  border-bottom: 2px solid var(--primary);
}

.family-modal-details h2 {
  margin: 0;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.family-subtitle {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  opacity: .8;
}

/* 2-column meta grid */
.family-meta-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 16px;
  margin: 0;
  color: #101820;
}

.family-meta-info>div {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.family-meta-info dt {
  flex: none;
  color: var(--primary);
  font-size: 10px;
  font-weight: 850;
}

.family-meta-info dd {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
}

/* labeled content blocks (양조 / 테이스팅 노트 / 페어링) */
.family-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.family-block-label {
  color: var(--primary);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.family-block-text {
  margin: 0;
  color: #101820;
  font-size: 11px;
  line-height: 1.5;
}

/* ratings: 2x2 grid of gold stars */
.family-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
  padding: 11px 0;
  border-top: 1px solid rgba(217, 40, 23, 0.3);
  border-bottom: 1px solid rgba(217, 40, 23, 0.3);
}

.slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-label {
  width: 30px;
  flex: none;
  color: var(--primary);
  font-size: 11px;
  font-weight: 850;
}

.slider-track {
  display: flex;
  gap: 2px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1px;
}

.slider-track .star {
  color: #d9d2c4;
}

.slider-track .star.filled {
  color: #e6a817;
}

html.capture-mode #family .family-modal,
html.capture-mode #family .family-modal[hidden] {
  position: static;
  display: block;
  height: auto;
  padding: 64px 29px 0;
  background: transparent;
}

html.capture-mode #family .family-modal-card {
  width: 100%;
}

@media (max-width: 720px) {
  .style-chart {
    /* width: calc(100% + 16px); */
    margin-right: 0px;
    margin-left: 0px;
  }
}

/* =========================================================
   FAQ
========================================================= */
.faq-section {
  padding: 60px 22px 68px;
  color: var(--primary);
  background: var(--section-yellow);
  font-family: var(--font-main);
}

.faq-section>h2 {
  margin-bottom: 36px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.064em;
  font-family: var(--font-narrow);
}

.faq-list details {
  margin: 0;
  border-top: 1px solid currentColor;
}

.faq-list details:last-child {
  border-bottom: 1px solid currentColor;
}

.faq-list details[open]>summary {
  border-bottom: 1px solid currentColor;
}

.faq-list summary {
  position: relative;
  min-height: 53px;
  padding: 15px 34px 15px 0;
  cursor: pointer;
  list-style: none;
  font-size: 19.5px;
  font-weight: 800;
  line-height: 1.36;
  letter-spacing: -0.055em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  background: none;
  transform: translateY(-60%) rotate(45deg);
  transition: transform .35s var(--ease-out);
}

.faq-list details[open] summary::after {
  transform: translateY(-35%) rotate(-135deg);
}

.faq-list details p {
  padding: 38px 16px 44px 15px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.88;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

/* =========================================================
   Instagram
========================================================= */

.instagram-heading h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.058em;
}

.instagram-heading p {
  margin: 8px 0 43px;
  max-width: none;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.instagram-card,
.instagram-embed-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--primary);
  background: #fff;
}

.instagram-card {
  height: 330px;
  color: #1c1b18;
}

.instagram-profile {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 18px;
  padding: 29px 16px 25px;
}

.instagram-avatar {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--section-paper);
  background: var(--section-purple);
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
}

.instagram-profile p {
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.instagram-mark {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 18px;
  height: 18px;
}

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

.instagram-grid img {
  aspect-ratio: 1;
  object-fit: cover;
}

.instagram-embed-card {
  display: block;
  min-height: 430px;
}

.instagram-embed-card iframe {
  width: 100%;
  height: 430px;
  border: 0;
  background: #fff;
}

html:not(.capture-mode) .instagram-card-static {
  display: none;
}

html.capture-mode .instagram-embed-card {
  display: none;
}

/* =========================================================
   Footer
========================================================= */
.demo-footer {
  min-height: auto;
  padding: 66px 30px 59px;
  color: var(--section-paper);
  background: var(--section-purple);
  font-family: var(--font-rounded);
  text-align: left;
}

.footer-script {
  display: block;
  width: 228px;
  height: 63px;
  object-fit: contain;
  object-position: left center;
}

.demo-footer>p:not(.footer-korean) {
  margin: 23px 0 14px;
  color: var(--section-paper);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.footer-korean {
  margin-bottom: 31px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

/* Drink Different! 태그라인 */
.demo-footer > p:not(.footer-korean) {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 200;
  line-height: 1.42;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

.footer-more {
  display: inline-block;
  color: rgba(255, 236, 202, 0.72);
  font-size: 17.5px;
  font-weight: 200;
  line-height: 1;
  font-family: var(--font-main);
}

.footer-rule {
  width: 100%;
  height: 1px;
  margin: 30px 0px;
  background: rgba(255, 236, 202, 0.64);
}

.footer-story {
  padding: 0 28px;
}

.footer-story p {
  margin-bottom: 23px;
  font-size: 17px;
  font-weight: 200;
  line-height: 1.42;
  letter-spacing: -0.018em;
  word-break: keep-all;
  font-family: var(--font-main);
}

.footer-story p:last-child {
  margin-bottom: 0;
}

.footer-story+.footer-rule {
  height: 2px;
  margin-top: 50px;
  margin-bottom: 99px;
  background: rgba(255, 236, 202, 0.44);
}

.demo-footer address {
  font-style: normal;
  font-size: 17.5px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.02em;
  font-family: var(--font-main);
}

.demo-footer address b {
  font-weight: 700;
}

/* =========================================================
   Video modal
========================================================= */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--section-yellow);
  background: rgba(24, 11, 7, 0.9);
  backdrop-filter: blur(15px);
}

.video-modal[hidden] {
  display: none;
}

.video-modal>div {
  width: min(900px, 100%);
  padding: 18px;
  border: 1px solid var(--section-yellow);
  background: var(--section-red);
}

.video-modal p {
  margin: 18px 5px 5px;
}

.video-modal>button {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 72px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transform: rotate(-7deg);
}

/* =========================================================
   Desktop layout
   >=1024px restores the full-width PC view while keeping the
   512px artboard composition for tablet and mobile.
========================================================= */
@media (min-width: 1024px) {
  :root {
    --dt-content: 1080px;
    --dt-pad: max(58px, calc((100% - var(--dt-content)) / 2));
  }

  body {
    background: var(--section-yellow);
  }

  .site-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: clip;
    box-shadow: none;
  }

  .proof,
  .video-section,
  .life-section,
  .why-section,
  .origin-section,
  .celebrity-section,
  .taste-section,
  .label-section,
  .review-section,
  .quiet-section,
  .memory-section,
  .place-section,
  .family-section,
  .faq-section,
  .instagram-section,
  .demo-footer {
    padding-block: 150px;
    padding-inline: var(--dt-pad);
  }

  /* Section vertical rhythm — guide: 120~210px, 30px multiples.
     Vertical-only tweaks; horizontal asset layout unaffected. */
  .why-section,
  .taste-section {
    padding-block: 180px;
  }

  .quiet-section,
  .memory-section {
    padding-block: 180px;
  }

  .demo-footer {
    padding-block: 120px;
  }

  /* Floating shortcut: anchor to viewport bottom-right corner on desktop
     so it no longer overlaps the centered content column. */
  .nearby-pill {
    right: 40px;
    bottom: 40px;
  }

  .hero {
    width: 512px;
    max-width: 512px;
    margin: 0 auto;
    padding-inline: var(--gutter);
  }

  .proof {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    grid-template-areas:
      "chef copy"
      "num copy";
    align-items: center;
    column-gap: 64px;
  }

  .proof-background {
    display: none;
  }

  .proof-deco {
    top: 50%;
    left: var(--dt-pad);
    display: block;
    width: 48%;
    max-width: 520px;
    height: 760px;
    object-fit: contain;
    object-position: center;
    opacity: .9;
    transform: translateY(-50%);
  }

  .chef-frame {
    grid-area: chef;
    align-self: end;
    margin: 0;
  }

  .proof-number {
    grid-area: num;
    align-self: start;
    margin: 30px 0 0 -8px;
  }

  .proof-copy {
    grid-area: copy;
    padding: 0;
  }

  .video-section {
    text-align: center;
  }

  .video-section .section-intro,
  .taste-section .section-heading,
  .why-section .section-heading,
  .origin-section .section-heading,
  .celebrity-section .section-heading,
  .place-section .section-heading,
  .family-heading,
  .instagram-heading {
    max-width: var(--dt-content);
    margin-inline: auto;
  }

  .video-section .section-intro {
    width: auto;
    max-width: 760px;
  }

  .video-card {
    max-width: 700px;
    margin: 0 auto;
  }

  .pairing-heading {
    margin-top: 90px;
  }

  .carousel-shell,
  .why-viewport,
  .label-section .hroll-viewport,
  .map-layout,
  .family-track,
  .instagram-card,
  .instagram-embed-card {
    max-width: var(--dt-content);
    margin-inline: auto;
  }

  .carousel-track {
    grid-auto-flow: row;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-columns: auto;
    gap: 18px;
    overflow: visible;
    padding: 0;
    transform: none !important;
  }

  .carousel-controls {
    display: none;
  }

  .life-section,
  .quiet-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: 64px;
  }

  .life-image,
  .quiet-image {
    margin: 0;
  }

  .life-image img {
    aspect-ratio: .82;
  }

  .life-lockup {
    margin-top: 0;
  }

  .life-speech {
    margin-top: 30px;
  }

  .why-track {
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-track .why-card,
  .why-track .hroll-panel {
    width: auto;
    flex: 0 1 auto;
  }

  .why-viewport {
    overflow: visible;
  }

  .why-card {
    min-height: 560px;
    padding: 40px 64px 32px 40px;
  }

  .why-card h3 {
    font-size: 26px;
  }

  .why-card li {
    font-size: 16px;
    line-height: 1.42;
  }

  .vertical-title {
    right: 12px;
    font-size: 37px;
  }

  .why-card-expert .vertical-title {
    display: none;
  }

  .origin-section {
    display: grid;
    grid-template-columns: minmax(0, 440px) 360px;
    grid-template-areas:
      "head video"
      "copy video";
    align-items: center;
    justify-content: center;
    column-gap: 56px;
    row-gap: 28px;
  }

  .origin-section .section-heading {
    grid-area: head;
    align-self: end;
    max-width: none;
    margin-inline: 0;
  }

  .origin-section .section-heading h2 {
    margin-bottom: 0;
  }

  .corridor-frame {
    grid-area: video;
    max-width: 360px;
    margin: 0;
  }

  .origin-copy {
    grid-area: copy;
    align-self: start;
    margin: 0;
    width: auto;
  }

  .celebrity-section {
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(230px, .66fr);
    grid-template-areas:
      "head head"
      "collage cap";
    align-items: center;
    column-gap: 64px;
    row-gap: 0px;
  }

  .celebrity-section .section-heading {
    grid-area: head;
    margin-bottom: 0px;
    padding-bottom: 0px;
  }

  .celebrity-section .section-heading h2 {
    margin-bottom: 0;
  }

  .collage {
    grid-area: collage;
    width: 100%;
    max-width: 620px;
    min-height: 500px;
    margin: 0;
  }

  .collage-one {
    top: 0;
    left: 0;
    width: 45%;
    height: auto;
  }

  .collage-two {
    top: 130px;
    left: 12%;
    width: 50%;
    height: auto;
  }

  .collage-three {
    top: 212px;
    right: 0;
    width: 56%;
    height: auto;
  }

  .collage blockquote {
    top: 36px;
    right: 0;
    width: 34%;
  }

  .collage-caption {
    grid-area: cap;
    width: auto;
    max-width: 250px;
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
  }

  .celebrity-section .scroll-cue-inline {
    display: none;
  }

  /* 데스크탑: collage 모바일 가로 스와이프 트랙 해제 → 기존 absolute 그리드 복원 */
  .collage {
    display: block;
    overflow: visible;
    scroll-snap-type: none;
    gap: 0;
  }
  .collage > figure,
  .collage > blockquote {
    position: absolute;
    flex: none;
    width: auto;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    border: 5px solid var(--primary);
    background: var(--primary);
    text-align: left;
    align-items: initial;
    justify-content: initial;
  }
  .collage > .collage-one { top: 200px; left: -60px; width: 53.1%; height: auto; transform: rotate(-7deg); }
  .collage > .collage-two {top: 372px;left: 350px;width: 58.2%;height: auto;transform: rotate(-2deg);}
  .collage > .collage-three { top: 250px; right: -380px; width: 55%; height: auto; transform: rotate(8deg); }
  .collage > blockquote {top: 190px;right: 70px;width: 35%;padding: 40px 34px 40px 8px;font-size: 24px;font-weight: 900;line-height: 1.13;letter-spacing: -0.045em;word-break: keep-all;background: transparent;color: var(--primary);border: 0;}

  .taste-section {
    text-align: left;
  }

  .taste-hero {
    width: 100%;
    max-width: var(--dt-content);
    margin: 0 auto 60px;
  }

  .taste-hero img {
    /* aspect-ratio: 2.3; */
    object-fit: cover;
  }

  .style-chart,
  .recommend-card {
    max-width: 780px;
    margin-inline: auto;
  }

  .style-chart {
    --chart-col: 540px;
    margin-bottom: 70px;
    font-size: 17px;
  }

  .style-chart>* {
    display: flex;
    width: 100%;
    min-height: 108px;
    align-items: center;
    padding: 0 84px;
  }

  .style-chart>.ratings {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 34px;
    padding-top: 0;
  }

  .ratings span {
    margin-bottom: 0;
    font-size: 18px;
  }

  .rating-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 28px;
    width: 100%;
  }

  .rating-grid p {
    width: auto;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
  }

  .rating-grid p+p {
    margin-top: 0;
  }

  .rating-grid b {
    min-width: 96px;
    text-align: left;
  }

  .style-chart>p {
    display: block;
    padding-top: 0;
    line-height: 1.72;
  }

  .style-chart>p:last-child {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    padding-top: 0;
  }

  .style-chart>p:last-child span {
    margin: 0;
    font-size: 24px;
  }

  .nose-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    margin: 0 0 100px;
    gap: 14px;
  }

  .nose-card img {
    aspect-ratio: .72;
  }

  .label-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px;
  }

  .label-track::after {
    content: none;
    display: none;
  }

  .label-track .hroll-panel,
  .label-track .label-story {
    width: auto;
    flex: 0 1 auto;
  }

  .label-story figure {
    height: 460px;
  }

  .review-section {
    display: flex;
    justify-content: center;
  }

  .review-file {
    max-width: 520px;
  }

  .quiet-copy {
    padding: 0;
  }

  .memory-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "media lock"
      "media copy";
    align-items: center;
    min-height: 0;
    column-gap: 64px;
    row-gap: 24px;
  }

  .memory-media {
    display: contents;
  }

  .memory-image {
    grid-area: media;
    margin: 0;
  }

  .memory-image img {
    aspect-ratio: 1;
  }

  .memory-lockup {
    position: static;
    grid-area: lock;
    align-self: end;
    margin: 0;
    font-size: 64px;
    line-height: .6;
  }

  .memory-copy {
    grid-area: copy;
    margin-top: -145px;
  }

  .memory-copy p,
  .memory-copy strong {
    margin-left: 22px;
  }

  .place-search,
  .nearby-button,
  .map-status {
    width: min(620px, 100%);
    max-width: none;
    margin-inline: auto;
  }

  .nearby-button {
    display: block;
    margin: 12px auto 56px;
  }

  .map-layout {
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
  }

  .map-frame,
  .vendor-panel {
    height: 460px;
    max-height: 460px;
  }

  .map-canvas,
  .map-frame .map-canvas {
    height: 460px;
    min-height: 460px;
  }

  .family-section {
    text-align: center;
  }

  .family-track {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-columns: auto;
    gap: 24px;
    overflow: visible;
    padding: 0;
  }

  .faq-section>h2 {
    text-align: center;
  }

  .faq-list {
    max-width: 900px;
    margin-inline: auto;
  }

  .instagram-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .demo-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .demo-footer>* {
    max-width: 820px;
  }

  .demo-footer .footer-rule {
    width: 100%;
    max-width: 820px;
  }
}

/* =========================================================
   Small-phone tightening
   Disabled: the page now scales uniformly via the 512px design canvas + html zoom,
   so these small-screen px overrides are no longer needed (kept for reference).
========================================================= */
@media (max-width: 0px) {
  .video-caption {
    grid-template-columns: 42% 58%;
    padding: 16px 15px 17px;
  }

  .video-caption>b {
    font-size: 32px;
  }

  .video-caption em {
    font-size: 14.8px;
    line-height: 1.3;
  }

  .pairing-card div {
    padding-inline: 8px;
  }

  .family-modal-card {
    grid-template-columns: 34% 1fr;
    gap: 15px;
    padding: 30px 20px;
  }

  .instagram-heading p {
    font-size: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .media-reveal {
    clip-path: none;
  }
}

/* =========================================================
   Keyframes
========================================================= */
@keyframes bottle-float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-.5deg);
  }

  50% {
    transform: translateX(-50%) translateY(-18px) rotate(1deg);
  }
}

@keyframes shadow-float {

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

  50% {
    opacity: .48;
    transform: translateX(-50%) scale(.72);
  }
}

@keyframes cue-diamond {

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

  50% {
    opacity: .5;
    transform: translateY(6px) rotate(45deg);
  }
}

/* scroll-cue 통일 모션: 다이아몬드와 화살표가 한 몸처럼 함께 내려갔다 올라옴 */
@keyframes cue-bounce {

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

  50% {
    opacity: .55;
    transform: translateY(6px) rotate(45deg);
  }
}

@keyframes cue-arrow {

  0%,
  20% {
    opacity: 0;
    transform: translateY(-3px) rotate(45deg);
  }

  65% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(8px) rotate(45deg);
  }
}

@keyframes line-breathe {

  0%,
  100% {
    transform: scaleX(.45);
  }

  50% {
    transform: scaleX(1);
  }
}

/* =========================================================================
   ============================ DEMO_FIX OVERRIDES =========================
   원본 demo.css 위에 cascade로 덮어쓰는 단일 블록. (2026-06-16)
   ========================================================================= */

/* --- 2-1 폰트: 로컬 실제 face 보강 (200/800/900은 합성 유지) --- */
@font-face {
  font-family: "Pretendard";
  src: url("/site-assets/official/fonts/Pretendard-Light.woff2") format("woff2");
  font-style: normal; font-weight: 300; font-display: swap;
}
@font-face {
  font-family: "Escoredream";
  src: url("/site-assets/official/fonts/S-CoreDream-5Medium.woff") format("woff");
  font-style: normal; font-weight: 500; font-display: swap;
}
@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff") format("woff");
  font-style: normal; font-weight: 300; font-display: swap;
}

/* --- 2-2 PC spacing 토큰 --- */
:root {
  --dt-section-y: 150px;
  --dt-title-gap: 90px;
  --dt-y-tight: 120px;
  --dt-faq-top: 180px;
  --dt-y-large: 210px;
  --shadow-soft-strong: 0 14px 30px rgba(128, 34, 20, 0.28);
}

/* --- 3 Hero --- */
.bottle-shadow {
  background: rgba(77, 40, 0, 0.7);
  filter: blur(6px);
  width: 114px;
  height: 10px;
}
@keyframes shadow-float { 50% { opacity: .58; transform: translateX(-50%) scale(.72); } }

.hero-decor { object-fit: contain; }

.origin-rule { margin: 22px auto; }
/* from italy: 타원 알약 + 가로선 그대로 두고 안의 글자만 SVG로 교체 */
.origin-rule span img.from-italy-mark {
  display: block; width: auto; height: 25px; max-width: none; margin: 0 auto;
}
.origin-rule--separator { margin: 22px auto; }

/* --- 3 Life speech pill: 고정 356/340px + 27px → 좁은 화면 넘침 방지 --- */
.life-speech { width: min(356px, 100%); font-size: clamp(15px, 6.3vw, 27px); }
.life-speech span + span { width: min(340px, 100%); margin-right: 0; }

/* --- 4 Proof --- */
.proof-bottles { line-height: 1; }
.proof-deco { object-fit: contain; }
/* 2차/3차 수정은 전부 PC(@media min-width:1024px) 전용 — 모바일 미변경 */

/* --- 5 Recipe 영상 카드 --- */
.pairing-card--video {
  padding: 0;
  border: 1px solid var(--text-cream);
  background: var(--section-cream);
}
.recipe-video-card {
  position: relative; display: block; width: 100%; height: 100%;
  padding: 12px; color: var(--primary); text-align: left; cursor: pointer;
}
.recipe-video-card > img {
  display: block; width: 100%; aspect-ratio: 1 / .74;
  border: 1px solid var(--primary); object-fit: cover;
}
.recipe-video-card .play-button { top: 34%; }
.recipe-video-card > div { padding: 12px 0 18px; }
.recipe-video-card h3 {
  margin: 9px 0; font-family: var(--font-main); font-size: 20px;
  font-weight: 800; line-height: 1.14; letter-spacing: -0.045em;
}
.recipe-video-card p {
  font-family: var(--font-main); font-size: 12.5px; line-height: 1.45;
  letter-spacing: -0.04em; word-break: keep-all;
}
.recipe-video-card b {
  display: block; margin-top: 12px; font-family: var(--font-narrow);
  font-size: 18px; font-weight: 600; letter-spacing: -0.02em; text-align: right;
}

/* --- 9 Celebrity 순차 reveal (보강; 실제 stagger 는 JS 인라인 delay 로 동작) --- */
.reveal-stagger { transition-delay: var(--delay, 0ms); }

/* --- 10 Taste 본문 줄바꿈/타이포 --- */
.nose-copy, .nose-copy strong { word-break: keep-all; }
.style-chart > p { font-weight: 300; }
.style-chart p strong { font-weight: 500; }

/* --- 10 Recommend pill 고정폭(뷰포트 따라 늘어남 방지) --- */
.recommend-card h3 { width: auto; max-width: 100%; }
.recommend-card h3 span {
  display: block; width: max-content; min-width: 232px; max-width: 100%;
}
.recommend-card h3 span + span {min-width: 255px;margin: -5px 0 0 115px;}

/* --- 11 Label 비율 보존(고정 height → aspect-ratio) --- */
.label-story figure { height: auto; aspect-ratio: 1100 / 1640; }
.label-story img { height: 100%; }
.label-section.is-hrolling .label-story figure {
  height: auto; aspect-ratio: 1100 / 1640; max-height: min(54svh, 500px);
}

/* --- 12 Review 무효값/그림자 --- */
.review-frame-art {/* width: calc(100% - 0px); */}

/* --- 13 Memory clamp/weight 버그 --- */
.memory-copy strong { width: clamp(210px, 41vw, 285px); font-weight: 400; }
/* pill: 폭 줄어도 한 줄 유지 + 비율 축소 (고정 27px/줄바꿈 → 유동) */
.memory-copy p {
  height: auto;
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 6.3vw, 27px);
  white-space: nowrap;
}
/* strong: <br>로 의도한 줄을 강제 유지. 자동 줄바꿈 막고(nowrap) 글자를 폭에 맞춰 축소
   → "방법." 같은 단어가 다음 줄로 떨어지지 않음 */
.memory-copy strong {
  width: 0px;
  white-space: nowrap;
  font-size: clamp(15px, 4.8vw, 25.5px);
}

/* --- 15 Family --- */
.family-card b { line-height: 1.25; }
.family-modal-details h2 { font-size: 22px; line-height: 1.1; }
.family-sliders { gap: 3px 20px; padding: 7px 0; }
.slider-row { min-height: 12px; }
.slider-label { line-height: .9; }
.slider-track { line-height: .9; }

/* --- 16 FAQ 답변 A. 복구 --- */
.faq-list details p { position: relative; padding: 38px 16px 44px 48px; }
.faq-list details p::before {
  position: absolute; top: 38px; left: 15px; content: "A."; font-weight: 800;
}

/* --- 18 Footer 더 알아보기 접힘 default --- */
.footer-more-details { width: 100%; }
.footer-more-details summary {
  display: inline-block; list-style: none; cursor: pointer;
  color: rgba(255, 236, 202, 0.72); font-size: 16px; font-weight: 400; line-height: 1;
}
.footer-more-details summary::-webkit-details-marker { display: none; }
.footer-more-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transform-origin: top;
  transition:
    max-height .58s var(--ease-out),
    opacity .34s ease,
    transform .58s var(--ease-out);
}
.footer-more-details[open] .footer-more-content {
  max-height: 680px;
  opacity: 1;
  transform: translateY(0);
}
.footer-more-details:not([open]) .footer-more-content { display: none; }
.footer-site-link {
  display: inline-block; margin-top: 24px; color: rgba(255, 236, 202, 0.72);
  font-size: 15px; text-decoration: underline; text-underline-offset: 3px;
}
.footer-rule--contact {
  width: 100%;
  height: 1px;
  margin: 30px 0 30px;
  background: rgba(255, 236, 202, 0.64);
}

/* --- 2-7 좌우/세로 스크롤 공존 보강 --- */
.hroll-viewport, .carousel-track, .label-viewport, .family-track, .why-viewport {
  -webkit-overflow-scrolling: touch; touch-action: pan-x pan-y; overscroll-behavior-y: auto;
}

/* ===================== DEMO_FIX OVERRIDES — PC (>=1024px) ===================== */
@media (min-width: 1024px) {
  /* 2-5 섹션 상하 리듬: 180 override 제거(150 통일) + 규정예외 */
  .why-section, .taste-section { padding-block: var(--dt-section-y); }
  .quiet-section, .memory-section { padding-block: var(--dt-y-tight); }
  .proof { padding-bottom: var(--dt-y-tight); }
  .faq-section { padding-block: var(--dt-y-large); }
  .family-section { padding-block: var(--dt-y-large); }
  .demo-footer { padding-block: var(--dt-y-tight); }

  /* 2-4 좌측 정렬 공통화 */
  .video-section { text-align: left; }
  .video-section .section-intro,
  .taste-section .section-heading,
  .why-section .section-heading,
  .origin-section .section-heading,
  .celebrity-section .section-heading,
  .place-section .section-heading,
  .family-heading,
  .instagram-heading {
    margin-left: 0; margin-right: auto; text-align: left;
  }
  .video-section .section-intro p,
  .section-heading h2, .section-heading > p,
  .family-heading h2, .family-heading p,
  .instagram-heading h2, .instagram-heading p,
  .faq-section > h2, .family-section { text-align: left; }

  .carousel-shell, .style-chart,
  .place-search, .nearby-button, .map-status, .map-layout,
  .faq-list, .instagram-card, .instagram-embed-card,
  .family-track {
    margin-left: 0; margin-right: auto;
  }
  .nearby-button { margin: 12px auto 56px 0; }

  /* 3-title gap 90 (선택 적용) */
  .why-section .section-heading h2 { margin-bottom: var(--dt-title-gap); }
  .video-section > .section-intro:first-child { margin-bottom: var(--dt-title-gap); }

  /* 데스크탑: hroll을 일반 2-up 흐름으로 표시(세로 스크롤, 가로 스와이프 X) */
  .why-viewport, .label-section .hroll-viewport { overflow: visible; scroll-snap-type: none; }
  .why-track, .label-track { flex-wrap: wrap; }
  .origin-section { row-gap: 28px; }

  /* 4-3 Proof: 원본 레이아웃 유지. 좌측 배경에 chef-background(빈 보틀 패턴) 노출 */
  .proof-background {
    display: block; top: 355px; bottom: 0; left: calc(var(--dt-pad) - 44px); height: auto;
    width: min(540px, 50%);
    object-fit: cover; object-position: left top; opacity: 1;
  }

  /* 5-3 Recipe carousel: PC 에서도 좌우 스크롤 유지 */
  .carousel-shell {
    max-width: var(--dt-content);
    margin-inline: auto;
  }

  .carousel-track {
    display: flex;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: clamp(280px, 24vw, 320px);
    gap: 18px;
    overflow-x: auto; overflow-y: visible;
    padding: 0 0 12px;
    scroll-snap-type: x mandatory;
    transform: none !important;
  }

  .carousel-controls { display: flex; }

  .carousel-track>.pairing-card {
    flex-basis: clamp(280px, 24vw, 320px);
  }

  .carousel-track>.pairing-card:last-child {
    margin-right: 18px;
  }

  /* 6 Life: 아트보드형(가로 이미지 + 타이틀 겹침), 가운데 정렬 */
  .life-section {
    display: block; width: 100%; margin-inline: 0;
    padding: 0;
    background: bottom;
  }
  .life-image { width: 100%; margin: 0; }
  .life-image img { width: 100%; height: auto; aspect-ratio: auto; object-fit: cover; }
  .life-lockup { position: relative; margin-top: -260px; margin-left: auto; width: fit-content; }
  .life-title-svg {margin-left: 58px;}
  .life-speech {margin: 13px 57px 0px auto;}

  /* 7 Why: 2칼럼 풀폭 채움(우측 여백 제거) + expert 세로타이틀 표시 */
  .why-track {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px; max-width: none; margin-inline: 0;
  }
  .why-track .why-card, .why-track .hroll-panel { width: auto; max-width: none; flex: 0 1 auto; }
  .why-card-expert .vertical-title { display: block; }

  /* 5 Celebrity: 데스크탑 2-컬럼(콜라주 | 캡션) + 좌측 라벨은 화면 끝에 absolute */
  .celebrity-section {
    position: relative;
    padding-block: 100px; /* 이 섹션만 상하 여백 축소 (다른 섹션 150px 유지) */
    grid-template-columns: minmax(0, 1fr) minmax(200px, 240px);
    grid-template-areas:
      "head head"
      "collage right";
    column-gap: 40px;
    row-gap: 0px;
  }
  .collage { grid-area: collage; max-width: 540px; min-height: 700px; margin: 0 auto; }

  .collage-label-stack {
    position: absolute;
    top: 270px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 5;
    visibility: visible;
  }
  .collage blockquote { display: block; }
  .collage-label-card {
    background: #75fbf7;
    color: #0a0a0a;
    font-family: var(--font-main);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.045em;
    word-break: keep-all;
    padding: 10px 10px;
    font-size: 24px;
    width: 150px;
  }
  .collage-label-card p { margin: 6px 0 0; }
  .collage-label-card b { font-weight: 900; }
  .collage-label-arrow {
    display: inline-block;
    color: #0a0a0a;
    font-size: 12px;
    margin-bottom: 4px;
  }

  .collage-caption { display: none; }
  .collage-caption-mobile { display: none; }
  /* 라벨 카드를 collage 내부에 absolute 배치 → 이미지와 함께 reveal/이동 */
  .collage-caption-desktop {
    position: absolute;
        left: 169px;
        top: 631px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    text-align: left;
    z-index: 5;
  }
  .collage-caption-desktop .collage-label-card { background: transparent; color: var(--primary); }
  /* 150px 고정폭 때문에 생기던 추가 줄바꿈 제거 → <br>로 의도한 줄만 유지 */
  .collage-caption-desktop .collage-label-card { width: auto; }
  .collage-caption-desktop .collage-label-card p { white-space: nowrap; }

  /* 6(3차) Hero 확대 — PC 전용: 상단 비주얼 묶음만 통째로 스케일 */
  .hero {
    width: min(940px, 100%);
    max-width: 940px;
    height: 1280px;
  }
  .hero-kicker { top: 180px; left: 20px; }
  .hero-artboard {
    top: 32px;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 680px;
    height: 720px;
    transform: translateX(-50%) scale(1.34);
    transform-origin: top center;
  }
  .hero-title-lunagaia { top: 122px; width: 500px; }
  .hero-title-zibibbo { top: 450px; width: 570px; }
  .hero-bottle-layer { top: 70px; width: 340px; height: 540px; }
  .hero-bottle { width: 110%; }
  .hero-decor {
    top: 12px;
    left: 15px;
    width: 650px;
    height: 705px;
    transform: none;
  }
  .hero-copy {
    right: auto;
    left: calc(50% - 285px);
    bottom: 120px;
    width: 570px;
  }
  .hero-copy .origin-rule--separator {
    display: none;
  }

  /* 10 Taste hero: 풀블리드 + 크롭 없이 전체 노출 */
  .taste-hero {
    width: 100vw; max-width: none; margin: 0 calc(50% - 50vw) var(--dt-section-y);
  }
  .taste-hero img {width: 100%;height: auto;/* aspect-ratio: auto; */object-fit: cover;}

  /* 11 Label: 비율 보존 + 가운데 정렬(좌우 여백 균형) */
  .label-story figure { height: auto; aspect-ratio: 1100 / 1640; }
  .label-track { margin-inline: auto; }
  .label-story h2, .label-story p { text-align: left; }

  /* 12 Review */
  .review-file {max-width: 735px;}

  /* 7 Recommend: PC 가로폭 고정 + 가운데 정렬(늘어짐 방지) */
  .recommend-card { max-width: 500px; margin-inline: auto; }

  /* 13 Quiet: 이미지는 위(원본 유지), 그 아래 글자 블록을 좌우 2칼럼 */
  .quiet-section { display: block; padding-block: var(--dt-y-tight); }
  .quiet-image { width: auto; margin: 0 0 56px; }
  .quiet-copy { width: auto; margin: 0; padding: 0; columns: 2; column-gap: 60px; }
  .quiet-copy > * { break-inside: avoid; }

  /* 16 FAQ summary 1행 잘림 방지 + 90 gap */
  .faq-section > h2 { margin-bottom: var(--dt-title-gap); }
  .faq-list summary { min-height: 64px; padding-top: 20px; padding-bottom: 20px; }

  /* 17 Instagram 셀 잘림 방지 */
  .instagram-card { height: auto; min-height: 330px; }
  .instagram-heading p { margin-bottom: var(--dt-title-gap); }

  /* 18 Footer 좌측 정렬 */
  .demo-footer { align-items: flex-start; text-align: left; }
  .footer-more-details { max-width: 820px; margin-left: 0; margin-right: auto; }

  /* family 좌측 정렬은 위 family-section text-align:left 로 처리 */
  .family-section { text-align: left; }
}


/* ============================================================
   FONT REVISION  (확정 + 조건부 채택 / px 크기 제외)
   원본 site.css 위에 source-order cascade로 덮어쓰는 단일 블록.
   2026-06-17  canonical: /lunagaia/zibibbo/
   ============================================================ */

/* 1) 폰트 토큰 정리 -------------------------------------------------- */
:root {
  --font-body-kr: "Pretendard", "Apple SD Gothic Neo", "Noto Sans CJK KR", sans-serif;
  --font-title-kr: "Escoredream", "Pretendard", sans-serif;
  --font-display-en: "goldenbook", "Demo Serif", Georgia, serif;
  --font-rounded: var(--font-body-kr);
  --font-display: var(--font-display-en);
  --font-narrow: var(--font-title-kr);
  --font-cooper: var(--font-display-en);
}

/* 2) 누락 weight 보강 (Pretendard ExtraLight 200) ------------------- */
@font-face {
  font-family: "Pretendard";
  src: url("https://cdn.jsdelivr.net/npm/pretendard@1.3.9/dist/web/static/woff2/Pretendard-ExtraLight.woff2") format("woff2");
  font-style: normal;
  font-weight: 200;
  font-display: swap;
}

/* 3) 확정: 본문 계열 → Pretendard ---------------------------------- */
.section-heading > p,
.section-intro p,
.line-card,
.line-card b,
.line-card p,
.origin-copy,
.collage-caption,
.label-story p,
.place-section,
.family-section,
.faq-list details p,
.instagram-section,
.demo-footer,
.video-caption em,
.pairing-card h3,
.pairing-card p {
  font-family: var(--font-body-kr);
  font-synthesis: none;
}

/* 확정: 큰 한글 섹션 제목 → Escoredream 6 Bold --------------------- */
.proof-copy h2,
.section-heading h2,
.label-story h2,
.family-heading h2,
.instagram-heading h2,
.quiet-copy h2,
.place-section .section-heading h2,
.faq-section > h2 {
  font-family: var(--font-title-kr);
  font-weight: 600;
  font-synthesis: none;
}

/* 확정: 영문 장식 / 숫자 / 세로 영문 → goldenbook -------------------- */
.proof-number,
.proof-number strong,
.proof-bottles,
.vertical-title,
.video-caption > b,
.collage blockquote .bq-quote {
  font-family: var(--font-display-en);
  font-synthesis: none;
}

/* 확정: Hero 하단 '루나가이아 지비뽀' ------------------------------- */
.hero-copy strong,
.hero-copy strong b {
  font-family: var(--font-title-kr);
  font-weight: 600;
  font-synthesis: none;
}

/* 조건부: Wine Beginners / Wine Lovers 카드 ------------------------ */
.why-levels em,
.why-card > em {
  font-family: var(--font-title-kr);
  font-weight: 600;
}
.why-card h3 {
  font-family: var(--font-body-kr);
  font-weight: 600;
}
.why-card li {
  font-family: var(--font-title-kr);
  font-weight: 400;
}

/* 조건부: Style Chart --------------------------------------------- */
.style-chart,
.style-chart > p {
  font-family: var(--font-title-kr);
  font-weight: 300;
}
.style-chart strong,
.style-chart > p:last-child {
  font-weight: 500;
}
.ratings span,
.rating-grid em {
  font-family: var(--font-title-kr);
  font-weight: 300;
}
.rating-grid b {
  font-weight: 500;
}

/* 조건부: Nose 4분할 카드 ----------------------------------------- */
.nose-copy {
  font-family: var(--font-title-kr);
  font-weight: 300;
}
.nose-copy p {
  font-family: var(--font-body-kr);
  font-weight: 300;
}
.nose-copy strong {
  font-weight: 500;
}

/* 조건부: 추천 카드 ----------------------------------------------- */
.recommend-card h3 {
  /* font-family: var(--font-main); */
  font-weight: 500;
}
.recommend-card li {
  font-family: var(--font-title-kr);
  font-weight: 400;
}

/* 조건부: Label Story 본문 ---------------------------------------- */
.label-story p {
  font-family: var(--font-body-kr);
  font-weight: 400;
}

/* 조건부: Memory CTA ---------------------------------------------- */
.memory-copy p {
  font-family: var(--font-title-kr);
  font-weight: 500;
}
.memory-copy strong {
  font-family: var(--font-title-kr);
  font-weight: 400;
}
.memory-copy strong b {
  font-weight: 600;
}

/* 조건부: FAQ ----------------------------------------------------- */
.faq-section > h2 {
  font-family: var(--font-title-kr);
  font-weight: 600;
}
.faq-list summary {
  font-family: var(--font-title-kr);
  font-weight: 600;
}
.faq-list details p {
  font-family: var(--font-body-kr);
  font-weight: 400;
}

/* 조건부: Footer -------------------------------------------------- */
.demo-footer {
  font-family: var(--font-body-kr);
}
.demo-footer > p:not(.footer-korean) {
  font-weight: 300;
}
.footer-korean {
  font-weight: 300;
}
.footer-more {
  font-weight: 200;
}
.footer-story p {
  font-weight: 300;
}
.demo-footer address {
  font-weight: 400;
}

/* 4) 우선순위 보정: 더 구체적인 기존 규칙을 이기기 위한 override -------- */
/* why-section 큰 제목: 기존 .why-section .section-heading h2{900} 이김 → 600 */
.why-section .section-heading h2 {
  font-family: var(--font-title-kr);
  font-weight: 600;
  font-synthesis: none;
}
/* footer 더보기 summary: 기존 .footer-more-details summary{400} 이김 → 200 */
.footer-more-details summary.footer-more,
.footer-more-details summary {
  font-weight: 200;
}


/* 부모 박스의 전체 너비 선을 제거하고, 내부 글자 길이에 선을 맞춤 */
.section-intro {
    border-bottom: none !important;
}

.section-intro p {
    display: inline-block !important;      /* 글자 너비만큼만 영역 차지 */
    border-bottom: 1px solid #FFE0A1 !important; /* 글자 아래에만 선 생성 */
    padding-bottom: 10px !important;       /* 글자와 선 사이 간격 */
    width: auto !important;                /* 고정 너비 강제 해제 */
}

@media (min-width: 1024px) {
  .proof,
  .video-section,
  .life-section,
  .why-section,
  .origin-section,
  .celebrity-section,
  .taste-section,
  .label-section,
  .review-section,
  .quiet-section,
  .memory-section,
  .place-section,
  .family-section,
  .faq-section,
  .instagram-section,
  .demo-footer {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .video-section > .section-intro:first-child,
  .section-heading h2,
  .family-heading h2,
  .instagram-heading p,
  .faq-section > h2 {
    margin-bottom: 90px;
  }

  .faq-section {
    padding-top: var(--dt-y-large);
    padding-bottom: 0px;
  }

  .life-section {
    padding-top: 0;
    padding-bottom: 0;
  }

  .life-image {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .life-image img {
    display: block;
  }

  .life-lockup {
    margin-top: clamp(-391px, -33.39vw, -260px);
    margin-left: auto;
    margin-right: clamp(-27px, -3vw, 142px);
  }

  .life-title-svg {
    width: clamp(238px, 23.24vw, 345px);
  }

  .life-speech {
    width: clamp(356px, 34.77vw, 516px);
    margin-top: clamp(-72px, -6.76vw, -18px);
    font-size: clamp(27px, 2.64vw, 39px);
  }

  .life-speech span {
    padding: clamp(10px, 0.98vw, 14px) clamp(25px, 2.44vw, 36px) clamp(12px, 1.17vw, 17px);
  }

  .life-speech span + span {
    width: 95.5%;
    margin-right: 0;
  }

  .taste-hero {
    width: 100vw;
    max-width: none;
    height: auto;
    margin: 0 calc(50% - 50vw) 120px;
    overflow: visible;
    clip-path: none;
  }

  .taste-hero img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .taste-section .section-heading {
    margin-bottom: 90px;
  }

  .taste-section .section-heading h2 {
    margin-bottom: 0;
  }

  .style-chart {
    width: min(760px, 100%);
    max-width: none;
    margin: 0 auto 74px;
    font-size: 18px;
    letter-spacing: -0.02em;
    background-image: none;
  }

  .style-chart > * {
    min-height: 104px;
    padding: 0 64px;
    background-image: none;
  }

  .style-chart > .ratings {
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 34px;
  }

  .ratings span {
    font-size: 18px;
    line-height: 1;
  }

  .rating-grid {
    gap: 8px 34px;
  }

  .rating-grid p {
    justify-content: flex-start;
    gap: 8px;
  }

  .rating-grid b {
    min-width: 82px;
    font-size: 1.08em;
    letter-spacing: -0.13em;
  }

  .style-chart > p {
    line-height: 1.56;
  }

  .style-chart > .chart-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 52px;
  }

  .style-chart > p.chart-finish {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 52px;
  }

  .style-chart > p.chart-finish span {
    margin: 0;
    font-size: 26px;
    justify-self: start;
  }

  .style-chart > p.chart-finish b {
    justify-self: start;
    font-weight: 500;
  }

  .nose-strip {
    width: min(1080px, 100%);
    margin: 0 auto 120px;
    padding: 10px;
    background: var(--section-cream)  ;
  }

  .nose-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    gap: 4px;
  }

  .nose-card img {
    aspect-ratio: .72;
  }

  .taste-scroll-cue {
    margin: 0 auto 230px;
  }

  .recommend-card {
    max-width: 400px;
    margin-inline: auto;
  }

  .quiet-section {
    display: block;
    padding-top: 0;
    padding-bottom: var(--dt-y-tight);
  }

  .quiet-image {
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw) 82px;
  }

  .quiet-image img {
    display: block;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
  }

  .quiet-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 60px;
    width: auto;
    margin: 0;
    padding: 0;
    columns: auto;
  }

  .quiet-copy-primary,
  .quiet-copy-secondary {
    min-width: 0;
  }

  .quiet-copy-secondary {
    padding-top: 0;
  }

  .demo-footer {
    min-height: auto;
    padding-bottom: 88px;
  }

  .label-track {
    align-items: start;
  }

  .label-story h2 {
    max-width: 280px;
    min-height: 78px;
    margin-bottom: 28px;
    line-height: 1.08;
  }

  .label-story p {
    max-width: 500px;
    margin-bottom: 26px;
    line-height: 1.34;
    letter-spacing: -0.028em;
  }

  .label-story p:last-child {
    margin-bottom: 0;
  }

  .collage.reveal {
    margin-top: -100px;
  }

  .instagram-embed-card {
    min-height: 518px;
  }

  .instagram-embed-card iframe {
    width: 100%;
    height: 518px;
    border: 0;
    background: #fff;
  }

  .review-copy b {
    display: block;
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
    font-family: var(--font-main);
  }

  .review-copy p {
    margin-top: 8px;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.42;
    letter-spacing: -0.055em;
  }
}

@media (max-width: 1024px) {
  :root {
    --mobile-section-y: clamp(60px, 11.71875vw, 120px);
    --mobile-section-y-sm: 90px;
    --mobile-faq-top-y: clamp(90px, 17.578125vw, 180px);
  }

  .proof,
  .video-section,
  .origin-section,
  .celebrity-section,
  .label-section,
  .review-section,
  .memory-section,
  .place-section,
  .family-section,
  .faq-section,
  .instagram-section,
  .demo-footer {
    padding-top: var(--mobile-section-y);
    padding-bottom: var(--mobile-section-y-sm);
  }

  .life-section {
    padding-top: var(--mobile-section-y);
    padding-bottom: var(--mobile-section-y);
  }

  /* 상하 여백 90px 그룹 — 추가할 섹션은 아래 셀렉터에 이름만 더하면 됨 */
  .origin-section,
  .celebrity-section,
  .taste-section,
  .why-section {
    padding-top: var(--mobile-section-y-sm);
    padding-bottom: var(--mobile-section-y-sm);
  }

  .taste-section,
  .quiet-section {
    padding-top: 0;
    padding-bottom: var(--mobile-section-y-sm);
  }

  .taste-hero {
    overflow: visible;
    clip-path: none;
  }

  .taste-hero img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
  }

  .nose-strip {
    padding: 0;
    background: transparent;
  }

  .faq-section {
    padding-top: var(--mobile-faq-top-y);
  }
}

/* =========================================================
   life-speech: 두 줄 순차 등장
========================================================= */
.life-speech span {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.life-lockup.is-visible .life-speech span:nth-child(1) {
  opacity: 1;
  /* transform: translateY(0); */
  transition-delay: 0.15s;
}

.life-lockup.is-visible .life-speech span:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}
.life-speech span:nth-child(2) {
  /* 현재 상태는 그대로 유지하면서 */
  transform: translateX(43px) !important; /* 오른쪽으로 60px 이동 */
}
@media (max-width: 1023.98px) {
  .memory-media svg#_레이어_2 {
    width: 290px;
    height: auto;
    overflow: visible;
  }
}

@media (min-width: 1024px) {
  .memory-media svg#_레이어_2 {
    width: min(480px, 100%);
    height: auto;
    overflow: visible;
  }

  section#memory .memory-copy p {
    width: min(381px, 100%);
  }

  section#memory .memory-copy strong {
    width: max-content;
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .family-modal-card {
    transform: scale(1.5);
    transform-origin: center center;
  }

  .family-modal:not([hidden]) {
    padding: 50px;
  }
}

@media (max-width: 1023.98px) {
  .family-modal:not([hidden]) {
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 12px;
  }

  .family-modal-card {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    overflow: auto;
    transform: none;
  }
}

@media (max-width: 511.98px) {
  .family-modal-card {
    width: calc(var(--container) - 24px);
    max-width: calc(var(--container) - 24px);
  }
}
@media (min-width: 1024px) {
  section#instagram {
    padding-bottom: 210px !important;
  }
}
section#instagram {
    background-image: none !important;
    background-color: rgb(242, 207, 105) !important;
}


.instagram-section {
  --instagram-band: 43px;
  padding: 120px 28px 90px;
  /* padding-top: var(--mobile-section-y); */
  background: linear-gradient(to bottom,
      var(--section-yellow) 0,
      var(--section-yellow) calc(100% - var(--instagram-band)),
      var(--section-purple) calc(100% - var(--instagram-band)),
      var(--section-purple) 100%);
}

.memory-section {
  position: relative;
  min-height: 806px;
  padding: 30px 30px 60px;
  overflow: hidden;
  background: var(--section-cream);
}

@media (min-width: 1024px) {
  section#memory.memory-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "media lock"
      "media copy";
    column-gap: 64px;
    row-gap: 24px;
    box-sizing: border-box;
    padding: 30px max(30px, calc((100% - var(--dt-content)) / 2)) 60px !important;
  }

  section#instagram.instagram-section {
    padding-top: 120px !important;
  }

  section#instagram .instagram-heading,
  section#instagram .instagram-card,
  section#instagram .instagram-embed-card {
    width: min(var(--dt-content), 100%);
    max-width: var(--dt-content);
    margin-right: auto !important;
    margin-left: auto !important;
  }

  section#life.life-section {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 0 0 !important;
    overflow: hidden;
    background: var(--section-cream) !important;
  }

  section#life .life-image {
    width: 100%;
    margin: 0;
  }

  section#life .life-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2752 / 1536;
    object-fit: cover;
    object-position: center;
  }

  section#life .life-lockup {
    position: absolute;
    top: 22.42480469vw;
    right: -2.63671875vw;
    z-index: 3;
    width: 40.33496094vw;
    margin: 0 !important;
  }

  section#life .life-title-svg {
    width: 23.2421875vw;
    margin-left: 5.6640625vw !important;
  }

  section#life .life-speech {
    width: 34.76855469vw;
    margin: -6.75976563vw 5.56640625vw 0 0 !important;
    font-size: 2.63671875vw;
  }

  section#life .life-speech span {
    padding: 0.9765625vw 2.44140625vw 1.171875vw;
  }

  section#life .life-speech span + span {
    width: 95.5%;
    margin-right: 0;
  }
}

/* ===================== FONT REVISION END ===================== */
