/* ─────────────────────────────────────────────
   Magenta Catering — 스타일
   컬러: 화이트 베이스 · 크림 섹션 · 마젠타 포인트
   ───────────────────────────────────────────── */
:root {
  --magenta: #B0125B;
  --magenta-dark: #8C0E48;
  --ink: #1C1917;
  --cream: #F7F4EF;
  --cream-deep: #EFEAE2;
  --line: #D6CEC2;
  --line-soft: #EAE4DA;
  --muted: #6B645B;
  --muted-2: #8A8278;
  --body: #5E574F;
  --display: 'Antonio', 'Pretendard', sans-serif;
  --accent: 'Cormorant Garamond', serif;   /* 영문 제목 속 이탤릭 강조 단어 */
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(110px, 12vw, 180px);
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}
img { display: block; max-width: 100%; }
a { color: var(--magenta); text-decoration: none; }
button, input, textarea { font-family: inherit; }
input::placeholder, textarea::placeholder { color: #A39C92; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
body.no-scroll { overflow: hidden; }

/* 공통 타이포 */
.accent { font-family: var(--accent); font-style: italic; font-weight: 500; text-transform: none; letter-spacing: -.01em; font-size: 1.08em; line-height: .8; }
/* 한글은 전부 Pretendard 한 가지로 통일 (세리프는 영문 이탤릭 강조에만) */
.eyebrow { font-family: var(--display); font-size: 18px; letter-spacing: .3em; color: var(--magenta); }
.display { margin: 0; font-family: var(--display); font-weight: 600; line-height: .88; color: var(--magenta); text-transform: uppercase; }
.display--xl { font-size: clamp(72px, 9vw, 140px); }
.display--lg { font-size: clamp(64px, 8.5vw, 136px); }
.sub { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.h2 { margin: 0; font-size: clamp(30px, 3.4vw, 48px); font-weight: 800; letter-spacing: -.035em; line-height: 1.3; text-wrap: balance; }
.lead { margin: 0; font-size: 17px; line-height: 1.85; color: var(--body); }
.center { display: flex; flex-direction: column; align-items: center; text-align: center; }

.wrap { max-width: 1320px; margin: 0 auto; }
.section { padding: var(--section) var(--gutter); }
.section--cream { background: var(--cream); }

/* 버튼 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 52px; padding: 0 30px; border-radius: 999px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn--line { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn--line:hover { background: var(--ink); color: #fff; }
.btn--solid { border: 0; background: var(--magenta); color: #fff; }
.btn--solid:hover { background: var(--magenta-dark); color: #fff; }
.btn .arrow { font-family: var(--display); font-size: 18px; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.chip { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); font-size: 14px; color: var(--body); }

/* ── 헤더 ── */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  color: #fff; border-bottom: 1px solid transparent;
  transition: background .3s, color .3s, border-color .3s;
}
.header.is-scrolled { background: rgba(255,255,255,.96); color: var(--ink); border-color: var(--line-soft); backdrop-filter: blur(8px); }
.header { transition: background .3s, color .3s, border-color .3s, box-shadow .3s; }
.header.has-shadow { box-shadow: 0 6px 24px -14px rgba(28,25,23,.35); }
.header__inner { max-width: 1440px; margin: 0 auto; height: var(--header-h); padding: 0 var(--gutter); display: flex; align-items: center; gap: 32px; }
.logo { position: relative; display: block; flex-shrink: 0; height: 52px; width: 150px; transition: opacity .2s; }
.logo:hover { opacity: .8; }
.logo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity .3s; }
.logo__img--dark { opacity: 0; }
.header.is-scrolled .logo__img--light, .header.menu-open .logo__img--light { opacity: 0; }
.header.is-scrolled .logo__img--dark, .header.menu-open .logo__img--dark { opacity: 1; }
.nav a.is-current::after { transform: scaleX(1); }
.nav { flex: 1; display: flex; justify-content: center; gap: 36px; font-size: 14px; font-weight: 600; letter-spacing: .02em; }
.nav a { color: inherit; position: relative; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px; background: currentColor; transform: scaleX(0); transition: transform .25s; }
.nav a:hover::after { transform: scaleX(1); }
.header__cta { display: flex; gap: 10px; margin-left: auto; flex-shrink: 0; }
.pill { display: flex; align-items: center; gap: 8px; height: 46px; padding: 0 22px; border-radius: 999px; font-size: 14px; font-weight: 700; color: inherit; transition: background .3s, color .3s, border-color .3s; }
.pill--line { border: 1.5px solid currentColor; }
.pill--phone { background: #fff; color: var(--ink); }
.header.is-scrolled .pill--phone { background: var(--ink); color: #fff; }
.pill--phone .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--magenta); }
.menu-btn { display: none; width: 46px; height: 46px; border: 0; background: transparent; color: inherit; cursor: pointer; padding: 0; }
.menu-btn span { display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .3s, opacity .3s; }

/* ── 히어로 ── */
.hero { position: relative; height: 100vh; min-height: 680px; max-height: 1100px; overflow: hidden; background: #2A2320; border-radius: 0 0 0 min(26vw, 360px); }
.hero__slides { position: absolute; inset: 0; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.08); transition: opacity 1.6s ease, transform 7s ease-out; }
.hero__img.is-active { opacity: 1; transform: scale(1); }
.hero__dots { position: absolute; right: clamp(20px, 4vw, 56px); bottom: clamp(28px, 5vh, 48px); z-index: 2; display: flex; gap: 10px; }
.hero__dots button { width: 28px; height: 3px; padding: 0; border: 0; border-radius: 2px; background: rgba(255,255,255,.4); cursor: pointer; transition: width .3s, background .3s; }
.hero__dots button.is-active { width: 52px; background: #fff; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,14,12,.15) 0%, rgba(20,14,12,0) 28%, rgba(20,14,12,0) 42%, rgba(20,14,12,.68) 100%); }
.hero__content { position: absolute; left: 0; right: 0; bottom: clamp(64px, 11vh, 120px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; padding: 0 24px; color: #fff; }
.hero__kicker { font-family: var(--display); font-size: clamp(16px, 1.6vw, 24px); letter-spacing: .28em; }
.hero__title { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(64px, 11vw, 176px); line-height: .88; }
.hero__ko { margin: 6px 0 0; font-size: clamp(20px, 2vw, 28px); font-weight: 800; letter-spacing: -.02em; }
.hero__content .btn { height: 58px; padding: 0 34px; font-size: 16px; margin-top: 14px; }
.hero__line { position: absolute; left: 50%; bottom: 0; width: 1px; height: clamp(28px, 6vh, 56px); background: rgba(255,255,255,.7); }

/* ── 소개 ── */
.intro { padding: clamp(120px, 14vw, 200px) var(--gutter); }
.intro__inner { max-width: 1040px; margin: 0 auto; gap: 40px; }
.intro__statement { margin: 0; font-size: clamp(26px, 3.3vw, 46px); font-weight: 700; line-height: 1.5; letter-spacing: -.03em; text-wrap: balance; }
.intro__statement em { font-style: normal; color: var(--magenta); }
.intro .lead { max-width: 560px; color: var(--muted); }

/* ── 고객사 띠 (자동으로 흐름) ── */
.clients { background: var(--cream); padding: 56px 0; overflow: hidden; }
.clients__label { display: block; text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .08em; color: var(--muted-2); margin-bottom: 32px; }
.marquee { display: flex; width: max-content; animation: marquee 40s linear infinite; }
@media (hover: hover) and (pointer: fine) { .marquee:hover { animation-play-state: paused; } }
.marquee__group { display: flex; align-items: center; gap: clamp(48px, 5vw, 80px); padding-right: clamp(48px, 5vw, 80px); }
.marquee__group img { height: 50px; width: auto; max-width: 320px; object-fit: contain; transition: transform .3s; }
.marquee__group img:hover { transform: scale(1.08); }
.clients__label { font-family: var(--display); font-size: 18px; letter-spacing: .3em; color: var(--magenta); margin-bottom: 40px; }
.clients__label b { display: block; margin-top: 10px; font-family: 'Pretendard', sans-serif; font-size: clamp(22px, 2.2vw, 30px); font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── 철학 ── */
.philo__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(28px, 3vw, 48px); margin-top: clamp(56px, 6vw, 88px); }
.philo__item { gap: 14px; }
.philo__media { width: 100%; aspect-ratio: 4 / 5; border-radius: 28px; overflow: hidden; background: var(--cream-deep); margin-bottom: 14px; }
.philo__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.philo__item:hover .philo__media img { transform: scale(1.04); }
.philo__en { font-family: var(--display); font-weight: 600; font-size: clamp(64px, 6vw, 92px); line-height: .9; color: var(--magenta); }
.philo__ko { margin: 4px 0 0; font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.philo__item p { margin: 0; max-width: 340px; font-size: 16px; line-height: 1.8; color: var(--muted); }

/* ── 서비스 ── */
.services { background: var(--cream); padding: var(--section) 0; }
.services__head { gap: 20px; padding: 0 24px; margin-bottom: clamp(64px, 7vw, 110px); }
.services__list { display: flex; flex-direction: column; gap: clamp(72px, 8vw, 120px); }
.svc { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr)); align-items: center; gap: clamp(40px, 5vw, 80px); }
.svc--left { padding-right: var(--gutter); }
.svc--right { padding-left: var(--gutter); }
.svc__media { position: relative; min-height: clamp(420px, 52vw, 760px); overflow: hidden; background: #E8E1D6; }
.svc--left .svc__media { border-radius: 0 32px 32px 0; }
.svc--right .svc__media { border-radius: 32px 0 0 32px; }
.svc__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc__body { gap: 28px; padding: 0 clamp(20px, 3vw, 40px); }
.svc__no { font-family: var(--display); font-size: 16px; letter-spacing: .3em; }
.svc__body .lead { max-width: 460px; }

/* ── 시그니처 모먼트 (사진 벽) ── */
.moments__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(48px, 5vw, 72px); }
.moments__side { display: flex; flex-direction: column; gap: 16px; max-width: 440px; }
.moments__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, clamp(220px, 22vw, 330px)); gap: clamp(12px, 1.4vw, 20px); }
.moment:first-child { grid-row: span 2; }
.moment { position: relative; display: block; width: 100%; height: 100%; margin: 0; padding: 0; border: 0; border-radius: 24px; overflow: hidden; background: var(--cream-deep); cursor: pointer; opacity: 0; transform: translateY(40px) scale(.98); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.moment.is-in { opacity: 1; transform: none; }
.moment img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .5s; }
@media (max-width: 760px) {
  .moments__grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 44vw; }
  .moment:first-child { grid-column: span 2; grid-row: span 1; }
}
.moment:hover img { transform: scale(1.07); }
.moment__cap { position: absolute; inset: auto 0 0 0; padding: 40px 18px 16px; background: linear-gradient(180deg, transparent, rgba(20,14,12,.75)); color: #fff; text-align: left; display: flex; flex-direction: column; gap: 2px; opacity: 0; transform: translateY(10px); transition: opacity .35s, transform .35s; }
.moment:hover .moment__cap, .moment:focus-visible .moment__cap { opacity: 1; transform: none; }
.moment__cap b { font-size: 13px; font-weight: 700; color: #F3A7C8; }
.moment__cap span { font-size: 16px; font-weight: 800; letter-spacing: -.02em; }
.moment--static { cursor: default; }
@media (hover: none) { .moment__cap { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .moment { opacity: 1; transform: none; } }

/* ── 포트폴리오 캐러셀 ── */
.portfolio { overflow: hidden; }
.pf__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; }
.pf__title { display: flex; flex-direction: column; gap: 18px; }
.pf__side { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; max-width: 380px; }
.pf__side p { margin: 0; font-size: 16px; line-height: 1.8; color: var(--muted); }
.pf__nav { display: flex; gap: 14px; }
.pf__arrow { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--ink); background: transparent; color: var(--ink); font-size: 20px; cursor: pointer; display: grid; place-items: center; transition: background .2s, color .2s; }
.pf__arrow:hover { background: var(--ink); color: #fff; }
.pf__filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: clamp(36px, 4vw, 56px); }
.pf__filter { height: 40px; padding: 0 18px; border-radius: 999px; border: 1.5px solid var(--line); background: transparent; color: var(--body); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; }
.pf__filter:hover { border-color: var(--ink); color: var(--ink); }
.pf__filter.is-active { background: var(--magenta); border-color: var(--magenta); color: #fff; }

.pf__viewport { margin-top: clamp(32px, 3vw, 44px); margin-right: calc(-1 * var(--gutter)); }
.pf__track {
  display: flex; gap: clamp(16px, 2vw, 28px);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-right: var(--gutter); padding-bottom: 8px;
  scrollbar-width: none;
}
.pf__track::-webkit-scrollbar { display: none; }
.pf__card { flex: 0 0 clamp(260px, 26vw, 380px); scroll-snap-align: start; cursor: pointer; text-align: left; border: 0; padding: 0; background: none; color: inherit; }
.pf__img { position: relative; aspect-ratio: 4 / 5; border-radius: 28px; overflow: hidden; background: var(--cream-deep); }
.pf__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.pf__card:hover .pf__img img, .pf__card:focus-visible .pf__img img { transform: scale(1.06); }
.pf__tag { position: absolute; top: 18px; left: 18px; padding: 7px 14px; border-radius: 999px; background: #fff; font-size: 13px; font-weight: 700; color: var(--ink); }
.pf__logos { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.pf__logo { flex-shrink: 0; height: 28px; width: auto; max-width: 104px; object-fit: contain; margin-top: 4px; }
.pf__count { position: absolute; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 999px; background: rgba(28,25,23,.72); color: #fff; font-size: 13px; font-weight: 600; opacity: 0; transform: translateY(6px); transition: all .3s; }
.pf__card:hover .pf__count, .pf__card:focus-visible .pf__count { opacity: 1; transform: none; }
.pf__meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 20px 4px 0; }
.pf__text { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.pf__client { font-size: 14px; font-weight: 700; letter-spacing: -.01em; color: var(--magenta); }
.pf__name { margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -.03em; }
.pf__more { margin-top: 8px; align-self: flex-start; font-family: var(--display); font-size: 15px; letter-spacing: .12em; color: var(--magenta-dark); border-bottom: 1.5px solid currentColor; padding-bottom: 2px; }
.pf__progress { margin-top: 36px; height: 2px; background: var(--line-soft); border-radius: 2px; overflow: hidden; }
.pf__progress span { display: block; height: 100%; width: 0; background: var(--magenta); transition: width .3s; }

/* ── 갤러리 (라이트박스) ── */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; flex-direction: column; background: rgba(18,14,12,.985); color: #fff; }
.lightbox.is-open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } }
.lb__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px var(--gutter); }
.lb__title { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.lb__client { font-size: 14px; font-weight: 700; letter-spacing: -.01em; color: #F3A7C8; }
.lb__name { font-size: 20px; font-weight: 800; letter-spacing: -.02em; }
.lb__right { display: flex; align-items: center; gap: 20px; }
.lb__counter { font-family: var(--display); font-size: 18px; letter-spacing: .1em; opacity: .8; }
.lb__close { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); background: transparent; color: #fff; font-size: 22px; cursor: pointer; }
.lb__close:hover { background: #fff; color: var(--ink); }
.lb__stage { position: relative; flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; padding: 0 clamp(64px, 8vw, 120px); }
.lb__stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 12px; user-select: none; transition: opacity .2s; }
.lb__stage img.is-loading { opacity: .3; }
.lb__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); background: rgba(0,0,0,.2); color: #fff; font-size: 22px; cursor: pointer; }
.lb__btn:hover { background: #fff; color: var(--ink); }
.lb__prev { left: clamp(8px, 2vw, 32px); }
.lb__next { right: clamp(8px, 2vw, 32px); }
.lb__thumbs { display: flex; gap: 8px; overflow-x: auto; padding: 18px var(--gutter) 24px; scrollbar-width: none; }
.lb__thumbs::-webkit-scrollbar { display: none; }
.lb__thumb { flex: 0 0 72px; height: 72px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; padding: 0; background: #333; cursor: pointer; opacity: .55; transition: opacity .2s, border-color .2s; }
.lb__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb__thumb.is-active, .lb__thumb:hover { opacity: 1; }
.lb__thumb.is-active { border-color: var(--magenta); }

/* ── 팀 ── */
.team__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr)); gap: clamp(48px, 6vw, 110px); align-items: center; }
.team__media { aspect-ratio: 4 / 5; border-radius: 32px; overflow: hidden; background: #E8E1D6; }
.team__media img { width: 100%; height: 100%; object-fit: cover; }
.team__body { display: flex; flex-direction: column; gap: 32px; }
.team__quote { margin: 0; font-size: clamp(24px, 2.4vw, 32px); font-weight: 800; letter-spacing: -.035em; line-height: 1.4; }
.team__body .lead { max-width: 540px; line-height: 1.9; }
.expertise { display: flex; flex-direction: column; }
.expertise__label { font-family: var(--display); font-size: 14px; letter-spacing: .28em; color: var(--muted-2); padding-bottom: 14px; border-bottom: 1.5px solid var(--ink); }
.expertise__row { display: grid; grid-template-columns: 56px 1fr; gap: 12px; padding: 22px 0; border-bottom: 1px solid var(--line); transition: padding-left .3s; }
.expertise__row:hover { padding-left: 8px; }
.expertise__row:has(.expertise__logo) { grid-template-columns: 56px 1fr auto; align-items: center; }
.expertise__logo { width: clamp(150px, 15vw, 210px); height: auto; }
@media (max-width: 640px) { .expertise__row:has(.expertise__logo) { grid-template-columns: 56px 1fr; } .expertise__logo { grid-column: 2; margin-top: 12px; } }
.expertise__no { font-family: var(--display); font-size: 15px; letter-spacing: .12em; color: var(--muted-2); padding-top: 4px; }
.expertise__place { display: block; font-family: var(--display); font-size: 13px; letter-spacing: .32em; color: var(--magenta); margin-bottom: 6px; }
.expertise__row b { display: block; font-family: var(--display); font-weight: 600; font-size: clamp(26px, 2.4vw, 34px); line-height: 1; letter-spacing: .02em; color: var(--ink); }
.expertise__row p { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: var(--body); }
.timeline { border-top: 1px solid var(--line); }
.timeline div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
.timeline span:first-child { font-family: var(--display); letter-spacing: .2em; color: var(--magenta); }
.timeline span:last-child { font-weight: 600; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; padding: 28px 0; border-top: 1.5px solid var(--ink); }
.stats div { display: flex; flex-direction: column; gap: 8px; }
.stats b { font-family: var(--display); font-weight: 600; font-size: clamp(44px, 4.4vw, 64px); line-height: 1; color: var(--magenta); }
.stats em { font-style: normal; font-family: 'Pretendard', sans-serif; font-size: .38em; font-weight: 800; margin-left: 4px; vertical-align: .9em; }
.stats span { font-size: 14px; font-weight: 600; color: var(--muted); line-height: 1.5; }

.crew { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(20px, 2.4vw, 32px); margin-top: clamp(72px, 8vw, 120px); }
.crew__card { display: flex; flex-direction: column; border-radius: 28px; overflow: hidden; background: #fff; box-shadow: 0 1px 0 rgba(28,25,23,.04); transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s; }
.crew__card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px -24px rgba(28,25,23,.25); }
.crew__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-deep); }
.crew__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.crew__card:hover .crew__img img { transform: scale(1.06); }
.crew__body { display: flex; flex-direction: column; gap: 14px; padding: 28px 28px 32px; }
.crew__top { display: flex; justify-content: space-between; align-items: baseline; }
.crew__no { font-family: var(--display); font-size: 15px; letter-spacing: .24em; color: var(--muted-2); }
.crew__ko { font-size: 14px; font-weight: 700; color: var(--muted); }
.crew__en { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(44px, 4vw, 60px); line-height: .9; color: var(--magenta); }
.crew__body p { margin: 0; font-size: 16px; line-height: 1.75; color: var(--body); }
.crew__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.crew__tags span { padding: 6px 12px; border-radius: 999px; background: var(--cream); font-size: 13px; font-weight: 600; color: var(--body); }

/* ── 진행 절차 ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: clamp(24px, 2.4vw, 40px); margin-top: clamp(56px, 6vw, 88px); }
.step { display: flex; flex-direction: column; gap: 16px; padding-top: 28px; border-top: 1.5px solid var(--ink); }
.step__top { display: flex; justify-content: space-between; align-items: baseline; }
.step__n { font-family: var(--display); font-weight: 600; font-size: 64px; line-height: 1; color: var(--magenta); }
.step__en { font-family: var(--display); font-size: 14px; letter-spacing: .24em; color: var(--muted-2); }
.step h3 { margin: 8px 0 0; font-size: 23px; font-weight: 800; letter-spacing: -.03em; }
.step p { margin: 0; font-size: 16px; line-height: 1.8; color: var(--muted); }

/* ── 문의 ── */
.contact__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr)); gap: clamp(48px, 6vw, 96px); align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 32px; }
.contact__info .lead { max-width: 440px; }
.info-list { border-top: 1px solid #E4DED4; max-width: 440px; }
.info-list div { display: grid; grid-template-columns: 96px 1fr; padding: 18px 0; border-bottom: 1px solid #E4DED4; font-size: 16px; }
.info-list span { color: var(--muted-2); }
.info-list a, .info-list b { color: var(--ink); font-weight: 700; }
.form { display: flex; flex-direction: column; gap: 28px; padding: clamp(28px, 4vw, 56px); border-radius: 32px; background: var(--cream); }
.form__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 28px 24px; }
.field { display: flex; flex-direction: column; gap: 10px; font-size: 14px; font-weight: 700; }
.field input, .field textarea { border: 0; border-bottom: 1.5px solid #CFC6B9; background: transparent; font-size: 17px; outline: none; padding: 0; color: var(--ink); transition: border-color .2s; }
.field input { height: 48px; }
.field textarea { padding: 8px 0; line-height: 1.7; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--magenta); }
.types { display: flex; flex-wrap: wrap; gap: 8px; }
.type { height: 42px; padding: 0 18px; border-radius: 999px; border: 1.5px solid #CFC6B9; background: transparent; color: var(--body); font-size: 14px; font-weight: 600; cursor: pointer; }
.type.is-active { background: var(--magenta); border-color: var(--magenta); color: #fff; }
.agree { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--body); cursor: pointer; }
.agree input { width: 18px; height: 18px; accent-color: var(--magenta); margin: 0; }
.form .btn--solid { height: 62px; font-size: 17px; }
.form__note { margin: -12px 0 0; font-size: 13px; color: var(--muted-2); text-align: center; }

/* ── 푸터 ── */
.footer { background: #2B0F1D; color: #E9DCE1; padding: 56px var(--gutter) 40px; }
.footer__inner { max-width: 1320px; margin: 0 auto; }
.footer__row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: clamp(24px, 4vw, 56px); }
.footer__row--bottom { grid-template-columns: 1fr auto; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(243,167,200,.18); }
.footer__logo { width: 168px; height: auto; display: block; }
.footer__slogan { margin: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; text-align: right; }
.footer__slogan em { font-style: normal; font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: .12em; color: #F3A7C8; }
.footer__slogan span { font-size: 14px; font-weight: 600; color: #E8E2D9; }
.footer__info { margin: 0; font-size: 13px; line-height: 1.8; color: #B79DA8; }
.footer__legal { margin: 0; display: flex; gap: 20px; font-size: 13px; color: #9C8390; white-space: nowrap; }
.footer__legal a { color: #E8E2D9; font-weight: 700; }
.footer__legal a:hover { color: #fff; }
.social { display: flex; gap: 10px; }
.social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--ink); transition: background .25s, color .25s, transform .25s; }
.social a:hover { background: var(--magenta); color: #fff; transform: translateY(-3px); }
.social svg { width: 22px; height: 22px; }
.social__text { font-size: 13px; font-weight: 900; letter-spacing: -.04em; }

/* 맨 위로 버튼 */
.to-top { position: fixed; right: clamp(16px, 2.4vw, 32px); bottom: clamp(16px, 2.4vw, 32px); z-index: 60; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(28,25,23,.55); color: #fff; font-size: 20px; cursor: pointer; backdrop-filter: blur(8px); opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .3s, transform .3s, background .2s; }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--magenta); }

/* 모바일 하단 고정 버튼 (모바일에서만) */
.mobile-cta { display: none; }

/* 팀 사진 캡션 */
.team__media { position: relative; }
.team__caption { position: absolute; left: 20px; bottom: 20px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.92); display: flex; align-items: baseline; gap: 8px; color: var(--ink); }
.team__visual { position: relative; padding: 0 0 clamp(40px, 5vw, 72px) clamp(40px, 6vw, 96px); }
.team__visual .team__media { aspect-ratio: 4 / 5; }
.team__visual .team__caption { left: auto; right: 20px; bottom: auto; top: 20px; }
.team__inset { position: absolute; left: 0; bottom: 0; width: 42%; margin: 0; border-radius: 22px; overflow: hidden; border: 6px solid var(--cream); background: var(--cream); box-shadow: 0 24px 48px -24px rgba(28,25,23,.45); }
.team__inset img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px; }
.team__inset figcaption { padding: 10px 6px 4px; font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--muted); }
.team__inset figcaption em { font-style: normal; font-family: var(--display); font-size: 15px; font-weight: 600; letter-spacing: .12em; color: var(--magenta); }
.team__caption em, .expertise__label em { font-style: normal; font-family: var(--display); letter-spacing: .16em; }
.team__caption em { font-size: 15px; }
.team__caption span { font-size: 14px; font-weight: 800; letter-spacing: -.01em; }
.expertise__label span { font-family: 'Pretendard', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0; color: var(--ink); margin-left: 8px; }

/* 소개 문장: 스크롤하면 단어가 차례로 진해짐 */
.fill-text .w { color: #D9D2C8; transition: color .35s ease; }
.fill-text .w.on { color: var(--ink); }
.fill-text em .w.on, .fill-text em.on { color: var(--magenta); }
@media (max-width: 760px) {
  .footer__row, .footer__row--bottom { grid-template-columns: 1fr; gap: 20px; }
  .footer__slogan { align-items: flex-start; text-align: left; }
  .footer__legal { flex-wrap: wrap; }
}
/* 헤더 견적 문의 버튼 (마젠타) */
.pill--quote { background: var(--magenta); color: #fff !important; }
.pill--quote:hover { background: var(--magenta-dark); }

/* ── 스크롤 등장 효과 ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__img { animation: none; }
  /* 움직임 줄이기 설정: 로고 띠는 자동으로 흐르는 대신 손가락으로 넘겨보기 */
  .marquee { animation: none; }
  .clients { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  html { scroll-behavior: auto; }
}

/* ── 부드러운 스크롤 (Lenis) 사용 중일 때 ── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ── 반응형 ── */
@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .header.menu-open { background: #fff; color: var(--ink); }
  .header.menu-open .nav {
    display: flex; position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 8px var(--gutter) 24px; background: #fff; border-bottom: 1px solid var(--line-soft);
    font-size: 18px;
  }
  .header.menu-open .nav a { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
  .header.menu-open .nav a::after { display: none; }
  .header.menu-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
  .header.menu-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .pill--line { display: none; }
  .pill--phone { height: 40px; padding: 0 16px; font-size: 13px; }
  .logo { width: 118px; height: 41px; }
  body { padding-bottom: 64px; }
  .pill--quote { display: none; }
  .mobile-cta { display: grid; grid-template-columns: 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; height: 64px; box-shadow: 0 -8px 24px -12px rgba(0,0,0,.25); }
  .mobile-cta a { display: grid; place-items: center; font-size: 16px; font-weight: 800; }
  .mobile-cta__call { background: var(--ink); color: #fff; }
  .mobile-cta__quote { background: var(--magenta); color: #fff; }
  .to-top { bottom: 80px; width: 44px; height: 44px; }
  .lightbox { z-index: 110; }
  .footer__top { align-items: flex-start; }
  .hero__dots { left: 50%; right: auto; transform: translateX(-50%); bottom: 20px; }
  .hero__line { display: none; }
  .stats { gap: 10px; }
  .pf__logo { width: 62px; height: 62px; padding: 11px; }
  .hero { border-radius: 0 0 0 80px; }
  .svc__media { min-height: 360px; }
  .svc--left, .svc--right { padding: 0 var(--gutter); }
  .svc--left .svc__media, .svc--right .svc__media { border-radius: 24px; }
  .svc--right .svc__body { order: 2; }
  .crew { grid-template-columns: 1fr; }
  .timeline div { grid-template-columns: 96px 1fr; }
  .lb__stage { padding: 0 12px; }
  .lb__btn { width: 44px; height: 44px; background: rgba(0,0,0,.45); }
  .lb__name { font-size: 16px; }
}

/* ── 와우 포인트 ── */
/* 1. 첫 화면 제목 글자별 등장 */
.hero-anim .hero__title .ch { display: inline-block; opacity: 0; transform: translateY(60%) rotate(4deg); animation: chUp .9s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes chUp { to { opacity: 1; transform: none; } }
.hero-anim .hero__kicker, .hero-anim .hero__ko, .hero-anim .hero__content .btn { opacity: 0; animation: fadeUp .9s ease forwards; }
.hero-anim .hero__kicker { animation-delay: .1s; }
.hero-anim .hero__ko { animation-delay: 1s; }
.hero-anim .hero__content .btn { animation-delay: 1.2s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero__content::before { content: ''; position: absolute; left: 50%; top: 50%; width: min(1100px, 110vw); height: 130%; transform: translate(-50%, -50%); background: radial-gradient(closest-side, rgba(20,14,12,.5), rgba(20,14,12,0)); z-index: -1; pointer-events: none; }
.hero__content { z-index: 1; }
.hero__title, .hero__kicker, .hero__ko { text-shadow: 0 2px 24px rgba(0,0,0,.35); }

/* 2. 큰 제목이 가려져 있다가 올라오기 */
.display.mask-up { clip-path: inset(0 0 100% 0); transform: translateY(24px); transition: clip-path 1.1s cubic-bezier(.7,0,.2,1), transform 1.1s cubic-bezier(.7,0,.2,1); }
.display.mask-up.is-up { clip-path: inset(-10% -5% -20% -5%); transform: none; }

/* 3. VIEW 커서 */
.view-cursor { position: fixed; left: 0; top: 0; z-index: 90; pointer-events: none; }
.view-cursor span { position: absolute; left: -46px; top: -46px; width: 92px; height: 92px; border-radius: 50%; display: grid; place-items: center; background: var(--magenta); color: #fff; font-family: var(--display); font-size: 16px; letter-spacing: .2em; transform: scale(0); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.view-cursor.is-on span { transform: scale(1); }
@media (pointer: fine) { .pf__img, .moment[data-id] { cursor: none; } }

/* ── 후기 (숨고 실제 리뷰) ── */
.reviews__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(40px, 5vw, 64px); }
.reviews__head .sub { margin-top: 18px; }
.rating { display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 14px; row-gap: 4px; padding: 20px 28px; border-radius: 24px; background: #fff; color: var(--ink); box-shadow: 0 16px 40px -28px rgba(28,25,23,.4); transition: transform .3s; }
.rating:hover { transform: translateY(-4px); }
.rating b { grid-row: span 2; font-family: var(--display); font-size: 64px; font-weight: 600; line-height: .9; color: var(--magenta); }
.rating__stars { font-size: 20px; letter-spacing: 2px; color: #E7A93B; }
.rating small { font-size: 13px; font-weight: 600; color: var(--muted); }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(16px, 2vw, 28px); }
.review { position: relative; margin: 0; display: flex; flex-direction: column; gap: 22px; padding: clamp(28px, 3vw, 40px); border-radius: 28px; background: #fff; box-shadow: 0 1px 0 rgba(28,25,23,.04); transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s; }
.review:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -32px rgba(176,18,91,.45); }
.review__q { font-family: var(--accent); font-style: italic; font-size: 96px; line-height: .5; height: 34px; color: var(--magenta); }
.review blockquote { margin: 0; font-size: 17px; line-height: 1.8; font-weight: 500; color: var(--ink); flex: 1; }
.review figcaption { display: flex; flex-direction: column; gap: 2px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.review figcaption b { font-size: 15px; }
.review figcaption span { font-size: 13px; color: var(--muted-2); }
.review__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.review__tags span { padding: 5px 11px; border-radius: 999px; background: var(--cream); font-size: 12px; font-weight: 600; color: var(--body); }
.reviews__grid .review:nth-child(2) { transition-delay: .08s; }
.reviews__grid .review:nth-child(3) { transition-delay: .16s; }

/* ── 와우 A: 스크롤하면 사진이 화면 가득 커지는 장면 ── */
.expand { position: relative; height: 260vh; background: #fff; }
.expand__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; place-items: center; }
.expand__media { position: absolute; left: 50%; top: 50%; width: 100vw; height: 100vh; transform: translate(-50%, -50%) scale(var(--s, .32)); border-radius: calc(var(--r, 1) * 36px); overflow: hidden; will-change: transform; box-shadow: 0 40px 80px -40px rgba(28,25,23,.5); }
.expand__media img, .expand__media video { width: 100%; height: 100%; object-fit: cover; transform: scale(calc(1.25 - var(--p, 0) * .25)); }
.expand__shade { position: absolute; inset: 0; background: rgba(20,14,12, calc(var(--p, 0) * .45)); }
.expand__title { position: relative; z-index: 2; margin: 0; display: flex; flex-direction: column; align-items: center; gap: .1em; font-family: var(--display); font-weight: 600; font-size: clamp(56px, 10vw, 170px); line-height: .9; text-transform: uppercase; color: var(--magenta); pointer-events: none; }
.expand__title span { display: block; will-change: transform; }
.expand__l { transform: translateX(calc(var(--p, 0) * -18vw)); }
.expand__r { transform: translateX(calc(var(--p, 0) * 18vw)); }
.expand__title { color: color-mix(in srgb, var(--magenta) calc(100% - var(--p, 0) * 100%), #fff); }
.expand__caption { position: absolute; left: 0; right: 0; bottom: 8vh; z-index: 2; margin: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; color: #fff; opacity: var(--c, 0); transform: translateY(calc((1 - var(--c, 0)) * 20px)); text-align: center; }
.expand__caption span { font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; letter-spacing: -.02em; }
.expand__caption em { font-style: normal; font-family: var(--display); font-size: 14px; letter-spacing: .3em; opacity: .8; }
@media (prefers-reduced-motion: reduce) { .expand { height: auto; } .expand__sticky { position: relative; height: 80vh; } .expand__media { --s: 1; --r: 0; } }

/* ── 와우 B: 서비스 사진 패럴랙스 ── */
.svc__media img { top: -12%; bottom: auto; height: 124%; transform: translateY(var(--py, 0px)); will-change: transform; }

/* ── 와우 C: 포트폴리오 고정 가로 스크롤 ── */
.portfolio.is-pinned { overflow: visible; }
.portfolio.is-pinned > .wrap { position: sticky; top: var(--header-h); }
.portfolio.is-pinned .pf__track { overflow-x: hidden; scroll-snap-type: none; }
.pf__all-card { flex: 0 0 clamp(260px, 24vw, 340px); aspect-ratio: 4 / 5; align-self: flex-start; border-radius: 28px; background: var(--magenta); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; transition: background .3s, transform .3s; }
.pf__all-card:hover { background: var(--magenta-dark); transform: translateY(-6px); }
.pf__all-num { font-family: var(--display); font-weight: 600; font-size: 110px; line-height: .9; }
.pf__all-label { font-family: var(--display); font-size: 18px; letter-spacing: .3em; }
.pf__all-cta { margin-top: 18px; padding: 10px 20px; border: 1.5px solid rgba(255,255,255,.7); border-radius: 999px; font-size: 14px; font-weight: 700; }
.pf-all { position: fixed; inset: 0; z-index: 95; display: none; flex-direction: column; background: var(--cream); overflow-y: auto; }
.pf-all.is-open { display: flex; animation: fadeIn .25s ease; }
.pf-all__top { position: sticky; top: 0; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 28px var(--gutter) 20px; background: rgba(247,244,239,.95); backdrop-filter: blur(8px); }
.pf-all__eyebrow { font-size: 13px; font-weight: 700; color: var(--magenta); }
.pf-all__title { margin: 4px 0 0; font-family: var(--display); font-weight: 600; font-size: clamp(40px, 5vw, 72px); line-height: .9; color: var(--ink); text-transform: uppercase; }
.pf-all__title small { font-size: .4em; color: var(--magenta); vertical-align: super; }
.pf-all__close { border-color: var(--ink); color: var(--ink); }
.pf-all__close:hover { background: var(--ink); color: #fff; }
.pf-all__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: 24px 18px; padding: 12px var(--gutter) 64px; }
.pf-all__item { padding: 0; border: 0; background: none; text-align: left; cursor: pointer; color: inherit; }
.pf-all__img { display: block; aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden; background: var(--cream-deep); }
.pf-all__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pf-all__item:hover img { transform: scale(1.06); }
.pf-all__meta { display: flex; flex-direction: column; gap: 2px; padding: 12px 2px 0; }
.pf-all__meta b { font-size: 13px; color: var(--magenta); }
.pf-all__meta span { font-size: 16px; font-weight: 800; letter-spacing: -.02em; }

/* ── 와우 D: 섹션 사이 물결 경계 ── */
.wave-top { position: relative; }
.wave-top::before { content: ''; position: absolute; left: 0; right: 0; top: -1px; height: clamp(40px, 5vw, 80px); background: var(--wave-color, #fff); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v38c-120 26-240 40-360 40S840 64 720 44 480 8 360 8 120 26 0 44z'/%3E%3C/svg%3E") center / 100% 100% no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0 0h1440v38c-120 26-240 40-360 40S840 64 720 44 480 8 360 8 120 26 0 44z'/%3E%3C/svg%3E") center / 100% 100% no-repeat; pointer-events: none; z-index: 1; }

/* ── 와우 E: 진행 절차 선 그리기 ── */
.steps { position: relative; }
.steps__line { position: absolute; left: 0; right: 0; top: -1.5px; height: 3px; background: var(--magenta); transform-origin: left; transform: scaleX(var(--draw, 0)); z-index: 1; }
.step { border-top-color: var(--line); transition: opacity .6s ease, transform .6s ease; }
.js-steps .step { opacity: .25; transform: translateY(10px); }
.js-steps .step.is-on { opacity: 1; transform: none; }
.step.is-on .step__n { color: var(--magenta); }

/* ── 와우 F: 갤러리 사진 확대 렌즈 ── */
.lb__stage.lens-on img { cursor: zoom-in; }

/* ── 자주 묻는 질문 ── */
.faq__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 110px); align-items: start; }
.faq__head { display: flex; flex-direction: column; gap: 18px; position: sticky; top: calc(var(--header-h) + 32px); }
.faq__head .lead { max-width: 380px; }
.faq__list { border-top: 1.5px solid var(--ink); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; font-size: clamp(17px, 1.4vw, 20px); font-weight: 700; letter-spacing: -.02em; cursor: pointer; transition: color .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; font-size: 20px; font-weight: 400; color: var(--magenta); transition: transform .3s, background .3s, color .3s; }
.faq[open] summary { color: var(--magenta); }
.faq[open] summary::after { transform: rotate(45deg); background: var(--magenta); border-color: var(--magenta); color: #fff; }
.faq summary:hover { color: var(--magenta); }
.faq p { margin: 0; padding: 0 56px 26px 4px; font-size: 16px; line-height: 1.85; color: var(--body); }
@media (max-width: 860px) { .faq__grid { grid-template-columns: 1fr; } .faq__head { position: static; } .faq p { padding-right: 4px; } }

/* ── 모바일 가독성 보강 ── */
@media (max-width: 640px) {
  .expand { height: 200vh; }
  .expand__sticky, .expand__media { height: 100svh; }
  .expand__title { font-size: 46px; }
  .expand__l { transform: translateX(calc(var(--p, 0) * -5vw)); }
  .expand__r { transform: translateX(calc(var(--p, 0) * 5vw)); }
  .expand__caption { bottom: 12vh; padding: 0 20px; }
  /* 행사 유형 필터: 한 줄 가로 스크롤 */
  .pf__filters { flex-wrap: nowrap; overflow-x: auto; margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); padding: 0 var(--gutter) 4px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .pf__filters::-webkit-scrollbar { display: none; }
  .pf__filters > * { flex: 0 0 auto; }
  /* 전체 보기 창: 2열 */
  .pf-all__grid { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .pf-all__img { border-radius: 14px; }
  .pf-all__meta span { font-size: 14px; }
  .pf-all__meta b { font-size: 12px; }
  .pf-all__top { padding-top: 18px; padding-bottom: 14px; }
  .info-list a { word-break: break-all; }
}
/* 소개 문장: 첫 문장은 크게 한 줄, 이어지는 설명은 다음 줄 */
.intro__head { display: block; margin-bottom: .45em; font-size: 1.32em; line-height: 1.3; letter-spacing: -.04em; }.intro__statement { font-size: clamp(21px, 2.5vw, 34px); line-height: 1.6; text-wrap: initial; }
.intro__head { font-size: 1.45em; margin-bottom: .6em; }
.intro__statement .w { transition: color .35s ease; }
@media (max-width: 640px) { .intro__statement br { display: none; } .intro__statement { text-wrap: balance; } }
/* 갤러리 회차 탭 (예: 신년회 1차·2차·3차) */
.lb__rounds { display: inline-flex; gap: 6px; margin-left: 14px; vertical-align: middle; }
.lb__rounds[hidden] { display: none; }
.lb__round { padding: 6px 14px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; background: none; color: rgba(255,255,255,.8); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s, color .2s; }
.lb__round:hover { border-color: #fff; color: #fff; }
.lb__round.is-active { background: var(--magenta); border-color: var(--magenta); color: #fff; }
@media (max-width: 640px) { .lb__rounds { display: flex; margin: 8px 0 0; } }
/* 고정 모드: 카드 크기를 화면 높이에 맞춤 (main.js layoutPin 이 --pf-img-h 계산) */
.portfolio.is-pinned.pf-fit .pf__card { flex-basis: max(300px, calc(var(--pf-img-h) * .8)); }
.portfolio.is-pinned .pf__more { display: none; }
.portfolio.is-pinned.pf-fit .pf__img { aspect-ratio: auto; height: var(--pf-img-h); }
.portfolio.is-pinned.pf-fit .pf__all-card { flex-basis: max(300px, calc(var(--pf-img-h) * .8)); aspect-ratio: auto; height: var(--pf-img-h); }
.portfolio.is-pinned .pf__filters { margin-top: 20px; }
.portfolio.is-pinned .pf__viewport { margin-top: 24px; }
.portfolio.is-pinned .pf__meta { padding-top: 14px; }
@media (max-height: 860px) { .portfolio.is-pinned .display--xl { font-size: clamp(52px, 10vh, 110px); } }
/* ── 기프트 & 박스 ── */
.gift__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px 48px; }
.gift__side { max-width: 460px; }
.gift__side .lead { margin-top: 12px; }
.gift__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(36px, 4vw, 56px); }
.gift__card { display: flex; flex-direction: column; background: #fff; border-radius: 28px; overflow: hidden; box-shadow: 0 24px 50px -36px rgba(43,15,29,.35); transition: transform .4s ease, box-shadow .4s ease; }
.gift__card:hover { transform: translateY(-6px); box-shadow: 0 32px 60px -34px rgba(43,15,29,.45); }
.gift__img { aspect-ratio: 5 / 4; overflow: hidden; background: var(--cream-deep); }
.gift__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gift__card:hover .gift__img img { transform: scale(1.05); }
.gift__body { display: flex; flex-direction: column; gap: 8px; padding: 24px 26px 28px; flex: 1; }
.gift__en { font-family: var(--display); font-size: 13px; letter-spacing: .28em; color: var(--magenta); }
.gift__title { margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.gift__body p { margin: 4px 0 0; font-size: 15px; line-height: 1.7; color: var(--muted, #6b6259); }
.gift__ref { margin-top: auto; padding-top: 14px; font-size: 13px; font-weight: 700; color: var(--ink); border-top: 1px solid rgba(43,15,29,.1); }
.gift__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-top: 32px; }
@media (max-width: 960px) { .gift__grid { grid-template-columns: 1fr 1fr; } .gift__card:first-child { grid-column: 1 / -1; } .gift__card:first-child .gift__img { aspect-ratio: 16 / 9; } }
@media (max-width: 640px) { .gift__grid { grid-template-columns: 1fr; } .gift__card:first-child .gift__img { aspect-ratio: 5 / 4; } .gift__foot { flex-direction: column; align-items: stretch; } .gift__foot .btn { text-align: center; } }
/* FAQ 아이콘: 글자 대신 선 두 개로 그려 정확히 가운데 정렬 */
.faq summary::after { content: ''; font-size: 0; background-image: linear-gradient(var(--magenta), var(--magenta)), linear-gradient(var(--magenta), var(--magenta)); background-size: 12px 1.8px, 1.8px 12px; background-position: center; background-repeat: no-repeat; box-sizing: border-box; }
.faq[open] summary::after { background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff); background-color: var(--magenta); }
.nowrap { white-space: nowrap; }
@media (max-width: 640px) { .br-pc { display: none; } }
/* ── 사이트 전용 커서 (마우스 기기에서만): 마젠타 화살표 + 뒤따르는 은은한 빛 ── */
html.has-cursor, html.has-cursor body { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 3v21.5l5.6-5.3 3.9 8.6 3.9-1.8-3.9-8.4h7.9z' fill='%23B0125B' stroke='%23fff' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E") 5 3, auto; }
html.has-cursor a, html.has-cursor button, html.has-cursor summary, html.has-cursor label, html.has-cursor select, html.has-cursor [role="button"], html.has-cursor .pf__card, html.has-cursor .gift__card, html.has-cursor .chip { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 3v21.5l5.6-5.3 3.9 8.6 3.9-1.8-3.9-8.4h7.9z' fill='%23fff' stroke='%23B0125B' stroke-width='2' stroke-linejoin='round'/%3E%3Ccircle cx='24' cy='25' r='4' fill='%23B0125B'/%3E%3C/svg%3E") 5 3, pointer; }
html.has-cursor input:not([type="checkbox"]):not([type="radio"]), html.has-cursor textarea { cursor: text; }
.cursor-glow { position: fixed; left: 0; top: 0; z-index: 9998; pointer-events: none; mix-blend-mode: multiply; }
.cursor-glow::before { content: ''; position: absolute; left: -130px; top: -130px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(176, 18, 91, .16) 0%, rgba(176, 18, 91, .07) 35%, rgba(176, 18, 91, 0) 70%); transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .4s; }
html.cursor-hover .cursor-glow::before { transform: scale(1.35); }
html.cursor-out .cursor-glow::before, html.cursor-view .cursor-glow::before { opacity: 0; }
/* 스팸 방지용 숨은 칸 (사람에게는 안 보임) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
/* 포트폴리오 카드: 제목 줄 수가 달라도 사진 위치를 맞추고, 제목은 단어 단위로 보기 좋게 줄바꿈 */
.pf__track { align-items: flex-start; }
.pf__card { display: flex; flex-direction: column; justify-content: flex-start; }
.pf__name { line-height: 1.35; word-break: keep-all; text-wrap: balance; min-height: 2.7em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pf__client { word-break: keep-all; }
.pf-all__meta span { word-break: keep-all; text-wrap: balance; }
/* ════════════════════════════════════════════
   모바일 전용 정리 (640px 이하): 짧게 · 옆으로 넘기기 · 큰 글씨
   ════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --section: 72px; --gutter: 20px; }
  .display--xl { font-size: 58px; }
  .display--lg { font-size: 48px; }
  .h2 { font-size: 26px; line-height: 1.35; }
  .lead { font-size: 15.5px; line-height: 1.75; }

  /* 옆으로 넘기는 카드 줄: 다음 카드가 살짝 보이게 */
  .philo__grid, .gift__grid, .crew, .reviews__grid {
    display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); padding: 4px var(--gutter) 12px; scroll-padding-left: var(--gutter);
  }
  .philo__grid::-webkit-scrollbar, .gift__grid::-webkit-scrollbar, .crew::-webkit-scrollbar, .reviews__grid::-webkit-scrollbar { display: none; }
  .philo__grid > *, .gift__grid > *, .crew > *, .reviews__grid > * { flex: 0 0 82%; scroll-snap-align: start; }
  .gift__card:first-child { grid-column: auto; }
  .gift__card:first-child .gift__img, .gift__img { aspect-ratio: 4 / 3; }
  .crew { margin-top: 48px; padding-left: var(--gutter); }
  .wrap.crew { max-width: none; }
  .swipe-hint { display: flex; }

  /* 철학: 카드 안 사진 낮게 */
  .philo__grid { margin-top: 36px; }
  .philo__media { aspect-ratio: 4 / 3; border-radius: 20px; margin-bottom: 6px; }
  .philo__item { gap: 8px; }
  .philo__item p { font-size: 14.5px; }

  /* 서비스: 사진 낮게, 간격 줄이기 */
  .services { padding: var(--section) 0; }
  .services__list { gap: 48px; }
  .svc { gap: 20px; }
  .svc__media { min-height: 0; aspect-ratio: 4 / 3; border-radius: 22px; }
  .svc__body { gap: 14px; padding: 0; }
  .svc__body .display--lg { font-size: 40px; }
  .svc .chips { justify-content: center; }

  /* 시그니처 모먼트: 2열 */
  .moments__grid { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 150px; gap: 8px; }
  .moments__grid > :first-child { grid-column: 1 / -1; grid-row: auto; height: 220px; }

  /* 팀: 큰 사진 낮게, 작은 사진 숨김 */
  .team__visual { padding: 0; }
  .team__media { aspect-ratio: 4 / 3; border-radius: 22px; }
  .team__inset { display: none; }
  .expertise__row { padding: 16px 0; }
  .expertise__row b { font-size: 26px; }
  .crew__img { aspect-ratio: 16 / 10; }
  .crew__body { padding: 22px 20px 24px; }

  /* 진행 절차: 2열 */
  .steps { grid-template-columns: 1fr 1fr; gap: 24px 16px; margin-top: 36px; }
  .step { gap: 8px; padding-top: 18px; }
  .step__n { font-size: 40px; }
  .step p { font-size: 14px; }
  .steps__line { display: none; }

  /* 후기 */
  .review { padding: 24px; gap: 16px; }
  .review blockquote, .review p { font-size: 15px; }

  /* 스크롤 확대 장면 짧게 */
  .expand { height: 160vh; }

  /* 포트폴리오 카드 로고: 모바일 예전 설정 되돌림 */
  .pf__logo { width: auto; height: 24px; padding: 0; }
  .pf__card { flex-basis: 78%; }

  /* 입력칸 확대 방지(iOS): 16px 이상 */
  .field input, .field textarea, .field select { font-size: 16px; }
}
.swipe-hint { display: none; align-items: center; gap: 6px; margin-top: 10px; font-size: 12.5px; font-weight: 600; color: var(--muted-2); }
/* 헤더 한 치수 크게 (PC) */
@media (min-width: 1081px) {
  :root { --header-h: 96px; }
  .logo { width: 184px; height: 64px; }
  .nav { gap: clamp(32px, 3.2vw, 52px); font-size: 16.5px; font-weight: 700; letter-spacing: 0; }
  .nav a::after { bottom: -8px; height: 2px; }
  .pill { height: 52px; padding: 0 28px; font-size: 16px; }
}
/* 르 꼬르동 블루 수료증: 썸네일 버튼 + 크게 보기 창 */
.cert-btn { display: inline-flex; align-items: center; gap: 14px; margin-top: 14px; padding: 8px 18px 8px 8px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; transition: border-color .2s, box-shadow .2s, transform .2s; }
.cert-btn img { width: 54px; height: 76px; object-fit: cover; border-radius: 4px; box-shadow: 0 4px 12px -4px rgba(0,35,107,.35); }
.cert-btn:hover, .cert-btn:focus-visible { border-color: var(--magenta); color: var(--magenta); transform: translateY(-2px); box-shadow: 0 10px 24px -14px rgba(28,25,23,.4); outline: none; }
.cert-modal { padding: 0; border: 0; border-radius: 10px; background: #fff; max-width: min(92vw, 640px); max-height: 92vh; overflow: auto; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.cert-modal::backdrop { background: rgba(20,14,12,.72); }
.cert-modal img { display: block; width: 100%; height: auto; }
.cert-modal__close { position: sticky; top: 10px; float: right; margin: 10px 10px -46px 0; z-index: 1; width: 36px; height: 36px; border: 0; border-radius: 50%; background: rgba(28,25,23,.8); color: #fff; font-size: 16px; cursor: pointer; }