/* rr.vitalvibeland.com — 강남레스토랑대관 (레퍼런스: singerreimagined.com)
   2차 실측(Playwright 풀페이지+@font-face+전체 색상 스캔+애니메이션 keyframes+푸터) 결과 반영:
   - relais(세리프, 헤드라인) / pangram=PP Pangram Sans Rounded(라운드 산세리프, 내비·버튼) / roobert(산세리프, 본문)
   - 버튼 radius 24px(완전 필), 카드·이미지 0px(각짐)
   - 강조색 실존: --colors-brand-primary-orange #e68752 — 섹션 eyebrow·장식 아이콘에 절제 사용 (버튼/카드엔 안 씀)
   - 푸터는 완전 다크(#111 배경, 흰 텍스트) 3단 구성 + 서브푸터(구분선+소셜)
   - 히어로 텍스트는 페이지 로드시 순차 스태거 reveal(opacity+translateY) 애니메이션, 상단 nav도 슬라이드다운
   - 영상 섹션(장인 클로즈업 Vimeo 배경영상)은 실사용 영상 자산이 없어 이번엔 미반영 */

body, p, h1, h2, h3, h4, h5, h6, li, td, th, a, span, div, button {
  word-break: keep-all;
  overflow-wrap: break-word;
}

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=Nunito:wght@400;600;700;800&family=Noto+Sans+KR:wght@300;400;500;700;900&family=Gothic+A1:wght@400;500;700;800;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

:root {
  --ink:          #111111;
  --ink-2:        #616161;
  --ink-3:        #9f9f9f;
  --paper:        #ffffff;
  --paper-2:      #f6f6f6;
  --paper-3:      #ececec;
  --line:         rgba(17,17,17,.14);
  --line-strong:  rgba(17,17,17,.34);
  --accent:       #e68752;
  --accent-dark:  #cc6c39;

  --primary:      var(--ink);
  --primary-2:    var(--ink);
  --gold:         var(--ink);
  --gold-light:   var(--ink);
  --bg:           var(--paper);
  --surface:      var(--paper-2);
  --surface-2:    var(--paper-3);
  --border:       var(--line);
  --border-gold:  var(--line-strong);
  --body:         var(--ink);
  --muted:        var(--ink-2);

  --font-display: 'Fraunces', 'Gothic A1', sans-serif;
  --font-sub:     'Fraunces', 'Gothic A1', sans-serif;
  --font-ui:      'Nunito', 'Pretendard', sans-serif;
  --font-body:    'Pretendard', 'Noto Sans KR', sans-serif;
  --section-py:   7rem;
  --px:           clamp(1.25rem, 6vw, 5rem);
  --radius:       0px;
  --radius-pill:  999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.dp-g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dp-g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dp-g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dp-g6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dp-stat3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; align-items: center; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--ink); line-height: 1; margin-bottom: .5rem; }
@media (max-width: 1024px) { .dp-g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .dp-g2, .dp-g3, .dp-g4, .dp-g6 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) { .dp-stat3 { grid-template-columns: 1fr; gap: 16px; } }

/* skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--paper); padding: 10px 18px;
  border-radius: var(--radius-pill); font-weight: 700; font-family: var(--font-ui);
}
.skip-link:focus { left: 12px; top: 12px; }

/* cursor */
.cursor-dot, .cursor-ring { position: fixed; pointer-events: none; z-index: 9999; border-radius: 50%; transform: translate(-50%,-50%); }
.cursor-dot { width: 5px; height: 5px; background: var(--ink); }
.cursor-ring { width: 30px; height: 30px; border: 1px solid var(--line-strong); transition: width .2s, height .2s; }
@media (max-width: 1024px) { .cursor-dot, .cursor-ring { display: none; } }

/* header/nav */
@keyframes nav-slide-down { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  animation: nav-slide-down .5s cubic-bezier(.25,.46,.45,.94) .1s backwards;
}
.nav-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 var(--px);
  display: flex; align-items: center; justify-content: space-between; height: 76px;
}
.brand { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.4rem; color: var(--ink); letter-spacing: .5px; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-family: var(--font-ui); font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); transition: color .2s; }
.nav-links a:hover, .nav-links a:focus { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--paper); padding: .7rem 1.5rem;
  border-radius: var(--radius-pill); font-family: var(--font-ui); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--ink); }
.mobile-nav {
  display: none; position: fixed; inset: 76px 0 0 0; background: var(--paper);
  z-index: 490; padding: 2rem var(--px); flex-direction: column; gap: 1.5rem;
}
.mobile-nav a { font-family: var(--font-ui); font-weight: 600; font-size: 1.1rem; letter-spacing: .02em; }
.mobile-nav.open { display: flex; }
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* hero — full-bleed dark image moment (Singer-style black/white alternation) */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: 8rem var(--px) 4rem; overflow: hidden;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.65)), var(--img) center/cover no-repeat;
}
.hero.hero-video { background: #111; }
.hero-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero.hero-video::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.7));
}
.hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; }

/* hero-badge — 표준 히어로 우하단 플로팅 배지 (페이지별 개별 수치 강조) */
.hero-badge {
  position: absolute; right: clamp(1.25rem,5vw,3rem); bottom: clamp(1.5rem,5vw,3rem);
  z-index: 2; background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-pill);
  padding: .85rem 1.5rem; color: #fff; font-family: var(--font-ui); font-size: .8rem; font-weight: 600;
  display: flex; align-items: center; gap: .7rem;
}
.hero-badge b { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--accent); }
@media (max-width: 600px) { .hero-badge { right: 1rem; bottom: 1rem; padding: .65rem 1.1rem; font-size: .72rem; } .hero-badge b { font-size: 1.15rem; } }

/* hero-split — 비대칭 2단 구성 (텍스트 패널 + 풀블리드 영상), 홈 전용 */
.hero.hero-split {
  display: grid; grid-template-columns: 44% 56%;
  padding: 0; background: var(--ink); align-items: stretch;
}
.hero-split__text {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem clamp(1.5rem, 4vw, 3.5rem) 4rem clamp(1.25rem, 6vw, 5rem);
}
.hero-split__media { position: relative; overflow: hidden; min-height: 46vh; }
.hero-split__media .hero-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-split__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,11,11,.35), transparent 18%);
}
.hero-split__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero.hero-split { grid-template-columns: 1fr; grid-template-rows: 48vh auto; }
  .hero-split__media { order: -1; min-height: 48vh; }
  .hero-split__text { padding: 3rem clamp(1.25rem, 6vw, 2rem) 4rem; }
}

/* hero-split 반전판 (이미지 좌/텍스트 우) */
.hero.hero-split.hero-split--reverse { grid-template-columns: 56% 44%; }
.hero-split--reverse .hero-split__media { order: -1; }
.hero-split--reverse .hero-split__media::after { background: linear-gradient(270deg, rgba(11,11,11,.4), transparent 18%); }

/* hero-light — 이미지 없는 라이트 히어로 (통계 강조형) */
.hero.hero-light {
  background: var(--paper-2); min-height: 58vh; padding: 9rem var(--px) 4rem; display: flex;
}
.hero.hero-light .hero-eyebrow { color: var(--accent); }
.hero.hero-light h1 { color: var(--ink); }
.hero.hero-light .hero-sub { color: var(--ink-2); }
.hero.hero-light .btn-ghost { border: 1px solid var(--line-strong); color: var(--ink); background: transparent; backdrop-filter: none; }
.hero.hero-light .btn-ghost:hover { border-color: var(--ink); background: transparent; }
.hero-light__stats { display: flex; gap: clamp(1.5rem,4vw,3rem); margin-top: 1rem; }
.hero-light__stats div { text-align: left; }

@keyframes hero-reveal { 0% { opacity: 0; transform: translateY(22px); } 100% { opacity: 1; transform: translateY(0); } }
.hero-eyebrow, .hero h1, .hero-sub, .hero-ctas {
  opacity: 0;
  animation: hero-reveal .8s cubic-bezier(.25,.46,.45,.94) forwards;
}
.hero-eyebrow { animation-delay: .15s; }
.hero h1     { animation-delay: .3s; }
.hero-sub    { animation-delay: .48s; }
.hero-ctas   { animation-delay: .65s; }

.hero-eyebrow { color: var(--accent); font-family: var(--font-ui); font-weight: 700; font-size: .74rem; line-height: 1.6; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 2rem; }
.hero h1 {
  font-family: var(--font-display); font-style: normal; font-weight: 700;
  font-size: clamp(3.4rem, 8vw, 6.4rem); color: #fff; line-height: 1.04; padding-bottom: .08em; margin-bottom: 2rem;
  letter-spacing: -.01em;
}
.hero-sub { font-family: var(--font-sub); font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.75; color: rgba(255,255,255,.72); max-width: 34ch; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 1rem 2.1rem; border-radius: var(--radius-pill);
  font-family: var(--font-ui); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  transition: opacity .2s, background .2s, color .2s, transform .25s cubic-bezier(.25,.46,.45,.94);
}
.btn-gold { background: var(--paper); color: var(--ink); }
.btn-gold:hover { background: #e9e9e9; }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); }
.hero .btn-ghost { border: 1.5px solid rgba(255,255,255,.85); color: #fff; background: rgba(0,0,0,.3); backdrop-filter: blur(2px); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(0,0,0,.45); }
.btn:hover { opacity: .88; transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

/* sections */
main section { padding: var(--section-py) var(--px); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.eyebrow { color: var(--accent); font-family: var(--font-ui); font-weight: 700; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .9rem; }
h2 { font-family: var(--font-display); font-style: normal; font-weight: 600; font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 1.35; padding-bottom: .08em; color: var(--ink); margin-bottom: 1.25rem; text-wrap: balance; }
h3 { font-family: var(--font-sub); font-style: normal; font-weight: 500; font-size: 1.2rem; line-height: 1.4; padding-bottom: .05em; color: var(--ink); margin-bottom: .6rem; }
.lede { color: var(--ink-2); max-width: 68ch; margin-bottom: 3rem; font-size: 1.05rem; }
p { color: var(--ink-2); }

/* space overlay — 풀블리드 배경 + 플로팅 카드 */
.space-overlay { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.space-overlay__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.space-overlay__dim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,11,.82) 0%, rgba(11,11,11,.35) 55%, rgba(11,11,11,.1) 100%); }
.space-overlay__card { position: relative; z-index: 2; max-width: 520px; padding: 0 var(--px); }
.space-overlay__card .eyebrow { color: var(--accent); }
.space-overlay__card h2 { color: #fff; }
.space-overlay__card p { color: rgba(255,255,255,.75); margin-bottom: 1.5rem; }
@media (max-width: 768px) {
  .space-overlay { min-height: 60vh; }
  .space-overlay__dim { background: linear-gradient(0deg, rgba(11,11,11,.88) 30%, rgba(11,11,11,.4) 100%); }
}

/* pull quote */
.pullquote {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--ink); border-left: 3px solid var(--accent); padding: .2rem 0 .2rem 1.5rem;
  margin: 1.5rem 0; line-height: 1.5;
}

/* tag chips */
.tag-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.tag {
  display: inline-flex; align-items: center; padding: .5rem 1.1rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong); font-family: var(--font-ui); font-size: .8rem; font-weight: 600; color: var(--ink-2);
}

/* about split — 텍스트 섹션에 사진 결합 */
.about-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-split__media { position: relative; aspect-ratio: 4/5; }
.about-split__media > img { width: 100%; height: 100%; object-fit: cover; }
.about-split__media-sm {
  position: absolute; right: -1.5rem; bottom: -1.5rem; width: 46%; aspect-ratio: 1/1;
  border: 6px solid var(--paper); box-shadow: 0 20px 40px -20px rgba(17,17,17,.4);
}
.about-split__media-sm img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__media { aspect-ratio: 16/10; margin-bottom: 1rem; }
  .about-split__media-sm { width: 40%; right: -.75rem; bottom: -.75rem; border-width: 4px; }
}

/* cards */
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color .25s, transform .25s cubic-bezier(.25,.46,.45,.94), box-shadow .25s;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-6px); box-shadow: 0 18px 32px -22px rgba(17,17,17,.35); }
.card-icon { width: 40px; height: 40px; border: 1px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 1.25rem; font-family: var(--font-sub); font-style: normal; font-size: 1.05rem; }

/* gallery */
.gallery figure { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.gallery img { transition: transform .5s cubic-bezier(.25,.46,.45,.94); aspect-ratio: 4/3; object-fit: cover; filter: grayscale(.08); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: .8rem 1rem; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent); font-family: var(--font-ui); font-weight: 600; font-size: .76rem; letter-spacing: .04em; color: #fff; }

/* table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
th { background: var(--paper-2); color: var(--ink); font-family: var(--font-ui); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
tr:last-child td { border-bottom: none; }

/* faq */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--ink);
  padding: 1.25rem 0; font-size: 1rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q::after { content: '+'; color: var(--ink); font-size: 1.4rem; font-weight: 300; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr; overflow: hidden; color: var(--ink-2);
  transition: grid-template-rows .35s ease, padding-bottom .35s ease; padding-bottom: 0;
}
.faq-a > p { overflow: hidden; min-height: 0; }
.faq-item.open .faq-a { grid-template-rows: 1fr; padding-bottom: 1.25rem; }

/* related pages */
.related-card { display: block; padding: 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .25s, transform .25s cubic-bezier(.25,.46,.45,.94), box-shadow .25s; }
.related-card:hover { border-color: var(--line-strong); transform: translateY(-6px); box-shadow: 0 18px 32px -22px rgba(17,17,17,.35); }

/* contact channel cards */
.channel-card { display: flex; align-items: center; gap: 1rem; padding: 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .25s, transform .25s cubic-bezier(.25,.46,.45,.94), box-shadow .25s; }
.channel-card:hover { border-color: var(--line-strong); transform: translateY(-6px); box-shadow: 0 18px 32px -22px rgba(17,17,17,.35); }
.channel-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--accent); display: flex; align-items: center; justify-content: center; color: var(--accent); font-family: var(--font-sub); font-style: normal; font-size: 1.2rem; flex-shrink: 0; }

/* process steps */
.proc { display: flex; gap: 0; }
.proc-step { flex: 1; position: relative; padding: 1.5rem 1rem; text-align: center; }
.proc-num { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--paper); font-weight: 600; font-family: var(--font-sub); font-style: normal; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; position: relative; z-index: 2; }
.proc-num::after { content: ''; position: absolute; top: 50%; left: 100%; width: 100%; height: 1px; background: var(--line-strong); }
.proc-step:last-child .proc-num::after { display: none; }
@media (max-width: 768px) {
  .proc { flex-direction: column; gap: 10px; }
  .proc-step { flex-direction: column; padding: 24px 0; }
  .proc-num::after { display: none; }
}

/* photo strip — 풀블리드 가로 갤러리 (sgd.vitalvibeland.com 구조 참고) */
.photo-strip { display: grid; grid-template-columns: repeat(5, 1fr); grid-auto-rows: 420px; gap: 2px; background: var(--ink); }
.ps-item { position: relative; overflow: hidden; height: 100%; margin: 0; }
.ps-item.wide { grid-column: span 2; }
.ps-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.25,.46,.45,.94); }
.ps-item:hover img { transform: scale(1.07); }
.ps-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,.78), transparent);
  color: #fff; font-family: var(--font-ui); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
}
@media (max-width: 900px) {
  .photo-strip { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; }
}
@media (max-width: 600px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .ps-item.wide { grid-column: span 2; }
}

/* 오시는 길 — 정보 + 구글맵 */
.map-section { padding: var(--section-py) var(--px); }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; max-width: 1280px; margin: 0 auto; align-items: start; }
.map-info-row { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.map-info-row:last-of-type { border-bottom: none; }
.map-icon {
  width: 40px; height: 40px; border: 1px solid var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  flex-shrink: 0; font-size: 1.05rem;
}
.map-label { font-family: var(--font-ui); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); margin-bottom: .3rem; }
.map-text { font-size: .95rem; color: var(--ink); }
.map-text a { color: var(--accent); font-weight: 600; }
.map-text a:hover { text-decoration: underline; }
.map-text-sub { font-size: .85rem; color: var(--ink-2); margin-top: .25rem; }
.map-embed { border: 1px solid var(--line); overflow: hidden; min-height: 420px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
@media (max-width: 900px) {
  .map-grid { grid-template-columns: 1fr; }
  .map-embed { min-height: 320px; }
  .map-embed iframe { min-height: 320px; }
}

/* parallax video section */
.parallax-section {
  position: relative; height: 82vh; min-height: 480px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.parallax-media { position: absolute; top: -12%; left: 0; width: 100%; height: 124%; will-change: transform; }
.parallax-media video { width: 100%; height: 100%; object-fit: cover; }
.parallax-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.5)); }
.parallax-content { position: relative; z-index: 2; max-width: 640px; padding: 0 var(--px); }
.parallax-content .eyebrow { color: var(--accent); }
.parallax-content h2 { color: #fff; }
@media (max-width: 768px) {
  .parallax-section { height: 62vh; }
  .parallax-media { top: -6%; height: 112%; }
}
@media (prefers-reduced-motion: reduce) {
  .parallax-media { transform: none !important; }
}

/* footer — 실측: 전면 다크(#111/#fff) 3단 + 서브푸터(구분선+소셜) */
footer { background: var(--ink); color: var(--paper); padding-top: 4.5rem; }
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 var(--px) 3rem;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem;
}
.footer-col .brand { color: var(--paper); display: inline-block; margin-bottom: 1rem; }
.footer-col p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.8; }
.footer-eyebrow { font-family: var(--font-ui); font-weight: 700; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-family: var(--font-ui); font-weight: 600; color: rgba(255,255,255,.78); font-size: .86rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-cta {
  display: inline-block; margin-top: 1.25rem; background: var(--paper); color: var(--ink);
  padding: .65rem 1.4rem; border-radius: var(--radius-pill);
  font-family: var(--font-ui); font-weight: 700; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  transition: opacity .2s;
}
.footer-cta:hover { opacity: .85; }
.footer-sub {
  border-top: 1px solid rgba(255,255,255,.14);
  max-width: 1280px; margin: 0 auto; padding: 1.5rem var(--px);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: rgba(255,255,255,.4); font-size: .78rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-ui);
  font-size: .68rem; font-weight: 700; letter-spacing: .02em; color: #fff; transition: border-color .2s;
}
.footer-social a:hover { border-color: #fff; }
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* mobile sticky CTA */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  background: var(--ink); color: var(--paper); text-align: center;
  padding: 1rem; font-family: var(--font-ui); font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
}
@media (max-width: 768px) { .sticky-cta { display: block; } main { padding-bottom: 4rem; } }

/* animations — 진입 시 페이드+상승+살짝 스케일/회전으로 "튀어나오는" 느낌 */
.anim-fade-up {
  opacity: 0; transform: translateY(32px) scale(.96) rotate(-.6deg);
  transition: opacity .75s cubic-bezier(.25,.46,.45,.94), transform .75s cubic-bezier(.25,.46,.45,.94);
}
.anim-fade-up.visible { opacity: 1; transform: translateY(0) scale(1) rotate(0); }

/* 원+연결선으로 이어진 컴포넌트는 회전/스케일이 연결선과 어긋나 보여 단순 페이드업만 적용 */
.proc-step.anim-fade-up { transform: translateY(20px); }
.proc-step.anim-fade-up.visible { transform: translateY(0); }
.anim-fade-up[data-delay="1"] { transition-delay: .1s; }
.anim-fade-up[data-delay="2"] { transition-delay: .2s; }
.anim-fade-up[data-delay="3"] { transition-delay: .3s; }
.anim-fade-up[data-delay="4"] { transition-delay: .4s; }
.anim-fade-up[data-delay="5"] { transition-delay: .5s; }

/* 그리드/갤러리 자식 요소 자동 스태거 (data-delay 없이도 카드가 순서대로 튀어나옴) */
.dp-g2 > .anim-fade-up:nth-child(1), .dp-g3 > .anim-fade-up:nth-child(1),
.dp-g4 > .anim-fade-up:nth-child(1), .gallery > .anim-fade-up:nth-child(1) { transition-delay: .05s; }
.dp-g2 > .anim-fade-up:nth-child(2), .dp-g3 > .anim-fade-up:nth-child(2),
.dp-g4 > .anim-fade-up:nth-child(2), .gallery > .anim-fade-up:nth-child(2) { transition-delay: .13s; }
.dp-g2 > .anim-fade-up:nth-child(3), .dp-g3 > .anim-fade-up:nth-child(3),
.dp-g4 > .anim-fade-up:nth-child(3), .gallery > .anim-fade-up:nth-child(3) { transition-delay: .21s; }
.dp-g4 > .anim-fade-up:nth-child(4), .gallery > .anim-fade-up:nth-child(4) { transition-delay: .29s; }
.gallery > .anim-fade-up:nth-child(5) { transition-delay: .37s; }
.gallery > .anim-fade-up:nth-child(6) { transition-delay: .45s; }

/* 404 */
.page-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem var(--px); }
.page-404 h1 { font-family: var(--font-display); font-style: italic; font-size: 5rem; color: var(--ink); }
