/* ============================================================
   인조이풀 v6.2 — 정답 없는 90분 (2026-08-28)
   폰트 한 종(에이투지체)의 굵기만으로 말한다. 큰 글자일수록 얇게.
   따뜻한 종이 + 잉크 + 점 3색(코랄·버터·틸).
   ============================================================ */
@font-face { font-family: "A2Z"; src: url("/fonts/a2z-100.woff2") format("woff2"); font-weight: 100; font-display: swap; }
@font-face { font-family: "A2Z"; src: url("/fonts/a2z-300.woff2") format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "A2Z"; src: url("/fonts/a2z-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "A2Z"; src: url("/fonts/a2z-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "A2Z"; src: url("/fonts/a2z-900.woff2") format("woff2"); font-weight: 900; font-display: swap; }

:root {
  --paper: #FAF5EA;
  --card: #FFFDF8;
  --ink: #2B2A26;
  --ink-soft: rgba(43, 42, 38, 0.60);
  --ink-faint: rgba(43, 42, 38, 0.30);
  --coral: #E2603C;
  --butter: #F2C94C;
  --teal: #4E9084;
  --coral-soft: #F6DFD3;
  --butter-soft: #F8ECC8;
  --teal-soft: #DDEAE4;
  --joy: #0066B3;       /* 인조이풀 블루 — 로고의 파랑 그대로 */
  --joy-deep: #00518F;
  --a2z: "A2Z", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --pad: clamp(24px, 5vw, 88px);
  --wide: 82rem;   /* 넓은 섹션 */
  --mid: 72rem;    /* 보통 섹션 */
  --shadow: 0 1px 0 rgba(43,42,38,0.04), 0 12px 30px rgba(43,42,38,0.07);
  --ease: cubic-bezier(0.2, 0.8, 0.3, 1);

  /* ── 시즌 스위치 ──────────────────────────────
     랜딩 히어로 포스터는 시즌마다 바뀐다.
     바꿀 것은 이 두 줄 + index.html 의 .hero__char 이미지뿐.
     2026 F/W 가을 = 단호박 주황 · 종이 크림 · 점피·도리·뭉이   */
  --season-bg: #E9612B;   /* 포스터 판 바탕 — 단호박 주황 */
  --season-s1: #F4B63F;   /* 도토리 골드 */
  --season-s2: #6B9A3F;   /* 풀잎 초록 */
  --season-s3: #3E86C4;   /* 가을하늘 파랑 */
  --season-s4: #F3EAD8;   /* 종이 크림 */
  --season-paper: #FFFDF6; /* 캐릭터 원판 */
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  font-family: var(--a2z);
  font-weight: 300;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* 한글은 어절 단위로만 줄바꿈 — "만나\n요." 같은 끊김 방지 */
  word-break: keep-all;
  overflow-wrap: break-word;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── 리빌 ── */
.rv { opacity: 0; transform: translateY(12px); transition: opacity 0.9s ease-out, transform 0.9s ease-out; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation: none !important; }
  /* 애니메이션으로 등장하는 요소들이 숨은 채 남지 않도록 */
  .wordmark, .wordmark span, .wordmark b, .hero h1, .hero__sub, .hero__cta, .hero__doors { opacity: 1 !important; transform: none !important; }
  .ride, .rider, .sl { transform: none !important; }
}

/* ── 공용 타이포 ── */
.eyebrow {
  font-weight: 400; font-size: clamp(0.7rem, 1.8vw, 0.78rem);
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-soft);
}
.kicker { font-weight: 400; font-size: 0.92rem; letter-spacing: 0.16em; color: var(--ink-soft); }
h2.title { font-weight: 400; font-size: clamp(1.6rem, 4.4vw, 2.7rem); letter-spacing: 0.02em; line-height: 1.5; }
.lead { font-weight: 300; font-size: clamp(0.95rem, 2.3vw, 1.05rem); color: var(--ink-soft); }
.mark { box-shadow: inset 0 -0.34em 0 rgba(242, 201, 76, 0.5); font-style: normal; }
/* 상태 라벨 */
.sticker {
  display: inline-block; font-weight: 400; font-size: 0.74rem;
  letter-spacing: 0.18em; line-height: 1.4; padding: 0.24rem 0.85rem;
  border-radius: 2px;
}
.sticker--coral { background: var(--coral); color: #FFF6EE; }
.sticker--butter { background: var(--butter); color: var(--ink); }
.sticker--teal { background: var(--teal); color: #F1F8F5; }

/* ── 물결 디바이더 ── */
.wave { display: block; width: 100%; height: clamp(24px, 4vw, 44px); }

/* ── 헤더 ── */
.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 0.85rem var(--pad);
  background: var(--card);
  box-shadow: 0 1px 0 rgba(43,42,38,0.08), 0 2px 14px rgba(43, 42, 38, 0.06);
  transition: padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.top--solid { box-shadow: 0 1px 0 rgba(43,42,38,0.1), 0 4px 22px rgba(43, 42, 38, 0.12); }
.top__name { font-weight: 700; font-size: 1.02rem; letter-spacing: 0.02em; color: var(--ink); display: flex; align-items: center; }
.top__name em { font-style: normal; color: var(--coral); }
.top__logo { height: clamp(30px, 4.5vw, 42px); width: auto; display: block; }
.top__links { display: flex; gap: clamp(0.9rem, 2.6vw, 1.7rem); align-items: center; }
.top__link {
  font-weight: 400; font-size: 0.92rem; color: var(--ink-soft);
  white-space: nowrap; padding-bottom: 3px; position: relative;
  transition: color 0.3s var(--ease);
}
.top__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--butter); transition: right 0.35s var(--ease);
}
.top__link:hover { color: var(--ink); }
.top__link:hover::after { right: 0; }
/* 지금 보고 있는 페이지 */
.top__link--on { color: var(--ink); font-weight: 700; }
.top__link--on::after { right: 0; }
/* 로고 옆 — 지금 어느 페이지인지 */
.top__brand { display: flex; align-items: center; gap: 0; margin: 0; min-width: 0; }
.top__here {
  font-weight: 400; font-size: 0.86rem; letter-spacing: 0.02em;
  color: var(--ink-soft); white-space: nowrap;
}
.top__here::before { content: "·"; margin: 0 0.5rem; color: var(--ink-faint); }
.top__ask {
  font-weight: 400; font-size: 0.88rem; letter-spacing: 0.02em;
  background: var(--butter); color: var(--ink);
  padding: 0.5rem 1.15rem; border-radius: 999px;
  box-shadow: 0 2px 6px rgba(43,42,38,0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.top__ask:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(43,42,38,0.18); }
@media (max-width: 620px) {
  .top { padding: 1.1rem var(--pad); }
  .top__links .top__link:not(.top__link--key):not(.top__link--on) { display: none; }
  .top__here { font-size: 0.78rem; }
  .top__here::before { margin: 0 0.35rem; }
  .top__links { gap: 0.9rem; }
  .top__ask { padding: 0.45rem 0.95rem; font-size: 0.84rem; }
}

/* ── 버튼 — 둘 다 살아 움직인다 ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 400; font-size: 0.98rem; letter-spacing: 0.02em;
  padding: 1rem 2rem; border-radius: 999px; border: 0; cursor: pointer;
  font-family: var(--a2z);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.btn i { font-style: normal; transition: transform 0.35s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn--ink { background: var(--joy); color: #F5FAFF; box-shadow: 0 3px 10px rgba(0,102,179,0.28); }
.btn--ink:hover { background: var(--joy-deep); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,102,179,0.36); }
.btn--kakao { background: var(--butter); color: var(--ink); box-shadow: 0 3px 10px rgba(43,42,38,0.14); }
.btn--kakao:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(226,167,25,0.34); }
.btn--coral { background: var(--coral); color: #FFF6EE; box-shadow: 0 3px 10px rgba(226,96,60,0.24); }
.btn--coral:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(226,96,60,0.34); }
.btn--sm { padding: 0.7rem 1.4rem; font-size: 0.9rem; }
.quiet {
  font-weight: 400; font-size: 0.9rem; color: var(--ink-soft);
  padding-bottom: 3px; position: relative; white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.quiet::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink-faint); transition: background 0.3s var(--ease);
}
.quiet:hover { color: var(--ink); }
.quiet:hover::after { background: var(--ink); }

/* ── ① 히어로 — 환대가 먼저, 바로 들어가게 ── */
.hero {
  min-height: 100svh; position: relative;
  display: grid; grid-template-columns: 1fr;
  align-items: stretch; align-content: center;
  padding: 6.6rem var(--pad) 0;
}
.hero__in {
  justify-self: start; width: 100%;
  max-width: 44rem; padding: 2.4rem 0 3.5rem;
  /* 넓은 화면에서 다른 섹션과 왼쪽 시작선을 맞춘다 */
  margin-left: max(0px, calc((100vw - var(--wide)) / 2));
}
/* 오른쪽 — 놀이터. 한나님이 그린 미끄럼틀 위에서 논다.
   .ride 안에서 캐릭터 위치를 미끄럼틀 기준(%)으로 잡아 정확히 '위에' 앉힌다. */
.hero__stage { position: relative; order: -1; min-height: 0; }
.playground { position: relative; margin: clamp(20px, 3.5svh, 44px) auto; }
.sl { display: block; width: 100%; height: auto; }

.ride { position: absolute; }
.ride .rider { position: absolute; width: auto; height: auto; filter: drop-shadow(0 6px 12px rgba(43,42,38,0.22)); }

/* ① 주황 스프링 — 뭉이가 오른쪽 아치 위에 */
.ride--1 { width: 60%; top: 3%; left: 4%; animation: slSway 9s ease-in-out infinite; }
.ride--1 .rider { width: 26%; left: 52%; bottom: 72%; animation: ride1 3.8s ease-in-out infinite; }
/* ② 노랑 S자 — 도리가 꼭대기, 사다리 옆에서 막 출발 */
.ride--2 { width: 42%; top: 22%; right: 2%; animation: slSway 11s ease-in-out infinite 0.7s; }
.ride--2 .rider { width: 30%; left: 20%; bottom: 36%;   animation: ride2 4.6s ease-in-out infinite; }
/* ③ 초록 물결 — 점피가 첫 마루 위에 */
.ride--3 { width: 62%; bottom: 6%; left: 0; animation: slSway 12s ease-in-out infinite 1.4s; }
.ride--3 .rider { width: 24%; left: 22%; bottom: 80%;   animation: ride3 4.2s ease-in-out infinite; }

/* 나머지 미끄럼틀은 작게, 뒤에서 */
.sl--d1, .sl--d2, .sl--d3 { position: absolute; opacity: 0.9; }
.sl--d1 { width: 28%; top: 3%;    right: 1%; animation: slSway 10s ease-in-out infinite 2s; }
.sl--d2 { width: 36%; top: 27%;   left: 12%; transform: scaleX(-1); animation: slSwayFlip 13s ease-in-out infinite 0.3s; }
.sl--d3 { width: 26%; bottom: 19%; right: 3%; animation: slSway 11s ease-in-out infinite 1.8s; }

@keyframes slSway { 0%,100% { transform: rotate(-1deg); } 50% { transform: rotate(1deg); } }
@keyframes slSwayFlip { 0%,100% { transform: scaleX(-1) rotate(-1deg); } 50% { transform: scaleX(-1) rotate(1deg); } }
@keyframes slTilt { 0%,100% { transform: scaleX(-1) rotate(15deg); } 50% { transform: scaleX(-1) rotate(19deg); } }
@keyframes ride1 { 0%,100% { transform: translate(0,0) rotate(-6deg); } 50% { transform: translate(11%, -9%) rotate(8deg); } }
@keyframes ride2 { 0%,100% { transform: translate(0,0) rotate(5deg); }  50% { transform: translate(-10%, 7%) rotate(-7deg); } }
@keyframes ride3 { 0%,100% { transform: translate(0,0) rotate(-5deg); } 50% { transform: translate(13%, 7%) rotate(7deg); } }
.hero__tag {
  display: inline-block; margin-bottom: 1.6rem; white-space: nowrap;
  background: var(--butter); color: var(--ink);
  font-weight: 400; font-size: clamp(0.78rem, 1.5vw, 0.9rem); letter-spacing: 0.04em;
  padding: 0.5rem 1.15rem; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(43, 42, 38, 0.18);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.hero__tag:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(43, 42, 38, 0.26); }

/* 넓은 화면 — 놀이터가 가로로 넓어지니 미끄럼틀은 작게, 멀리 흩어놓는다 */
@media (min-width: 881px) {
  .hero__in { padding-top: 3.6rem; }
  /* 고정 비율 무대 — 어느 화면에서든 그림 배치가 그대로 유지된다 */
  .playground { max-width: 1440px; aspect-ratio: 3 / 1; margin-top: clamp(36px, 6svh, 64px); margin-bottom: clamp(28px, 5svh, 56px); }
  /* 칸을 나눠 서로 겹치지 않게 — 윗줄(주황·파랑·자주) / 오른쪽(노랑) / 아랫줄(초록·분홍) */
  /* 과감하게 — 무대를 가득 채우고, 가장자리 밖으로 살짝 뻗는다 */
  .ride--1 { width: 34%; top: -4%;  left: -2%; }   /* 주황 — 왼쪽 밖으로 */
  .ride--2 { width: 32%; top: -5%;  right: -3%; }  /* 노랑 — 가장 크게, 놀이터의 주인공 */
  .ride--3 { width: 34%; bottom: 0;  left: 17%; }  /* 초록 — 화면의 중심축 */
  .sl--d1 { width: 22%; top: 0;     left: 34%; right: auto; }  /* 자주 */
  .sl--d2 { width: 18%; top: -8%; left: 59%; right: auto; bottom: auto;
    animation: slTilt 12s ease-in-out infinite 0.3s; } /* 파랑 — 노랑 아치 안쪽에 비스듬히 */
  .sl--d3 { width: 22%; top: 34%; right: 30%; left: auto; bottom: auto;
    animation: slSwayFlip 11s ease-in-out infinite 1.8s; } /* 핑크 — 초록과 노랑을 잇는 다리 */
}

@media (max-width: 880px) {
  .hero { padding: 5.2rem var(--pad) 0; }
  .playground { max-width: 560px; aspect-ratio: 5 / 4; }
  .hero__in { justify-self: stretch; max-width: none; padding: 2.4rem 0 3.2rem; }
  .ride--1 { width: 56%; top: 2%; left: 2%; }
  .ride--2 { width: 36%; top: 20%; right: 1%; }
  .ride--3 { width: 58%; bottom: 4%; left: 0; }
  .sl--d1 { width: 24%; top: 2%; right: 1%; }
  .sl--d2 { display: none; }  /* 좁은 화면에선 초록과 겹쳐서 뺀다 */
  .sl--d3 { width: 20%; bottom: 2%; right: 2%; }
}

/* 워드마크 — 인조이풀. 로고의 파랑 위에, JOY 자리에만 노란 하이라이트 */
.wordmark { display: table; }
.wordmark .wm-ko {
  display: block; font-weight: 700; color: var(--joy);
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  line-height: 1.04; letter-spacing: -0.03em;
}
.wordmark .wm-ko span {
  display: inline-block; opacity: 0; position: relative;
  animation: place 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.15) forwards;
}
.wordmark .wm-ko span:nth-child(1) { animation-delay: 0.04s; }
.wordmark .wm-joy {
  animation-delay: 0.16s;
  box-shadow: inset 0 -0.26em 0 var(--butter);
}
.wordmark .wm-ko span:nth-child(3) { animation-delay: 0.28s; }
/* 영문 표기는 작게 — 로고를 그대로 옮겨온 자리 */
/* 영문은 한글 '인조이풀'과 같은 폭에 고르게 펴 놓는다 — 두 줄이 한 덩어리로 읽히게 */
.wordmark .wm-en {
  display: flex; justify-content: space-between;
  width: 100%; margin-top: 0.55rem;
  font-weight: 400; font-size: clamp(0.9rem, 2vw, 1.22rem);
  letter-spacing: 0; color: var(--ink-soft);
  opacity: 0; animation: place 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.15) 0.4s forwards;
}
.wordmark .wm-en i { font-style: normal; display: block; }
/* 콜론은 눈이라서, 가끔 깜빡인다 */
.wordmark .wm-en .wm-dot {
  color: var(--butter-deep, #D9A93B);
  animation: blink 6s ease-in-out 2.6s infinite;
}
@keyframes blink {
  0%, 94%, 100% { transform: scaleY(1); }
  97%           { transform: scaleY(0.12); }
}
@keyframes place {
  from { opacity: 0; transform: translateY(18px) rotate(-3deg); }
  to   { opacity: 1; transform: none; }
}
.hero h1 {
  margin-top: 1.9rem; font-weight: 400; color: var(--joy);
  font-size: clamp(1.7rem, 4.4vw, 2.9rem);
  letter-spacing: 0.005em; line-height: 1.34;
  opacity: 0; animation: fade 0.6s ease-out 0.42s forwards;
}
/* 한글 우선 + 작은 영문 병기 */
.en { display: block; margin-top: 0.5rem; font-weight: 400; font-size: 0.68em; letter-spacing: 0.06em; color: var(--ink-faint); }
.eyebrow .en, i .en { display: inline; margin: 0 0 0 0.5em; font-size: 0.92em; }
.hero__en {
  margin-top: 1.1rem; font-weight: 300; color: var(--ink-soft);
  font-size: clamp(0.85rem, 1.9vw, 0.96rem); letter-spacing: 0.03em;
  opacity: 0; animation: fade 0.6s ease-out 0.55s forwards;
}
.foot__flag .en { font-size: 0.82em; }
.hero__sub {
  margin-top: 1.5rem; font-weight: 300; color: var(--ink-soft);
  font-size: clamp(0.98rem, 2.3vw, 1.1rem);
  max-width: 48rem; /* 데스크톱에선 한 줄, 좁은 화면에선 자연스럽게 접힘 */
  opacity: 0; animation: fade 0.6s ease-out 0.6s forwards;
}
.hero__cta {
  margin-top: 2.8rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fade 0.6s ease-out 0.6s forwards;
}
/* 바로 들어가는 문 — 스크롤하지 않아도 갈 곳이 보인다 */
.hero__doors {
  margin-top: 1.7rem; display: flex; gap: clamp(1rem, 2.4vw, 1.8rem); flex-wrap: wrap;
  opacity: 0; animation: fade 0.6s ease-out 0.78s forwards;
}
.hero__doors a {
  font-weight: 400; font-size: 0.92rem; color: var(--ink-soft);
  padding-bottom: 3px; position: relative; white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.hero__doors a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink-faint); transition: background 0.3s var(--ease);
}
.hero__doors a:hover { color: var(--ink); }
.hero__doors a:hover::after { background: var(--ink); }
@keyframes fade { to { opacity: 1; } }

/* ── 고객의 한 문장 ── */
.voice {
  padding: clamp(4.5rem, 12vh, 8rem) var(--pad); text-align: center;
}
.voice blockquote {
  font-weight: 300; font-size: clamp(1.2rem, 3.4vw, 2rem);
  line-height: 1.7; max-width: 52rem; margin: 0 auto;
}
.voice cite {
  display: block; margin-top: 1.5rem; font-style: normal;
  font-weight: 400; font-size: 0.82rem; letter-spacing: 0.2em; color: var(--ink-soft);
}
.voice > .eyebrow { margin-bottom: 1.6rem; }
/* 말이 바뀔 때 — 잠깐 사라졌다가 다음 말이 온다 */
.voice blockquote { cursor: pointer; transition: opacity 0.55s ease, transform 0.55s ease; }
.voice blockquote.is-swapping { opacity: 0; transform: translateY(6px); }
.voice blockquote span { display: block; min-height: 2.6em; }

/* ── ② 이번 시즌 ── */
.season { background: var(--butter-soft); padding: clamp(3.6rem, 9vh, 5.8rem) var(--pad); }
.season__in { max-width: calc(var(--wide) - 2 * var(--pad)); margin: 0 auto; }
.season__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; }
.season__head h2 { font-weight: 400; font-size: clamp(1.7rem, 4.8vw, 2.9rem); line-height: 1.4; letter-spacing: 0.01em; }
.season__head h2 b { font-weight: 700; }
.season__head .lead { margin-top: 0.7rem; max-width: 34rem; }
.season__drops { margin-top: 2.6rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2.2vw, 24px); }
@media (max-width: 760px) { .season__drops { grid-template-columns: 1fr; max-width: 28rem; margin-left: auto; margin-right: auto; } }
.drop {
  background: var(--card); border-radius: 3px; padding: clamp(1.5rem, 2.2vw, 2rem) clamp(1.4rem, 2vw, 1.9rem);
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 0.35rem;
  border-top: 6px solid var(--ink-faint);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.drop:nth-child(1) { border-top-color: var(--coral); }
.drop:nth-child(2) { border-top-color: var(--butter); }
.drop:nth-child(3) { border-top-color: var(--teal); }
.drop:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(43,42,38,0.12); }
.drop i { font-style: normal; font-weight: 400; font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-soft); }
.drop b { font-weight: 700; font-size: clamp(1.14rem, 1.6vw, 1.32rem); letter-spacing: 0.01em; }
.drop span { font-weight: 300; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; }
.season__more { margin-top: 2.2rem; display: flex; justify-content: center; }

/* ── ③ 세 갈래 ── */
.ways { padding: clamp(4rem, 10vh, 7rem) var(--pad); max-width: var(--wide); margin: 0 auto; }
.ways__head { text-align: center; }
.ways__head .lead { margin-top: 0.7rem; }
.ways__grid { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); align-items: stretch; }
@media (max-width: 900px) { .ways__grid { grid-template-columns: 1fr; max-width: 30rem; margin-left: auto; margin-right: auto; } }
.wcard {
  position: relative; background: var(--card); border-radius: 3px;
  box-shadow: var(--shadow); padding: 1.9rem clamp(1.5rem, 2vw, 1.9rem) 1.6rem;
  display: flex; flex-direction: column; color: inherit;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wcard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; border-radius: 3px 3px 0 0; }
.wcard--kids::before { background: var(--coral); }
.wcard--club::before { background: var(--butter); }
.wcard--org::before { background: var(--teal); }
/* 놀이터 — 만지면 살짝 기울며 떠오른다 */
.wcard:hover { transform: translateY(-5px) rotate(-0.5deg); box-shadow: 0 18px 40px rgba(43,42,38,0.13); }
.wcard--club:hover { transform: translateY(-5px) rotate(0.5deg); }
.wcard i { font-style: normal; font-weight: 400; font-size: 0.74rem; letter-spacing: 0.22em; color: var(--ink-soft); }
.wcard h3 { font-weight: 700; font-size: clamp(1.28rem, 1.8vw, 1.45rem); letter-spacing: 0.01em; margin: 0.5rem 0 0.7rem; }
.wcard p { font-weight: 300; font-size: 0.93rem; color: var(--ink-soft); line-height: 1.8; flex: 1; }
.wcard p b { font-weight: 700; color: var(--ink); }
.wcard__meta {
  display: block; margin-top: 1.1rem; padding-top: 0.9rem;
  border-top: 1px solid rgba(43,42,38,0.1);
  font-weight: 300; font-size: 0.82rem; color: var(--ink-faint); line-height: 1.75;
}
.wcard__go {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.1rem; font-weight: 400; font-size: 0.9rem; color: var(--ink);
}
.wcard__go i { font-style: normal; letter-spacing: 0; font-size: 1em; color: inherit; transition: transform 0.35s var(--ease); }
.wcard:hover .wcard__go i { transform: translateX(4px); }
.ways__ask { margin-top: 2rem; text-align: center; font-weight: 300; font-size: 0.92rem; color: var(--ink-soft); }

/* ── ④ 깃발 ── */
.flag { padding: clamp(4.5rem, 12vh, 8rem) var(--pad); max-width: 64rem; margin: 0 auto; text-align: center; }
.flag h2 { font-weight: 400; font-size: clamp(1.5rem, 4.4vw, 2.8rem); line-height: 1.65; letter-spacing: 0.01em; }
.flag h2 b { font-weight: 700; }
.flow { margin-top: 2.8rem; display: flex; justify-content: center; align-items: center; gap: clamp(0.5rem, 2vw, 1.1rem); flex-wrap: wrap; }
.flow b { font-weight: 400; font-size: clamp(0.98rem, 2.6vw, 1.2rem); padding: 0.28rem 1rem; border-radius: 2px; letter-spacing: 0.04em; }
.flow b:nth-of-type(1) { background: var(--coral-soft); }
.flow b:nth-of-type(2) { background: var(--butter-soft); }
.flow b:nth-of-type(3) { background: var(--teal-soft); }
.flow b:nth-of-type(4) { background: var(--coral-soft); }
.flow i { font-style: normal; color: var(--ink-faint); font-size: 0.85em; }
.flow__note { margin-top: 1.3rem; font-weight: 300; font-size: 0.92rem; color: var(--ink-soft); }

/* ── ⑤ 여정 — 레이어가 쌓인다 ── */
.journey { background: var(--teal-soft); padding: clamp(3.6rem, 9vh, 5.8rem) var(--pad); }
.journey__in { max-width: calc(var(--wide) - 2 * var(--pad)); margin: 0 auto; }
.journey__head { text-align: center; }
.journey__grid { margin-top: 2.6rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2.2vw, 26px); }
@media (max-width: 800px) { .journey__grid { grid-template-columns: 1fr; max-width: 28rem; margin-left: auto; margin-right: auto; } }
.jstep { position: relative; background: var(--card); border-radius: 3px; box-shadow: var(--shadow); padding: clamp(1.7rem, 2.4vw, 2.2rem) clamp(1.5rem, 2vw, 1.9rem); }
.jstep__layers { display: flex; gap: 5px; margin-bottom: 0.9rem; }
.jstep__layers span { height: 7px; border-radius: 2px; flex: 1; max-width: 34px; }
.jstep i { font-style: normal; font-weight: 400; font-size: 0.74rem; letter-spacing: 0.2em; color: var(--ink-soft); }
.jstep b { display: block; margin-top: 0.4rem; font-weight: 700; font-size: 1.08rem; line-height: 1.55; }
.jstep p { margin-top: 0.5rem; font-weight: 300; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.8; }
.journey__more { margin-top: 2rem; text-align: center; }

/* ── ⑥ 감각검진 — 한 화면을 통째로 써서 시선을 잡는다 ── */
.checkup { background: var(--ink); color: #F6F1E5; padding: clamp(4.5rem, 13vh, 8rem) var(--pad); }
.checkup__in {
  max-width: calc(var(--wide) - 2 * var(--pad)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
@media (max-width: 860px) { .checkup__in { grid-template-columns: 1fr; } }
.checkup__eyebrow { font-weight: 400; font-size: 0.76rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--butter); }
.checkup h2 { margin-top: 1.2rem; font-weight: 400; font-size: clamp(1.8rem, 5vw, 3rem); line-height: 1.38; letter-spacing: 0.01em; }
.checkup__sub { margin-top: 1.4rem; font-weight: 300; font-size: clamp(0.92rem, 2vw, 1rem); line-height: 1.95; color: rgba(246,241,229,0.72); max-width: 34rem; }
.checkup__dots { margin-top: 1.9rem; display: flex; gap: 0.7rem; }
.checkup__dots span { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 9px rgba(43,42,38,0.14); }
.checkup__dots svg { width: 21px; height: 21px; fill: #fff; }
.checkup__dots .more { background: none; border: 2px dashed rgba(43,42,38,0.22); color: var(--ink-faint); font-size: 1.15rem; font-weight: 300; box-shadow: none; }
.checkup__cta { justify-self: end; }
@media (max-width: 860px) { .checkup__cta { justify-self: start; } }


/* ── ⑦ 문의 ── */
.meet { background: var(--coral-soft); padding: clamp(4.5rem, 12vh, 7.5rem) var(--pad); text-align: center; }
.meet blockquote { font-weight: 400; font-size: clamp(1.9rem, 6.4vw, 3.6rem); line-height: 1.5; letter-spacing: 0.01em; }
.meet cite { display: block; margin-top: 1.3rem; font-style: normal; font-weight: 400; font-size: 0.82rem; letter-spacing: 0.2em; color: var(--ink-soft); }
.meet__cta { margin-top: 2.6rem; display: flex; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap; }
.meet__note { margin-top: 1.6rem; font-weight: 300; font-size: 0.86rem; color: var(--ink-soft); }
.meet__ways { margin-top: 1.4rem; font-weight: 300; font-size: 0.88rem; color: var(--ink-soft); display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── 푸터 ── */
.foot { border-top: 1px solid rgba(43,42,38,0.1); padding: 3rem var(--pad) 2.6rem; text-align: center; font-weight: 300; font-size: 0.86rem; color: var(--ink-soft); }
.foot__flag { color: var(--ink); font-weight: 400; font-size: 0.98rem; }
.foot address { font-style: normal; margin-top: 1.1rem; }
.foot__links { margin-top: 0.8rem; display: flex; justify-content: center; gap: 1.1rem; flex-wrap: wrap; }
.foot__links a { font-weight: 400; font-size: 0.86rem; white-space: nowrap; transition: color 0.3s; }
.foot__links a:hover { color: var(--ink); }
.foot__copy { margin-top: 1.7rem; font-weight: 100; font-size: 0.78rem; letter-spacing: 0.22em; }

/* ============================================================
   메뉴판 페이지 — 고급 레스토랑
   ============================================================ */
.menu { max-width: 44rem; margin: 0 auto; padding: 8.5rem var(--pad) 4rem; }
.menu__head { text-align: center; }
.menu__head .eyebrow { display: block; }
.menu__head h1 { margin-top: 1.1rem; font-weight: 400; font-size: clamp(1.9rem, 5.6vw, 2.9rem); letter-spacing: 0.04em; }
.menu__rule { margin: 1.6rem auto 0; width: 54px; height: 1px; background: var(--ink-faint); }
.menu__note { margin-top: 1.5rem; font-weight: 300; font-size: 0.94rem; color: var(--ink-soft); line-height: 1.9; }
.menu__section { margin-top: clamp(3rem, 8vh, 4.5rem); }
.menu__section > .eyebrow { display: block; text-align: center; }
.menu__list { list-style: none; padding: 0; margin: 1.8rem 0 0; }
.menu__list li + li { margin-top: 0.3rem; }
.mrow { display: flex; align-items: baseline; gap: 0.9rem; padding: 1rem 0.3rem; width: 100%; }
.mrow__name { font-weight: 400; font-size: clamp(1.02rem, 2.8vw, 1.16rem); letter-spacing: 0.04em; white-space: nowrap; }
.mrow__dots { flex: 1; min-width: 1.5rem; border-bottom: 1px dotted var(--ink-faint); transform: translateY(-0.3em); }
.mrow__desc { font-weight: 300; font-size: 0.88rem; color: var(--ink-soft); text-align: right; }
a.mrow { border-radius: 2px; transition: background 0.35s var(--ease); }
a.mrow:hover { background: rgba(43,42,38,0.035); }
a.mrow .mrow__name { transition: color 0.3s var(--ease); }
a.mrow:hover .mrow__name { color: var(--coral); }
a.mrow .mrow__arrow { font-style: normal; color: var(--ink-faint); transition: transform 0.35s var(--ease), color 0.3s; display: inline-block; }
a.mrow:hover .mrow__arrow { color: var(--coral); transform: translateX(4px); }
.mrow--soon .mrow__name { color: var(--ink-faint); }
.mrow--soon .mrow__desc { color: var(--ink-faint); }
.menu__foot { margin-top: clamp(3rem, 8vh, 4.5rem); text-align: center; }
.menu__foot p { font-weight: 300; font-size: 0.92rem; color: var(--ink-soft); }
.menu__foot .btn { margin-top: 1.5rem; }

/* ============================================================
   글 페이지
   ============================================================ */
.article { max-width: 40rem; margin: 0 auto; padding: 8rem var(--pad) 4rem; }
.article__label { font-weight: 400; font-size: 0.76rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }
.article h1 { margin-top: 0.9rem; font-weight: 400; font-size: clamp(1.6rem, 5vw, 2.4rem); line-height: 1.5; letter-spacing: 0.01em; }
.article__rule { margin-top: 1.4rem; width: 48px; height: 1px; background: var(--butter); }
.article__meta { margin-top: 0.9rem; font-weight: 300; font-size: 0.84rem; color: var(--ink-soft); }
.article__body { margin-top: 3rem; font-weight: 300; font-size: 1.02rem; line-height: 2.05; }
.article__body p { margin: 0 0 1.5em; }
.article__body h2 { font-weight: 700; font-size: 1.15rem; letter-spacing: 0.01em; margin: 2.6em 0 1em; }
.article__sign { margin-top: 3rem; font-weight: 300; font-size: 0.9rem; color: var(--ink-soft); }
.article__origin { margin-top: 2.4rem; font-weight: 300; font-size: 0.86rem; color: var(--ink-soft); }
.article-next { background: var(--butter-soft); padding: clamp(3rem, 8vh, 4.5rem) var(--pad); }
.article-next__in { max-width: 40rem; margin: 0 auto; }
.article-next__cta { margin-top: 1.8rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-weight: 300; font-size: 0.9rem; color: var(--ink-soft); }

/* ── 메뉴판 코스 ── */
.menu__course { margin-top: 0.7rem; text-align: center; font-weight: 700; font-size: clamp(1.15rem, 3vw, 1.4rem); letter-spacing: 0.02em; }
.menu__desc { margin-top: 0.4rem; text-align: center; font-weight: 300; font-size: 0.9rem; color: var(--ink-soft); }
.menu__section .menu__list { margin-top: 1.4rem; }
.menu__section .menu__more { margin-top: 1.1rem; text-align: center; }

/* ── ② 저는 이런 사람이에요 — 환대는 주인이 먼저 나오는 것 ── */
.host { padding: clamp(3.5rem, 9vh, 6rem) var(--pad); max-width: var(--wide); margin: 0 auto; }
.host__in {
  display: grid; grid-template-columns: minmax(0, 1fr) clamp(190px, 19vw, 250px);
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
/* 글이 먼저, 사진은 오른쪽 — 왼쪽 시작선을 다른 섹션과 맞춘다 */
.host__text { grid-column: 1; grid-row: 1; max-width: 48rem; }
.host__art  { grid-column: 2; grid-row: 1; width: 100%; margin-top: 0.4rem; }
@media (max-width: 820px) {
  .host__in { grid-template-columns: 1fr; gap: 1.8rem; }
  .host__text, .host__art { grid-column: 1; grid-row: auto; }
  .host__art { max-width: 210px; margin: 0 auto; }
}
.host__art:not(.host__art--cut) img {
  width: 100%; height: auto; aspect-ratio: 1; object-fit: cover;
  border-radius: 50%; display: block;
  box-shadow: 0 10px 30px rgba(43,42,38,0.14);
}
.host__text h2 { margin-top: 0.9rem; font-weight: 400; font-size: clamp(1.6rem, 4.2vw, 2.5rem); line-height: 1.42; letter-spacing: 0.01em; }
.host__text h2 b { font-weight: 700; }
.host__d { margin-top: 1.1rem; font-weight: 300; font-size: clamp(0.95rem, 2.1vw, 1.02rem); line-height: 2; color: var(--ink-soft); }
.host__d b { font-weight: 700; color: var(--ink); }
.host__cta { margin-top: 1.8rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }

/* ── 세 갈래 카드에 얹은 원형 캐릭터 ── */
.wcard__art {
  display: flex; align-items: center; justify-content: center;
  width: 84px; height: 84px; border-radius: 50%; margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(43,42,38,0.1);
}
.wcard__art img { width: 74%; height: auto; }
.wcard:hover .wcard__art img { animation: cardHop 0.9s ease-in-out; }
@keyframes cardHop { 0%,100% { transform: translateY(0) rotate(0); } 40% { transform: translateY(-7px) rotate(-6deg); } 70% { transform: translateY(0) rotate(4deg); } }

.hero h1 b { font-weight: 700; }
.hero__sub b { font-weight: 700; color: var(--ink); }

/* ── 인트로 — 세 친구가 뛰어 들어왔다가, 놀이터로 ── */
.opening {
  position: fixed; inset: 0; z-index: 200; background: var(--paper);
  display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: pointer;
  animation: openLift 0.75s cubic-bezier(0.4, 0, 0.2, 1) 1.75s forwards;
}
.opening__run {
  display: flex; align-items: flex-end; gap: clamp(16px, 5vw, 56px);
  animation: runIn 2.1s cubic-bezier(0.25, 0.6, 0.35, 1) forwards;
}
.opening__run img {
  width: clamp(62px, 12vw, 132px); height: auto;
  filter: drop-shadow(0 10px 18px rgba(43,42,38,0.16));
}
.opening__run img:nth-child(1) { animation: hop 0.5s ease-in-out infinite; }
.opening__run img:nth-child(2) { animation: hop 0.5s ease-in-out infinite 0.16s; }
.opening__run img:nth-child(3) { animation: hop 0.5s ease-in-out infinite 0.32s; }
@keyframes runIn  { from { transform: translateX(-62vw); } to { transform: translateX(8vw); } }
@keyframes hop    { 0%,100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-22%) rotate(5deg); } }
@keyframes openLift { to { opacity: 0; visibility: hidden; } }
@media (prefers-reduced-motion: reduce) { .opening { display: none; } }

/* ── 왜 이 공간을 열었나 ── */
.why { margin: 2.6rem auto 0; max-width: 46rem; text-align: left; }
.why p { font-weight: 300; font-size: clamp(0.95rem, 2.2vw, 1.04rem); line-height: 2.05; color: var(--ink-soft); }
.why p + p { margin-top: 1.1rem; }
.why b { font-weight: 700; color: var(--ink); }

/* ── 스마일 마크 — 좁은 화면의 네브바, 그리고 페이지 끝 서명 ── */
.top__mark { display: none; height: 34px; width: auto; }
@media (max-width: 620px) {
  .top__logo { display: none; }
  .top__mark { display: block; }
}
.foot__mark { width: clamp(44px, 6vw, 56px); height: auto; margin: 0 auto 1.3rem; opacity: 0.92; }

/* 푸터 서명 — 가로형 로고 */
.foot__logo { width: clamp(180px, 22vw, 260px); height: auto; margin: 0 auto 1.4rem; opacity: 0.95; }

/* 어른들의 90분 — 취미반이 아닌 이유, 한 줄씩 */
.say__list { list-style: none; margin: 2.2rem auto 0; max-width: 42rem; padding: 0; text-align: left; }
.say__list li { padding: 1.1rem 0 1.1rem 1.6rem; position: relative; border-top: 1px dashed rgba(43,42,38,0.16); font-weight: 300; font-size: clamp(1rem, 2.3vw, 1.1rem); line-height: 1.85; color: var(--ink-soft); }
.say__list li:last-child { border-bottom: 1px dashed rgba(43,42,38,0.16); }
.say__list li::before { content: ""; position: absolute; left: 0.1rem; top: 1.75rem; width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--teal); }
.say__list b { font-weight: 400; color: var(--ink); }

/* ── 줄바꿈 — 제목·리드·인용은 두 줄을 고르게, 본문은 외톨이 단어 없이 ── */
h1, h2, h3, .title, .lead, .eyebrow, .hero h1, .hero__en, .voice blockquote, .meet blockquote,
.flag h2, .season__head h2, .checkup h2, .wcard h3, .drop b, .step b, .lang b, .jstep b,
.fhero h1, .fhero__sub, .mon__t, .ses__t, .oneday h3, .rcard__type, .quiz h1, .bhero h1, .say .lead { text-wrap: balance; }
p, li, .host__d, .why p, .quiz__sub, .quiz__more, .steps__note, .meet__note, .wcard p, .step p, .lang p, .jstep p, .ses__d, .rcard__desc, .say__list li { text-wrap: pretty; }

/* 출처가 없는 말은 출처 줄을 접는다 */
.voice cite:empty { display: none; }

/* 감각 스위치의 색 — 시각 스위치의 분홍 */
.btn--pink { background: #E86F92; color: #FFF7F9; box-shadow: 0 3px 10px rgba(232,111,146,0.32); }
.btn--pink:hover { background: #E05C83; }

/* ── nav-dots: 네브·푸터 글자는 작게, 갈 곳마다 그 자리의 색점 하나 ── */
.top__link { font-size: 0.86rem; }
.foot__links a { font-size: 0.8rem; }
.top__link::before, .foot__links a::before {
  content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  margin-right: 0.38rem; vertical-align: 0.12em; background: rgba(43,42,38,0.18);
}
.top__link[href="/fall/"]::before,  .foot__links a[href="/fall/"]::before  { background: #E9612B; }  /* 가을 프로그램 — 주황 */
.top__link[href="/club/"]::before,  .foot__links a[href="/club/"]::before  { background: #4E9084; }  /* 어른들 — 청록 */
.top__link[href="/about/"]::before, .foot__links a[href="/about/"]::before { background: #0066B3; }  /* 소개 — 인조이풀 블루 */
.top__link[href="/menu/"]::before,  .foot__links a[href="/menu/"]::before  { background: #F2C94C; }  /* 행복상자 — 노랑 */
.top__link[href="/test/"]::before,  .foot__links a[href="/test/"]::before  { background: #E86F92; }  /* 감각 스위치 — 분홍 */
.foot__links a[href^="https://popfolio"]::before { background: #7C6BC9; }
.foot__links a[href="/letters/"]::before { background: #B85C8A; }
.top__link[href="/en/"]::before, .foot__links a[href="/en/"]::before, .foot__links a[href="/"]::before,
.foot__links a[href^="https://blog"]::before, .foot__links a[href^="https://www.instagram"]::before, .foot__links a[href^="https://pf.kakao"]::before { display: none; }

/* ── 스마일 마크 — 작은 서명처럼 ── */
.mark-xs { width: 16px; height: 16px; vertical-align: -3px; margin-right: 0.3rem; }
.mark-sm { width: 26px; height: 26px; vertical-align: -6px; margin-left: 0.35rem; }
.mark-md { display: block; width: clamp(44px, 5vw, 60px); height: auto; margin-bottom: 1rem; }
.mark-md--c { margin-left: auto; margin-right: auto; }

/* 제목 앞 마크 — 글자 크기와 같게 */
.mark-h { display: inline-block; width: 1em; height: 1em; max-width: 1em; object-fit: contain; vertical-align: -0.1em; margin-right: 0.3em; }

/* ── 소개 사진 — 원 대신 콜라주 스티커: 배경을 떼어낸 사람 + 손으로 오린 듯한 종이 한 장 + 도리 ── */
.host__art--cut { position: relative; padding: 6% 4% 0; margin-top: 0; }
.host__art--cut::before {
  content: ""; position: absolute; inset: 10% -2% 4% 2%; z-index: 0;
  background: var(--butter-soft, #F8ECC8);
  border-radius: 58% 42% 55% 45% / 46% 57% 43% 54%;
  transform: rotate(-4deg);
}
.host__cut {
  position: relative; z-index: 1; display: block; width: 100%; height: auto;
  transform: rotate(-2.5deg);
  filter: drop-shadow(0 10px 18px rgba(43,42,38,0.18));
}
.host__pal {
  position: absolute; z-index: 2; right: -6%; bottom: -4%;
  width: 30%; height: auto; transform: rotate(8deg);
  filter: drop-shadow(0 6px 12px rgba(43,42,38,0.2));
  animation: fhop 5s ease-in-out infinite 0.6s;
}
@media (max-width: 820px) { .host__art--cut { max-width: 240px; } }
@keyframes fhop { 0%,100% { transform: rotate(8deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-6px); } }

.wcard--pop::before { background: var(--teal); }
.wcard--pop:hover { transform: translateY(-5px) rotate(-0.5deg); }

/* 소개 끝 — 두 문으로 보내는 한 줄 */
.host__hook { margin-top: 1.6rem; font-weight: 300; font-size: 0.92rem; color: var(--ink-faint); }
