/* ============================================================
   MOOD BY · 스타일
   색상/폰트만 바꾸려면 아래 :root 변수만 수정하세요.
   ============================================================ */
:root {
  --bg:        #FFF8F2;   /* 전체 배경 (무드바이 크림) */
  --bg-alt:    #FBEEE4;   /* 섹션 교차 배경 */
  --ink:       #4E3D34;   /* 기본 글자색 (웜 브라운) */
  --muted:     #927F71;   /* 보조 글자색 */
  --line:      #EBDDD0;   /* 구분선 */
  --accent:    #C58A63;   /* 포인트 색 (웜 카라멜) */
  --logo:      "Playfair Display", "Cormorant Garamond", serif;
  --serif:     "Cormorant Garamond", "Noto Sans KR", serif;
  --myeongjo:  "Nanum Myeongjo", "AppleMyungjo", "Batang", serif;
  --sans:      "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  --max:       1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.section { padding: 110px 24px; }
.content-panel {
  display: none;
  min-height: calc(100vh - 96px);
  scroll-margin-top: 120px;
}
.content-panel.active {
  display: block;
  animation: panelIn .45s ease both;
}
@keyframes panelIn { from { opacity: 0; } to { opacity: 1; } }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-label {
  font-size: 12px; letter-spacing: 4px; color: var(--accent);
  font-weight: 500; margin-bottom: 14px; text-transform: uppercase;
}
.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: 42px; line-height: 1.2; letter-spacing: .5px;
}

/* ============ 헤더 ============ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(250, 247, 242, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 14px 0;
}
.header-inner {
  width: 100%; margin: 0 auto; padding: 0 24px;
  position: relative; display: grid; justify-items: center; gap: 12px;
}
.logo {
  font-family: var(--logo); font-size: 25px; font-weight: 600;
  letter-spacing: 2px; line-height: 1; text-align: center;
  color: var(--ink); transition: color .4s;
}
.scrolled .logo { color: var(--ink); }
.nav { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.nav a {
  font-size: 13px; letter-spacing: 1.5px; color: var(--ink);
  font-weight: 400; position: relative; transition: color .4s;
}
.scrolled .nav a { color: var(--ink); }
.scrolled .nav a.active,
.nav.open a.active { color: var(--accent); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent); transition: width .3s;
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }

.nav-toggle {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }
.scrolled .nav-toggle span { background: var(--ink); }

/* ============ 히어로 ============ */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05); animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero { background: var(--bg); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,248,242,.35), rgba(255,248,242,.55)); }
.scroll-hint { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); }
.scroll-hint span { display: block; width: 1px; height: 50px; background: rgba(78,61,52,.45); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{ opacity:.2; transform:scaleY(.4); transform-origin:top;} 50%{ opacity:1; transform:scaleY(1);} }

/* ============ 소개 ============ */
.about { background: var(--bg-alt); }
.about-grid {
  max-width: var(--max); margin: 0 auto; display: grid;
  grid-template-columns: minmax(0, 760px); gap: 32px; justify-content: center; align-items: center; text-align: center;
}
.about-text { text-align: center; font-family: var(--myeongjo); }
.about-text .section-label { font-family: var(--myeongjo); font-size: 11px; font-weight: 400; letter-spacing: 3px; }
.about-text .section-title { margin-bottom: 16px; font-family: var(--myeongjo); font-size: 25px; font-weight: 700; text-align: center; }
.about-body { max-width: 620px; margin: 0 auto; }
.about-body p { color: var(--muted); margin-bottom: 8px; font-size: 13px; line-height: 1.78; font-weight: 400; }

/* ============ 대표 작가 ============ */
.photographer { background: var(--bg); }
.photographer-grid {
  max-width: 720px; margin: 0 auto; display: grid;
  grid-template-columns: minmax(0, 1fr); gap: 34px; align-items: center;
  text-align: center; justify-content: center;
}
.photographer-copy { max-width: 560px; margin: 0 auto; font-family: var(--myeongjo); }
.photographer-copy .section-label { font-family: var(--myeongjo); font-size: 11px; font-weight: 400; letter-spacing: 3px; }
.photographer-copy .section-title { font-family: var(--myeongjo); }
.photographer-role { color: var(--accent); font-size: 12.5px; font-weight: 400; margin: 4px 0 20px; }
.photographer-body p { color: var(--muted); font-size: 13px; line-height: 1.76; margin-bottom: 8px; font-weight: 400; }
.photographer-body p.photographer-signature { font-size: 14px; font-weight: 700; }
.photographer-promise {
  max-width: 500px; margin: 18px auto 0; padding: 13px 15px; border: 1px solid rgba(168,146,122,.32);
  border-radius: 8px; background: rgba(168,146,122,.1); color: var(--ink); font-family: var(--sans); font-size: 12.5px; line-height: 1.65; font-weight: 500;
}
.photographer-profile { position: relative; width: min(100%, 340px); margin: 0 auto; }
.photographer-profile img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--bg-alt);
}
.photographer .reveal-left,
.photographer .reveal-right { transform: translateY(34px); }
.profile-stats {
  position: absolute; right: 20px; bottom: 20px; min-width: 148px;
  padding: 18px 20px; border: 1px solid rgba(255,255,255,.52); border-radius: 8px;
  color: #fff; background: rgba(46,42,38,.52); backdrop-filter: blur(12px);
}
.profile-stats span,
.profile-stats strong { display: block; }
.profile-stats span { font-size: 12px; opacity: .76; }
.profile-stats strong { margin-top: 2px; font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: 1.1; }

/* ============ 신뢰 포인트 ============ */
.why { background: #f7f3ed; }
.trust-grid {
  max-width: var(--max); margin: 0 auto; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.trust-card {
  min-height: 164px; padding: 22px 21px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg); transition: transform .35s, box-shadow .35s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(80,68,55,.08); }
.trust-icon {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 30px; padding: 0 9px; border-radius: 8px;
  color: #fff; background: var(--ink); font-size: 11px; font-weight: 700;
}
.trust-card h3 { margin: 14px 0 7px; font-size: 15.5px; font-weight: 500; }
.trust-card p { color: var(--muted); font-size: 13px; line-height: 1.6; }

/* ============ 포트폴리오 ============ */
.portfolio { max-width: var(--max); margin: 0 auto; }
.filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 46px; }
.filter {
  background: none; border: 1px solid var(--line); color: var(--muted);
  padding: 9px 24px; font-size: 13px; letter-spacing: 1px; cursor: pointer;
  border-radius: 40px; font-family: var(--sans); transition: .3s;
}
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.gallery {
  max-height: min(74vh, 760px); overflow-y: auto; overscroll-behavior: contain;
  display: grid; grid-template-columns: repeat(4, 1fr);
  justify-content: center; align-content: start; gap: 18px; padding: 0 8px 6px 0;
  scroll-snap-type: y proximity;
}
.gallery::-webkit-scrollbar { width: 8px; }
.gallery::-webkit-scrollbar-track { background: rgba(227,218,205,.55); }
.gallery::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 999px; }
.gallery-item { cursor: pointer; scroll-snap-align: start; }
.gallery-venue {
  text-align: center; font-family: var(--serif); font-size: 16px; font-weight: 400;
  color: var(--ink); letter-spacing: .5px; padding: 4px 6px 12px;
}
.gallery-photo { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--bg-alt); }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item:hover .gallery-photo img { transform: scale(1.06); }
.gallery-empty {
  grid-column: 1 / -1; padding: 48px 20px; border: 1px solid var(--line); border-radius: 8px;
  color: var(--muted); text-align: center; background: rgba(255,255,255,.36);
}
.album-card .cap {
  justify-content: flex-start;
  padding: 24px;
  opacity: 1;
  letter-spacing: 0;
  background: linear-gradient(180deg, rgba(46,42,38,0) 34%, rgba(46,42,38,.72));
}
.album-meta strong,
.album-meta em {
  display: block;
  font-style: normal;
}
.album-meta strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
}
.album-meta em {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  opacity: .86;
}
.album-count {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  min-width: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 8px;
  color: #fff;
  background: rgba(46,42,38,.38);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
/* 영상 타일의 재생 버튼 */
.gallery-photo .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.85);
  backdrop-filter: blur(2px); transition: background .3s, transform .3s;
}
.gallery-photo .play::after {
  content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #fff;
}
.gallery-item.is-video:hover .gallery-photo .play { background: rgba(255,255,255,.32); transform: translate(-50%, -50%) scale(1.08); }

/* ============ 가격 ============ */
.price { background: var(--bg-alt); }
.price-grid { max-width: 720px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.price-card {
  background: var(--bg); border: 1px solid var(--line); padding: 46px 34px; text-align: center;
  font-family: var(--sans); color: var(--ink); cursor: pointer;
  transition: transform .35s, box-shadow .35s, border-color .35s, background .35s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(80,68,55,.12); }
.price-card.active { border-color: var(--accent); background: #fff; box-shadow: 0 18px 40px rgba(80,68,55,.12); }
.price-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: 1px; }
.price-card .pc-desc { color: var(--muted); font-size: 14px; margin: 8px 0 22px; }
.price-card .pc-price { font-size: 24px; font-weight: 500; color: var(--accent); margin-bottom: 24px; }
.price-card .pc-count { display: block; border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted); font-size: 13px; }
.price-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 34px; }
.product-guide {
  max-width: 760px; margin: 34px auto 0; display: block; text-align: left;
}
.product-filters { max-width: none; margin-bottom: 30px; }
.product-block { margin-top: 0; }
.product-block-head { text-align: center; margin-bottom: 16px; }
.product-block-head h3 { font-family: var(--serif); font-size: 25px; font-weight: 600; letter-spacing: .5px; }
.product-block-head .pb-price { color: #c0392b; font-size: 19px; font-weight: 600; margin-top: 6px; }
.product-table-wrap {
  border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  background: var(--bg);
}
.product-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.product-table .pt-col-cat { width: 120px; }
.product-table th,
.product-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); vertical-align: middle; }
.product-table td:last-child { border-right: 0; }
/* 전체폭 안내 배너 행 */
.product-table .product-intro {
  text-align: center; font-weight: 500; color: var(--ink); font-size: 14px;
  background: rgba(168,146,122,.1); border-right: 0;
}
.product-table tbody th {
  width: 84px; background: rgba(168,146,122,.08); color: var(--ink);
  font-size: 13px; font-weight: 600; text-align: center; word-break: keep-all;
}
.product-table tbody td { color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.product-table tr:last-child th,
.product-table tr:last-child td { border-bottom: 0; }
.product-table ul { list-style: none; }
.product-table li { position: relative; padding: 5px 0 5px 12px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.product-table li::before {
  content: "-"; position: absolute; left: 0; top: 5px; color: var(--muted);
}
.product-table-empty,
.product-empty { color: var(--muted); text-align: center; font-size: 14px; }

/* ============ 예약 가능 일정 ============ */
.availability { background: var(--bg); }
.availability-inner {
  max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 42px; align-items: center;
}
.availability-note { margin-top: 18px; color: var(--muted); font-size: 16px; }
.availability-panel {
  padding: 34px; border: 1px solid var(--line); border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f5eee7);
}
.availability-panel p {
  color: var(--ink); font-size: 22px; font-weight: 500; line-height: 1.5;
}
.availability-panel ul { list-style: none; margin-top: 22px; }
.availability-panel li {
  padding: 11px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px;
}

/* ============ 문의 ============ */
.contact { text-align: center; }
.contact-lead { color: var(--muted); font-size: 14px; margin-bottom: 34px; }
.contact-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.contact-links a {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line); padding: 13px 26px; border-radius: 40px;
  font-size: 13px; letter-spacing: .5px; transition: .3s;
}
.contact-links a:hover { border-color: var(--accent); color: var(--accent); }
.contact-links .primary-contact {
  border-color: #f2d000; background: #fee500; color: #2e2a26;
  font-weight: 500; box-shadow: 0 12px 30px rgba(80,68,55,.1);
}
.contact-links .primary-contact:hover { border-color: #e0c300; color: #2e2a26; transform: translateY(-2px); }

/* ============ 제휴 ============ */
.partners { background: var(--bg-alt); }
.partners-lead { max-width: 620px; margin: 16px auto 0; color: var(--muted); font-size: 16px; }
.partner-grid {
  max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.partner-card {
  min-height: 150px; padding: 24px 18px; border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg); text-align: center;
}
.partner-logo {
  width: 58px; height: 58px; margin: 0 auto 14px; border: 1px solid var(--line); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; overflow: hidden; color: var(--accent);
  background: rgba(255,255,255,.56); font-family: var(--serif); font-size: 22px; font-weight: 600;
}
.partner-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.partner-card h3 { font-size: 16px; font-weight: 500; }
.partner-card p { margin-top: 4px; color: var(--muted); font-size: 13px; }
.partner-action { text-align: center; margin-top: 28px; }
.partner-action a {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px;
  padding: 0 26px; border-radius: 40px; color: #fff; background: var(--accent);
  font-size: 14px; font-weight: 500; transition: background .3s;
}
.partner-action a:hover { background: #8c765e; }

/* ============ 푸터 ============ */
.site-footer { display: none; text-align: center; padding: 56px 24px; border-top: 1px solid var(--line); }
body.panel-open .site-footer { display: block; }
.footer-brand { font-family: var(--logo); font-size: 16px; letter-spacing: 2.4px; font-weight: 600; }
.footer-copy { color: var(--muted); font-size: 12px; margin-top: 10px; }

/* ============ 라이트박스 ============ */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(28,24,21,.94); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-stage { max-width: 92vw; max-height: 86vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.lb-media { max-width: 92vw; max-height: calc(86vh - 72px); object-fit: contain; box-shadow: 0 10px 60px rgba(0,0,0,.5); animation: lbIn .4s ease; }
video.lb-media, iframe.lb-media { width: min(92vw, 1100px); aspect-ratio: 16/9; height: auto; background: #000; }
.lightbox.scroll-mode { align-items: stretch; }
.lightbox.scroll-mode .lb-stage {
  width: min(960px, calc(100vw - 32px)); max-width: none; max-height: none;
  height: min(88vh, 980px); margin: auto; padding: 34px 18px 38px;
  align-items: stretch; justify-content: flex-start; gap: 24px;
  overflow-y: auto; overscroll-behavior: contain; scrollbar-gutter: stable;
}
.lightbox.scroll-mode .lb-stage::-webkit-scrollbar { width: 8px; }
.lightbox.scroll-mode .lb-stage::-webkit-scrollbar-track { background: rgba(255,255,255,.12); }
.lightbox.scroll-mode .lb-stage::-webkit-scrollbar-thumb { background: rgba(255,255,255,.45); border-radius: 999px; }
.lightbox.scroll-mode .lb-nav { display: none; }
.lb-scroll-head { color: #fff; text-align: center; padding: 0 10px 4px; }
.lb-scroll-head strong { display: block; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.15; }
.lb-scroll-head span { display: block; margin-top: 7px; color: rgba(255,255,255,.68); font-size: 13px; }
.lb-scroll-item { scroll-margin-top: 18px; }
.lb-scroll-media {
  width: 100%; height: auto; max-height: none; object-fit: contain;
  background: #14110f; box-shadow: 0 10px 46px rgba(0,0,0,.42); animation: lbIn .35s ease;
}
video.lb-scroll-media,
iframe.lb-scroll-media { aspect-ratio: 16/9; border: 0; }
.lb-scroll-caption { margin-top: 10px; color: rgba(255,255,255,.72); text-align: center; font-size: 13px; }
.lb-info {
  width: min(92vw, 760px);
  color: #fff;
  text-align: center;
}
.lb-info strong,
.lb-info span {
  display: block;
}
.lb-info strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}
.lb-info span {
  margin-top: 5px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
@keyframes lbIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.lb-close { position: absolute; top: 24px; right: 30px; background: none; border: none; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; font-size: 60px; cursor: pointer; padding: 0 20px; opacity: .7; transition: opacity .2s; }
.lb-nav:hover { opacity: 1; }
.lb-prev { left: 10px; } .lb-next { right: 10px; }

/* ============ Q&A ============ */
.faq-list { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; font-family: var(--sans);
  display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 22px 8px; color: var(--ink); font-size: 15px; font-weight: 400; transition: color .25s;
}
.faq-q:hover { color: var(--accent); }
.faq-qmark { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--accent); flex: none; width: 20px; }
.faq-qtext { flex: 1; line-height: 1.5; }
.faq-icon { position: relative; width: 16px; height: 16px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--accent); transition: transform .35s ease;
  top: 50%; left: 50%;
}
.faq-icon::before { width: 16px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 1.5px; height: 16px; transform: translate(-50%, -50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 8px 24px 52px; color: var(--muted); font-size: 13.5px; line-height: 1.75; }

/* ============ 예약 절차 ============ */
.process-list { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-step { text-align: center; padding: 0 14px; position: relative; }
.process-step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; left: 50%; width: 100%; height: 1px;
  background: var(--line); z-index: 0;
}
.process-step .num {
  position: relative; z-index: 1; width: 54px; height: 54px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--bg); border: 1px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 22px; font-weight: 600;
}
.process-step .p-title { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.process-step .p-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ============ 스크롤 등장 애니메이션 ============ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.about .reveal.reveal-left,
.about .reveal.reveal-right,
.photographer .reveal.reveal-left,
.photographer .reveal.reveal-right { transform: translateY(34px); }
.reveal.in { opacity: 1; transform: none; }

/* 모션 최소화 설정을 켠 사용자는 애니메이션 제거 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   무드바이 신규 컴포넌트
   ============================================================ */

/* 히어로 카피 (밝은 테마) */
.hero-copy { position: relative; z-index: 2; color: var(--ink); padding: 0 24px; }
.hero-logo {
  font-family: var(--logo); font-size: 60px; font-weight: 600;
  letter-spacing: 1px; line-height: 1.12; display: flex; flex-wrap: wrap; gap: 0 .35em; justify-content: center; align-items: baseline;
}
.hero-word { color: var(--accent); transition: opacity .5s, color .5s; min-width: 2.4em; text-align: left; }
.hero-word.swap { opacity: 0; }
.hero-tagline { margin-top: 16px; font-family: var(--logo); font-style: italic; font-size: 22px; color: var(--muted); letter-spacing: .5px; }
.hero-sub { margin-top: 16px; font-family: var(--myeongjo); font-size: 16px; line-height: 1.8; color: var(--ink); opacity: .82; }

/* 공통 보조 */
.section-lead { max-width: 640px; margin: 16px auto 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.block-title { font-family: var(--myeongjo); font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.block-title.center { text-align: center; }
.check-list { list-style: none; max-width: 660px; margin: 0 auto; }
.check-list li { position: relative; padding: 8px 0 8px 26px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.check-list li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 7px; height: 11px; border: solid var(--accent); border-width: 0 1.5px 1.5px 0; transform: rotate(40deg); }
.about-fit { max-width: 660px; margin: 40px auto 0; }

/* 대표 소개 */
.ceo-grid { max-width: 900px; margin: 64px auto 0; display: grid; grid-template-columns: 1fr minmax(0, 300px); gap: 40px; align-items: center; }
.ceo-copy .section-label { color: var(--accent); }
.ceo-role { color: var(--accent); font-size: 13px; margin: 4px 0 18px; }
.ceo-body p { color: var(--muted); font-size: 13.5px; line-height: 1.78; margin-bottom: 8px; }
.ceo-profile img { width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--bg); border-radius: 8px; }

/* 비전 / 미션 / 약속 */
.vision-wrap { max-width: var(--max); margin: 64px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vision-col { padding: 28px 24px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); }
.vision-h { font-family: var(--logo); font-size: 13px; letter-spacing: 2px; color: var(--accent); margin-bottom: 14px; }
.vision-col ul { list-style: none; }
.vision-col li { padding: 6px 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; border-top: 1px solid var(--line); }
.vision-col li:first-child { border-top: 0; }
.vision-col p { color: var(--muted); font-size: 13.5px; line-height: 1.7; }

/* MC 사회자 명단 */
.mc { max-width: var(--max); margin: 0 auto; }
.mc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mc-card {
  --mc-c: var(--accent);
  cursor: pointer; border: 1px solid var(--line); border-top: 3px solid var(--mc-c);
  border-radius: 12px; overflow: hidden; background: #fff; transition: transform .35s, box-shadow .35s, border-color .35s;
}
.mc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(78,61,52,.12); }
.mc-photo { position: relative; aspect-ratio: 3/4; overflow: hidden; background: color-mix(in srgb, var(--mc-c) 14%, #fff); display: flex; align-items: center; justify-content: center; }
.mc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mc-card:hover .mc-photo img { transform: scale(1.05); }
.mc-initial { font-family: var(--logo); font-size: 42px; font-weight: 600; color: var(--mc-c); }
.mc-photo .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.35); border: 1px solid #fff; backdrop-filter: blur(2px);
}
.mc-photo .play::after { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); border-style: solid; border-width: 8px 0 8px 13px; border-color: transparent transparent transparent #fff; }
.mc-info { padding: 16px 16px 20px; text-align: center; }
.mc-name { font-family: var(--myeongjo); font-size: 17px; font-weight: 700; }
.mc-emoji { margin-left: 4px; }
.mc-kws { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: 10px 0; }
.mc-kw { font-size: 11.5px; color: var(--mc-c); border: 1px solid color-mix(in srgb, var(--mc-c) 45%, transparent); background: color-mix(in srgb, var(--mc-c) 8%, transparent); border-radius: 40px; padding: 3px 10px; }
.mc-strength { color: var(--muted); font-size: 12.5px; line-height: 1.55; }

/* 팔레트 무지개 모티프 (About / 회사소개) */
.palette-row { display: flex; justify-content: center; gap: 10px; margin: 8px 0 36px; flex-wrap: wrap; }
.palette-dot { width: 14px; height: 14px; border-radius: 50%; }

/* MC 상세 (라이트박스) */
.mc-detail { --mc-c: var(--accent); width: min(860px, calc(100vw - 32px)); display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.lb-video iframe { width: 100%; aspect-ratio: 16/9; border: 0; background: #000; border-radius: 8px; }
.lb-photo img { width: 100%; border-radius: 8px; }
.mc-detail-body { color: #fff; }
.mc-detail-body .mc-name { color: #fff; font-size: 24px; border-bottom: 3px solid var(--mc-c); display: inline-block; padding-bottom: 6px; }
.mc-detail-body .mc-kws { justify-content: flex-start; }
.mc-detail-body .mc-kw { color: var(--mc-c); border-color: color-mix(in srgb, var(--mc-c) 60%, transparent); background: color-mix(in srgb, var(--mc-c) 16%, transparent); }
.mc-detail-body p { color: rgba(255,255,255,.8); font-size: 14px; line-height: 1.7; margin-top: 12px; }
.mc-detail-body .mc-recommend strong, .mc-detail-body .mc-review { color: #fff; }
.mc-detail-body .mc-review { font-family: var(--serif); font-size: 18px; }

/* 가격표 */
.pricing-block { max-width: 680px; margin: 72px auto 0; }
.pricing-table-wrap { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--bg); }
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: center; }
.pricing-table thead th { background: rgba(168,146,122,.12); font-size: 13px; font-weight: 600; color: var(--ink); }
.pricing-table tbody th { text-align: left; }
.pricing-table .pt-name { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.pricing-table .pt-desc { display: block; margin-top: 3px; font-size: 12px; font-weight: 400; color: var(--muted); }
.pricing-table tbody td { font-size: 15px; color: var(--accent); font-weight: 500; }
.pricing-table tr:last-child th, .pricing-table tr:last-child td { border-bottom: 0; }

/* 아카데미 파이프라인 */
.academy { background: var(--bg-alt); }
.academy-body { max-width: 640px; margin: 0 auto; text-align: center; }
.academy-body p { color: var(--muted); font-size: 13.5px; line-height: 1.78; margin-bottom: 8px; }
.pipeline { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
.pipe-step { padding: 11px 18px; border: 1px solid var(--accent); border-radius: 40px; color: var(--accent); background: var(--bg); font-size: 13px; }
.pipe-arrow { color: var(--muted); font-size: 18px; }
.academy-criteria { max-width: 660px; margin: 28px auto 0; }
.criteria-talent { color: var(--muted); font-size: 13.5px; line-height: 1.7; text-align: center; margin-bottom: 24px; }
.criteria-talent strong { color: var(--ink); }
.criteria-h { font-family: var(--myeongjo); font-size: 16px; font-weight: 700; text-align: center; margin-bottom: 10px; }

/* 문의 2갈래 */
.contact-split { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-card { padding: 34px 28px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); }
.contact-card .block-title { margin-bottom: 8px; }
.contact-card-desc { color: var(--muted); font-size: 13px; line-height: 1.6; margin-bottom: 22px; }
.contact-card .contact-links { flex-direction: column; gap: 10px; }
.contact-links .primary-contact { border-color: var(--accent); background: var(--accent); color: #fff; box-shadow: 0 12px 30px rgba(80,68,55,.12); }
.contact-links .primary-contact:hover { background: #8c765e; border-color: #8c765e; color: #fff; transform: translateY(-2px); }
.contact-links .secondary-contact { background: var(--bg); }

/* ============ 반응형 ============ */
@media (max-width: 860px) {
  .mc-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ceo-grid { grid-template-columns: 1fr; gap: 28px; max-width: 460px; }
  .ceo-profile { max-width: 300px; margin: 0 auto; }
  .vision-wrap { grid-template-columns: 1fr; max-width: 460px; }
  .mc-detail { grid-template-columns: 1fr; gap: 16px; max-height: 84vh; overflow-y: auto; }
  .contact-split { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .photographer-grid, .availability-inner { grid-template-columns: 1fr; gap: 34px; }
  .photographer-grid { max-width: 620px; }
  .trust-grid, .product-guide { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; }
  .process-list { grid-template-columns: 1fr; max-width: 360px; gap: 26px; }
  .process-step:not(:last-child)::after { display: none; }
  .process-step { display: grid; grid-template-columns: 54px 1fr; gap: 16px; text-align: left; align-items: center; }
  .process-step .num { margin: 0; }
}
@media (max-width: 640px) {
  .section { padding: 80px 20px; }
  .nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: 72%; max-width: 300px;
    background: var(--bg); flex-direction: column; justify-content: center; gap: 30px;
    padding: 40px; transform: translateX(100%); transition: transform .4s; box-shadow: -10px 0 40px rgba(0,0,0,.1);
  }
  .nav.open { transform: none; }
  .nav a { color: var(--ink); font-size: 18px; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-toggle.open span { background: var(--ink); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-venue { font-size: 14px; padding: 4px 4px 10px; }
  .partner-grid { grid-template-columns: 1fr; }
  .profile-stats { right: 14px; bottom: 14px; }
  .availability-panel { padding: 26px 22px; }
  .availability-panel p { font-size: 19px; }
  .bf-row { grid-template-columns: 1fr; }
  .product-block { margin-top: 36px; }
  .product-table { min-width: 0; }
  .product-table th,
  .product-table td { padding: 10px 11px; }
  .product-table .pt-col-cat { width: 78px; }
}

/* ============================================================
   MOOD BY · 최종 캐스케이드
   기존 스켈레톤 뒤에서 실제 화면 적용값을 확정합니다.
   ============================================================ */
:root {
  --bg: #f8f5ef;
  --bg-alt: #eef4ef;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --ink: #24211f;
  --muted: #6e6460;
  --line: #ded5cc;
  --accent: #c76552;
  --accent-deep: #893f36;
  --sage: #2f8f83;
  --sky: #5a98b7;
  --gold: #d7a93c;
  --lavender: #8473c4;
  --shadow: 0 18px 45px rgba(42, 33, 29, .1);
  --shadow-soft: 0 10px 30px rgba(42, 33, 29, .075);
}

body {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f5ef 48%, #eef4ef 100%);
  color: var(--ink);
}

.site-header { padding: 18px 0; }
.site-header.scrolled {
  background: rgba(255, 253, 249, .9);
  border-bottom: 1px solid rgba(222, 213, 204, .7);
  box-shadow: none;
  padding: 12px 0;
}
.header-inner {
  max-width: 1240px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-items: stretch;
  gap: 28px;
  padding: 0 28px;
}
.logo {
  justify-self: start;
  font-size: 24px;
  letter-spacing: 2.8px;
}
.nav {
  justify-self: end;
  gap: 18px;
}
.nav a {
  color: rgba(36, 33, 31, .82);
  font-size: 12px;
  letter-spacing: 1.2px;
}
.nav a:hover,
.nav a.active { color: var(--accent-deep); }
.nav a::after {
  bottom: -8px;
  background: var(--accent);
}

.hero {
  height: 88svh;
  min-height: 540px;
  max-height: 860px;
  justify-content: flex-start;
  text-align: left;
  padding: 108px 28px 64px;
  background: #fffaf4;
}
.hero-bg {
  background-color: #efe7dc;
  background-position: center;
  filter: saturate(.98) contrast(1.02);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .94) 0%, rgba(255, 253, 249, .78) 38%, rgba(255, 253, 249, .22) 70%, rgba(255, 253, 249, .08) 100%),
    linear-gradient(180deg, rgba(255, 253, 249, .18) 0%, rgba(255, 253, 249, .62) 100%);
}
.hero-copy {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  color: var(--ink);
}
.hero-kicker {
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.8px;
  line-height: 1.5;
}
.hero-logo {
  display: block;
  max-width: 760px;
  margin-top: 18px;
  font-size: 64px;
  letter-spacing: 0;
  line-height: 1.02;
}
.hero-word {
  display: inline-block;
  min-width: 3.4em;
  color: var(--accent);
  text-align: left;
}
.hero-tagline {
  margin-top: 22px;
  color: var(--accent-deep);
  font-size: 23px;
  letter-spacing: 0;
}
.hero-sub {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(36, 33, 31, .78);
  font-family: var(--myeongjo);
  font-size: 16px;
  line-height: 1.85;
  opacity: 1;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.hero-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(36, 33, 31, .2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.hero-cta.primary {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}
.hero-cta.secondary {
  color: var(--ink);
  background: rgba(255, 253, 249, .52);
  backdrop-filter: blur(10px);
}
.hero-cta:hover { transform: translateY(-2px); }
.hero-cta.primary:hover {
  border-color: var(--accent-deep);
  background: var(--accent-deep);
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  max-width: 620px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(36, 33, 31, .14);
  border-radius: 999px;
  color: rgba(36, 33, 31, .74);
  background: rgba(255, 253, 249, .54);
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.scroll-hint { bottom: 18px; }

.home-preview {
  display: block;
  padding: 18px 24px 50px;
  background: linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
}
body.panel-open .hero,
body.panel-open .home-editorial,
body.panel-open .mood-marquee,
body.panel-open .home-preview { display: none; }
.home-preview-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.preview-card {
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 101, 82, .52);
  box-shadow: var(--shadow-soft);
}
.preview-label {
  display: block;
  color: var(--accent);
  font-family: var(--logo);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.preview-card strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  word-break: keep-all;
}

.section { padding: 96px 24px 110px; }
.content-panel { min-height: calc(100svh - 76px); }
.content-panel.active { animation: panelIn .36s ease both; }
.section-head { margin-bottom: 44px; }
.section-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
}
.section-title {
  color: var(--ink);
  font-size: 42px;
  letter-spacing: 0;
}
.section-lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.about { background: linear-gradient(180deg, #f8f5ef 0%, #eef4ef 100%); }
.crew,
.service,
.faq,
.contact { background: var(--surface); }
.academy { background: linear-gradient(180deg, #eef4ef 0%, #f8f5ef 100%); }

.palette-row {
  gap: 12px;
  margin: 0 0 34px;
}
.palette-dot {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .85);
  box-shadow: 0 6px 15px rgba(42, 33, 29, .12);
}
.about-body { max-width: 760px; }
.about-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.88;
}
.about-body p:first-child {
  color: var(--ink);
  font-family: var(--myeongjo);
  font-size: 18px;
  font-weight: 700;
}
.block-title {
  color: var(--ink);
  font-size: 21px;
  letter-spacing: 0;
}
.about-fit {
  max-width: 780px;
  margin-top: 48px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, .7);
}
.check-list { max-width: 760px; }
.check-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.check-list li::before { border-color: var(--sage); }

.ceo-grid {
  max-width: 980px;
  margin-top: 72px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 44px;
  padding: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ceo-grid.no-photo {
  max-width: 780px;
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
}
.ceo-role {
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 500;
}
.ceo-body p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.85;
}
.ceo-profile img {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.vision-wrap { gap: 18px; }
.vision-col,
.trust-card,
.mc-card,
.contact-card { border-radius: 8px; }
.vision-col {
  border-color: rgba(222, 213, 204, .9);
  background: rgba(255, 253, 249, .82);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}
.vision-h {
  color: var(--accent-deep);
  letter-spacing: 1.8px;
}
.vision-col li,
.vision-col p { color: var(--muted); }

.trust-grid { gap: 18px; }
.trust-card {
  min-height: 184px;
  padding: 26px 24px;
  border-color: rgba(222, 213, 204, .9);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255,255,255,.82) inset;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.trust-icon {
  min-width: 42px;
  height: 32px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  letter-spacing: .6px;
}
.trust-card:nth-child(3n + 2) .trust-icon { background: var(--sage); }
.trust-card:nth-child(3n) .trust-icon { background: var(--sky); }
.trust-card h3 {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}
.trust-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.filters { margin-bottom: 36px; }
.filter {
  min-height: 38px;
  padding: 0 18px;
  border-color: rgba(36, 33, 31, .16);
  color: rgba(36, 33, 31, .68);
  background: rgba(255, 253, 249, .64);
  font-size: 13px;
  letter-spacing: 0;
}
.filter:hover,
.filter.active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}
.mc-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.mc.content-panel {
  max-width: none;
  margin: 0;
}
.mc .section-head,
.mc .filters,
.mc .mc-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.mc-card {
  border-top-width: 4px;
  border-color: rgba(222, 213, 204, .88);
  background: var(--surface-strong);
  box-shadow: 0 1px 0 rgba(255,255,255,.85) inset;
}
.mc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.mc-photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, color-mix(in srgb, var(--mc-c) 22%, #fff 78%), #fffaf4);
}
.mc-card.no-media .mc-photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 8px;
  pointer-events: none;
}
.mc-initial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--mc-c);
}
.mc-initial em {
  font-style: normal;
  font-size: 36px;
  line-height: 1;
}
.mc-initial strong {
  color: color-mix(in srgb, var(--mc-c) 74%, #1f1a17);
  font-family: var(--myeongjo);
  font-size: 26px;
  line-height: 1;
}
.mc-info {
  min-width: 0;
  padding: 18px 16px 20px;
}
.mc-name {
  min-width: 0;
  color: var(--ink);
  font-size: 18px;
}
.mc-kws { margin: 12px 0; }
.mc-kw {
  font-size: 12px;
  font-weight: 600;
}
.mc-strength {
  min-width: 0;
  min-height: 58px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
  overflow-wrap: break-word;
  word-break: normal;
}

.process-list {
  max-width: 1040px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.process-step {
  min-height: 170px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-align: left;
}
.process-step:not(:last-child)::after { display: none; }
.process-step .num {
  width: 42px;
  height: 42px;
  margin: 0 0 18px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 18px;
}
.process-step:nth-child(3n + 2) .num { background: var(--sage); }
.process-step:nth-child(3n) .num { background: var(--sky); }
.process-step .p-title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}
.process-step .p-desc {
  color: var(--muted);
  font-size: 13.5px;
}

.pricing-block {
  max-width: 780px;
  margin-top: 64px;
}
.pricing-table-wrap {
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.pricing-table thead th { background: rgba(47, 143, 131, .08); }
.pricing-table th,
.pricing-table td { padding: 18px 20px; }
.pricing-table tbody td {
  color: var(--accent-deep);
  font-weight: 700;
}
.price-note { color: var(--muted); }

.academy-body { max-width: 720px; }
.academy-body p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.85;
}
.pipeline { gap: 8px; }
.pipe-step {
  border-color: rgba(36, 33, 31, .16);
  color: var(--ink);
  background: var(--surface);
  font-weight: 600;
}
.pipe-arrow { color: var(--accent); }
.academy-criteria {
  max-width: 760px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, .74);
}
.criteria-talent { color: var(--muted); }
.partner-action a {
  border-radius: 999px;
  background: var(--ink);
}
.partner-action a:hover { background: var(--accent-deep); }

.faq-list { max-width: 860px; }
.faq-q {
  padding: 24px 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.faq-qmark { color: var(--accent); }
.faq-a-inner {
  color: var(--muted);
  font-size: 14px;
}

.contact-lead {
  max-width: 680px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.contact-split {
  max-width: 840px;
  gap: 18px;
}
.contact-card {
  padding: 34px 30px;
  border-color: var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.contact-card-desc {
  color: var(--muted);
  font-size: 14px;
}
.contact-links a {
  min-height: 44px;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}
.contact-links .primary-contact {
  border-color: var(--ink);
  background: var(--ink);
}
.contact-links .primary-contact:hover {
  border-color: var(--accent-deep);
  background: var(--accent-deep);
}
.contact-links .secondary-contact { background: var(--surface-strong); }

.site-footer {
  background: #24211f;
  border-top: 0;
}
.footer-brand { color: #fffdf9; }
.footer-copy { color: rgba(255, 253, 249, .62); }

.mc-detail { width: min(860px, calc(100vw - 32px)); }
.mc-detail.no-media {
  display: block;
  width: min(620px, calc(100vw - 32px));
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}
.mc-detail-body .mc-name { color: #fff; }

@media (max-width: 1020px) {
  .header-inner {
    gap: 18px;
    padding: 0 22px;
  }
  .nav { gap: 13px; }
  .nav a { font-size: 11px; }
  .hero-logo { font-size: 54px; }
  .section-title { font-size: 38px; }
}

@media (max-width: 860px) {
  .home-preview-inner { grid-template-columns: 1fr; }
  .preview-card { min-height: 106px; }
  .trust-grid { grid-template-columns: 1fr; }
  .ceo-grid { padding: 34px 0; }
  .process-list { max-width: 560px; }
  .process-step {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }
  .process-step .num { margin: 0; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 0; }
  .header-inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
  }
  .logo { font-size: 21px; }
  .nav {
    width: 78%;
    max-width: 320px;
    background: rgba(255, 253, 249, .98);
  }
  .nav a { font-size: 17px; }
  .hero {
    height: 86svh;
    min-height: 560px;
    padding: 96px 20px 58px;
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 253, 249, .96) 0%, rgba(255, 253, 249, .74) 72%, rgba(255, 253, 249, .28) 100%),
      linear-gradient(180deg, rgba(255, 253, 249, .12), rgba(255, 253, 249, .72));
  }
  .hero-kicker {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .hero-logo {
    margin-top: 14px;
    font-size: 39px;
    line-height: 1.1;
  }
  .hero-tagline { font-size: 19px; }
  .hero-sub { font-size: 14px; }
  .hero-actions { margin-top: 24px; }
  .hero-cta {
    min-height: 44px;
    padding: 0 18px;
  }
  .hero-proof { gap: 6px; }
  .hero-proof span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }
  .home-preview { padding: 14px 18px 36px; }
  .preview-card { padding: 18px; }
  .preview-card strong { font-size: 15px; }
  .section { padding: 74px 18px 86px; }
  .section-title { font-size: 31px; }
  .section-lead { font-size: 14px; }
  .about-fit,
  .academy-criteria { padding: 24px 20px; }
  .about-body p,
  .academy-body p,
  .ceo-body p { font-size: 14px; }
  .about-body p:first-child { font-size: 16px; }
  .mc-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .mc.content-panel {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .mc .filters,
  .mc .section-head {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .mc .section-title {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: 27px;
    line-height: 1.24;
    overflow-wrap: break-word;
  }
  .mc .section-lead {
    width: min(100%, 320px);
  }
  .mc-card {
    min-width: 0;
    width: 100%;
  }
  .process-list {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
  .pricing-table th,
  .pricing-table td { padding: 14px 12px; }
  .pricing-table .pt-desc { font-size: 11px; }
  .contact-card { padding: 28px 22px; }
  .lb-close {
    top: 16px;
    right: 18px;
    font-size: 34px;
  }
}

/* ============================================================
   MOOD BY · 에디토리얼 모션 레이어
   ============================================================ */
:root {
  --bg: #f7f3ee;
  --bg-alt: #edf4ef;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #171412;
  --muted: #746b64;
  --line: #ded4cb;
  --accent: #d8684f;
  --accent-deep: #8f392f;
  --sage: #277f77;
  --sky: #5e98b8;
  --gold: #c89b37;
  --shadow: 0 22px 55px rgba(32, 25, 21, .12);
  --shadow-soft: 0 12px 32px rgba(32, 25, 21, .08);
}

html { background: var(--bg); }
body {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f7f3ee 44%, #edf4ef 100%);
  color: var(--ink);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--sage), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

.site-header {
  padding: 20px 0;
}
.header-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 48px;
  padding: 0;
  margin: 0 auto;
}
.site-header.scrolled .header-inner {
  padding: 0 16px;
  border: 1px solid rgba(222, 212, 203, .68);
  border-radius: 999px;
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 10px 32px rgba(32, 25, 21, .08);
}
.logo {
  font-size: 25px;
  letter-spacing: 3px;
}
.nav a {
  font-size: 12px;
  letter-spacing: 1.5px;
}

.hero {
  height: 92svh;
  min-height: 650px;
  max-height: 940px;
  padding: 118px 28px 82px;
  isolation: isolate;
}
.hero-bg {
  background-position: center;
  transform: scale(1.03);
  animation: heroBreath 18s ease-out both;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(255, 253, 248, .97) 0%, rgba(255, 253, 248, .9) 27%, rgba(255, 253, 248, .38) 58%, rgba(255, 253, 248, .1) 100%),
    radial-gradient(circle at var(--mx, 32%) var(--my, 44%), rgba(216, 104, 79, .14), transparent 34%);
  pointer-events: none;
}
.hero-overlay { display: none; }
.hero-copy {
  z-index: 2;
  transform: translateY(14px);
  animation: heroCopyIn 1s cubic-bezier(.18,.76,.22,1) .1s both;
}
.hero-kicker {
  color: var(--accent-deep);
  font-size: 12px;
  letter-spacing: 3.4px;
}
.hero-logo {
  max-width: 820px;
  margin-top: 22px;
  font-size: 72px;
  line-height: .98;
}
.hero-word {
  color: var(--accent);
  text-shadow: 0 18px 36px rgba(216, 104, 79, .18);
}
.hero-tagline {
  margin-top: 24px;
  color: var(--accent-deep);
  font-size: 25px;
}
.hero-sub {
  max-width: 600px;
  margin-top: 16px;
  color: rgba(23, 20, 18, .74);
  font-size: 17px;
}
.hero-cta,
.contact-links a,
.partner-action a {
  position: relative;
  overflow: hidden;
}
.hero-cta::after,
.contact-links a::after,
.partner-action a::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -35%;
  width: 38%;
  height: 260%;
  background: rgba(255,255,255,.28);
  transform: rotate(18deg) translateX(-150%);
  transition: transform .6s ease;
}
.hero-cta:hover::after,
.contact-links a:hover::after,
.partner-action a:hover::after {
  transform: rotate(18deg) translateX(420%);
}
.hero-proof span {
  color: rgba(23, 20, 18, .72);
  background: rgba(255, 253, 248, .72);
}

.home-editorial {
  padding: 94px 24px 86px;
  background: linear-gradient(180deg, #fffdf8 0%, #f7f3ee 100%);
}
.home-editorial-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: start;
}
.home-editorial-copy {
  position: sticky;
  top: 118px;
  padding-top: 18px;
}
.home-title {
  max-width: 520px;
  margin-top: 16px;
  font-family: var(--myeongjo);
  font-size: 38px;
  line-height: 1.32;
  font-weight: 700;
  letter-spacing: 0;
  word-break: keep-all;
}
.home-text {
  max-width: 520px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  word-break: keep-all;
}
.home-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}
.home-stat {
  min-height: 112px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .76);
  box-shadow: 0 1px 0 rgba(255,255,255,.84) inset;
}
.home-stat strong,
.home-stat .stat-suffix {
  color: var(--ink);
  font-family: var(--logo);
  font-size: 32px;
  line-height: 1;
}
.home-stat .stat-suffix {
  margin-left: 2px;
  color: var(--accent);
}
.home-stat p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.home-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.editorial-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .35s ease;
}
.editorial-card:nth-child(1) {
  grid-column: 1 / span 3;
  margin-top: 46px;
}
.editorial-card:nth-child(2) {
  grid-column: 4 / span 3;
}
.editorial-card:nth-child(3) {
  grid-column: 2 / span 4;
  min-height: 360px;
}
.editorial-card::after,
.preview-card::after,
.trust-card::after,
.mc-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 40%), rgba(255,255,255,.26), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.editorial-card:hover::after,
.preview-card:hover::after,
.trust-card:hover::after,
.mc-card:hover::after,
.contact-card:hover::after {
  opacity: 1;
}
.editorial-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.18,.76,.22,1);
}
.editorial-card:hover img { transform: scale(1.045); }
.editorial-card-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, rgba(23, 20, 18, .68), rgba(23, 20, 18, .32));
  backdrop-filter: blur(14px);
}
.editorial-card-copy span {
  display: block;
  color: rgba(255,255,255,.76);
  font-family: var(--logo);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}
.editorial-card-copy strong {
  display: block;
  margin-top: 8px;
  font-family: var(--myeongjo);
  font-size: 21px;
  line-height: 1.32;
}
.editorial-card-copy p {
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.6;
  word-break: keep-all;
}

.mood-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #171412;
}
.mood-marquee-track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 20px 0;
  animation: marqueeFlow 26s linear infinite;
}
.mood-marquee-track span {
  color: #fffdf8;
  font-family: var(--logo);
  font-size: 26px;
  font-style: italic;
  letter-spacing: 1px;
  white-space: nowrap;
}
.mood-marquee-track span::after {
  content: "·";
  margin-left: 42px;
  color: var(--accent);
  font-style: normal;
}

.home-preview {
  padding: 54px 24px 82px;
}
.preview-card,
.trust-card,
.mc-card,
.contact-card {
  position: relative;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
}
.preview-card {
  min-height: 154px;
  padding: 26px;
  background: linear-gradient(180deg, #fffdf8, rgba(255,255,255,.72));
}
.preview-card strong {
  font-family: var(--myeongjo);
  font-size: 20px;
}

.section {
  padding-top: 110px;
}
.section-label {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 4px;
}
.section-title {
  font-family: var(--myeongjo);
  font-size: 44px;
  line-height: 1.18;
  font-weight: 700;
}
.section-lead {
  font-size: 15px;
  word-break: keep-all;
}

.content-panel.active {
  animation: panelInEditorial .46s cubic-bezier(.18,.76,.22,1) both;
}

.about-body p,
.ceo-body p,
.academy-body p {
  font-size: 15px;
  line-height: 1.95;
}
.about-fit,
.academy-criteria,
.vision-col,
.trust-card,
.pricing-table-wrap,
.contact-card {
  background: rgba(255, 253, 248, .82);
  backdrop-filter: blur(12px);
}
.trust-card,
.process-step,
.mc-card {
  box-shadow: 0 1px 0 rgba(255,255,255,.86) inset;
}
.trust-card:hover,
.process-step:hover,
.mc-card:hover,
.preview-card:hover,
.contact-card:hover {
  box-shadow: var(--shadow);
}

.mc-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.mc-card {
  overflow: hidden;
  border-top-width: 0;
}
.mc-photo {
  min-height: 236px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--mc-c) 25%, #fff 75%), rgba(255,255,255,.7)),
    linear-gradient(180deg, #fff, var(--bg));
}
.mc-info {
  padding: 22px 18px 24px;
}
.mc-name {
  font-family: var(--myeongjo);
  font-size: 19px;
}
.mc-strength {
  font-size: 13.5px;
}
.mc-card.no-media .mc-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255,255,255,.34) 48% 52%, transparent 52% 100%);
  opacity: .45;
}
.mc-initial {
  position: relative;
  z-index: 1;
}

.process-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.process-step {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 104, 79, .4);
}
.pricing-table-wrap {
  border-radius: 8px;
}

.faq-q {
  font-family: var(--sans);
}
.contact {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f7f3ee 100%);
}
.contact-card {
  min-height: 242px;
}
.contact-card .block-title {
  font-size: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  transition:
    opacity .85s cubic-bezier(.18,.76,.22,1),
    transform .85s cubic-bezier(.18,.76,.22,1),
    filter .85s cubic-bezier(.18,.76,.22,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@keyframes heroBreath {
  from { transform: scale(1.08); }
  to { transform: scale(1.03); }
}
@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(32px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(14px); filter: blur(0); }
}
@keyframes panelInEditorial {
  from { opacity: 0; transform: translateY(18px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes marqueeFlow {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

@media (max-width: 1020px) {
  .hero-logo { font-size: 58px; }
  .home-editorial-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .home-editorial-copy {
    position: static;
  }
  .home-title {
    max-width: 760px;
  }
  .home-text {
    max-width: 760px;
  }
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: calc(100% - 36px);
  }
  .site-header.scrolled .header-inner {
    padding: 0 12px;
  }
  .hero {
    height: auto;
    min-height: 760px;
    padding: 108px 20px 76px;
  }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(255,253,248,.94) 0%, rgba(255,253,248,.78) 54%, rgba(255,253,248,.92) 100%);
  }
  .hero-bg {
    background-position: 61% center;
  }
  .hero-logo {
    font-size: 43px;
    line-height: 1.08;
  }
  .hero-word {
    display: block;
    margin-top: 6px;
  }
  .hero-tagline {
    font-size: 20px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .home-editorial {
    padding: 74px 18px 66px;
  }
  .home-title {
    font-size: 30px;
  }
  .home-text {
    font-size: 14px;
  }
  .home-stats {
    grid-template-columns: 1fr;
  }
  .home-gallery {
    grid-template-columns: 1fr;
  }
  .editorial-card,
  .editorial-card:nth-child(1),
  .editorial-card:nth-child(2),
  .editorial-card:nth-child(3) {
    grid-column: auto;
    min-height: 360px;
    margin-top: 0;
  }
  .mood-marquee-track {
    gap: 30px;
    padding: 16px 0;
  }
  .mood-marquee-track span {
    font-size: 21px;
  }
  .home-preview {
    padding: 42px 18px 64px;
  }
  .section {
    padding: 80px 18px 88px;
  }
  .section-title {
    font-size: 32px;
  }
  .process-list {
    grid-template-columns: 1fr;
  }
  .mc-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
  .mc-photo {
    min-height: 260px;
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MOOD BY · 럭셔리 팔레트 업그레이드
   ============================================================ */
:root {
  --bg: #FFF8F2;
  --bg-alt: #F6ECE2;
  --surface: #FFFDF9;
  --surface-strong: #FFFFFF;
  --ink: #4E3D34;
  --muted: #806F63;
  --line: #E8D9CA;
  --accent: #D9774C;
  --accent-deep: #7B3C31;
  --sage: #5E8B73;
  --sky: #7EAAC2;
  --gold: #CBA45B;
  --rose: #CF7A8F;
  --lavender: #9B83C8;
  --shadow: 0 24px 62px rgba(78, 61, 52, .13);
  --shadow-soft: 0 14px 36px rgba(78, 61, 52, .09);
}

html,
body {
  background: var(--bg);
}
body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #FFF8F2 0%, #FFFDF9 42%, #F6ECE2 100%);
}

.scroll-progress {
  background: linear-gradient(90deg, #F08A3C, #9FB7C9, #6FA86B, #E58BB0, #4FA3C7, #F2C24B, #9B7EDE);
}

.site-header.scrolled .header-inner {
  background: rgba(255, 248, 242, .86);
  border-color: rgba(232, 217, 202, .82);
}
.logo {
  color: #201915;
}
.nav a {
  color: rgba(78, 61, 52, .78);
}
.nav a:hover,
.nav a.active {
  color: var(--accent-deep);
}

.hero {
  min-height: 690px;
  background: var(--bg);
}
.hero-bg {
  background-position: center center;
  filter: saturate(1.02) contrast(1.02);
}
.hero::after {
  background:
    linear-gradient(100deg, rgba(255, 248, 242, .98) 0%, rgba(255, 248, 242, .9) 30%, rgba(255, 248, 242, .5) 57%, rgba(255, 248, 242, .12) 100%),
    linear-gradient(180deg, rgba(255, 253, 249, .02) 0%, rgba(255, 248, 242, .68) 100%);
}
.hero-copy {
  position: relative;
}
.hero-copy::before {
  content: "";
  display: block;
  width: 68px;
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--accent), var(--sage), var(--sky), var(--rose));
}
.hero-kicker {
  color: var(--accent-deep);
  font-size: 12px;
  letter-spacing: 3.2px;
}
.hero-logo {
  max-width: 760px;
  color: #211813;
  font-size: 66px;
  line-height: 1.02;
}
.hero-word {
  display: block;
  min-width: 0;
  margin-top: 6px;
  color: var(--accent);
  font-family: var(--myeongjo);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.16;
  text-shadow: 0 14px 34px rgba(217, 119, 76, .15);
  word-break: keep-all;
}
.hero-tagline {
  color: var(--accent-deep);
  font-size: 26px;
}
.hero-sub {
  color: rgba(78, 61, 52, .82);
  font-size: 17px;
}
.hero-proof span {
  border-color: rgba(78, 61, 52, .14);
  color: rgba(78, 61, 52, .72);
  background: rgba(255, 248, 242, .72);
}

.hero-mood-stage {
  position: absolute;
  right: 6%;
  bottom: 16%;
  z-index: 2;
  width: min(520px, 42vw);
  height: 320px;
  pointer-events: none;
}
.floating-mood {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  display: inline-flex;
  max-width: 260px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px 10px;
  border: 1px solid color-mix(in srgb, var(--c) 32%, #fff 68%);
  border-radius: 999px;
  color: color-mix(in srgb, var(--c) 72%, #3d3029);
  background: rgba(255, 253, 249, .78);
  box-shadow: 0 10px 30px rgba(78, 61, 52, .08);
  font-family: var(--myeongjo);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(var(--r, 0deg));
  animation: floatingMood 3.6s cubic-bezier(.18,.76,.22,1) both;
  backdrop-filter: blur(10px);
}
.floating-mood.static {
  animation: none;
}

.mood-palette-section {
  position: relative;
  padding: 88px 24px 98px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #FFF8F2 0%, #FFFDF9 100%);
}
.mood-palette-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 61, 52, .18), transparent);
}
.mood-palette-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 56px;
  align-items: center;
}
.mood-palette-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  margin: 0;
  border: 1px solid rgba(232, 217, 202, .9);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
}
.mood-palette-visual::after,
.editorial-card::after,
.preview-card::after,
.trust-card::after,
.mc-card::after,
.contact-card::after {
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.24) 48%, transparent 100%);
}
.mood-palette-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.18,.76,.22,1);
}
.mood-palette-visual:hover img {
  transform: scale(1.035);
}
.palette-orbit {
  position: absolute;
  inset: 22px;
  pointer-events: none;
}
.palette-orbit span {
  position: absolute;
  width: 28px;
  height: 10px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(78, 61, 52, .16);
  transform: translate(-50%, -50%);
}
.mood-palette-copy {
  max-width: 500px;
}
.palette-title {
  margin-top: 16px;
  color: var(--ink);
  font-family: var(--myeongjo);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
  word-break: keep-all;
}
.palette-text {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
  word-break: keep-all;
}
.palette-signatures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}
.palette-signature {
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--mc-c) 26%, var(--line) 74%);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--mc-c) 17%, #fff 83%) 0%, rgba(255,255,255,.84) 100%);
  text-align: left;
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.palette-signature:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--mc-c) 48%, var(--line) 52%);
  box-shadow: var(--shadow-soft);
}
.palette-signature span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 15px;
}
.palette-signature strong {
  color: var(--ink);
  font-family: var(--myeongjo);
  font-size: 16px;
}
.palette-signature em {
  display: block;
  margin-top: 4px;
  color: rgba(78, 61, 52, .64);
  font-style: normal;
  font-size: 12px;
}
.palette-note {
  margin-top: 18px;
  color: rgba(78, 61, 52, .62);
  font-size: 12px;
  line-height: 1.7;
}

body.panel-open .mood-palette-section {
  display: none;
}

.home-editorial {
  background:
    linear-gradient(180deg, #FFFDF9 0%, #FFF8F2 100%);
}
.home-title,
.section-title {
  color: var(--ink);
}
.home-stat {
  background: rgba(255, 253, 249, .84);
}
.home-stat strong,
.home-stat .stat-suffix {
  color: var(--ink);
}
.home-stat .stat-suffix {
  color: var(--accent);
}
.mood-marquee {
  background: #4E3D34;
}
.mood-marquee-track span {
  color: #FFF8F2;
}
.mood-marquee-track span:nth-child(7n + 1)::after { color: #F08A3C; }
.mood-marquee-track span:nth-child(7n + 2)::after { color: #9FB7C9; }
.mood-marquee-track span:nth-child(7n + 3)::after { color: #6FA86B; }
.mood-marquee-track span:nth-child(7n + 4)::after { color: #E58BB0; }
.mood-marquee-track span:nth-child(7n + 5)::after { color: #4FA3C7; }
.mood-marquee-track span:nth-child(7n + 6)::after { color: #F2C24B; }

.mc.content-panel {
  background:
    linear-gradient(180deg, #FFF8F2 0%, #FFFDF9 100%);
}
.mc-grid {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}
.mc-card {
  min-height: 438px;
  border: 1px solid color-mix(in srgb, var(--mc-c) 18%, var(--line) 82%);
  background:
    linear-gradient(180deg, #FFFFFF 0%, color-mix(in srgb, var(--mc-c) 6%, #FFF8F2 94%) 100%);
}
.mc-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--mc-c), color-mix(in srgb, var(--mc-c) 30%, #fff 70%));
}
.mc-photo {
  min-height: 224px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--mc-c) 23%, #fff 77%), rgba(255,255,255,.86)),
    linear-gradient(180deg, #fff, var(--bg));
}
.mc-card.no-media .mc-photo::before {
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(255,255,255,.42) 44% 48%, transparent 48% 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.2) 0 1px, transparent 1px 46px);
}
.mc-card.no-media .mc-photo::after {
  inset: 18px;
  border-color: rgba(255, 255, 255, .74);
}
.mc-initial {
  width: 118px;
  height: 118px;
  border: 1px solid color-mix(in srgb, var(--mc-c) 28%, #fff 72%);
  border-radius: 50%;
  background: rgba(255, 253, 249, .62);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--mc-c) 16%, transparent);
  backdrop-filter: blur(8px);
}
.mc-initial em {
  font-size: 30px;
}
.mc-initial strong {
  font-size: 24px;
}
.mc-tone {
  margin-bottom: 6px;
  color: color-mix(in srgb, var(--mc-c) 74%, #4E3D34 26%);
  font-size: 11px;
  font-weight: 700;
}
.mc-name {
  font-size: 20px;
}
.mc-kw {
  border-color: color-mix(in srgb, var(--mc-c) 28%, var(--line) 72%);
  color: color-mix(in srgb, var(--mc-c) 72%, #4E3D34 28%);
  background: color-mix(in srgb, var(--mc-c) 10%, #fff 90%);
}
.mc-strength {
  color: rgba(78, 61, 52, .68);
}

.about,
.academy {
  background: linear-gradient(180deg, #FFF8F2 0%, #F8EFE6 100%);
}
.crew,
.service,
.faq,
.contact {
  background: #FFFDF9;
}
.trust-card,
.process-step,
.pricing-table-wrap,
.contact-card,
.about-fit,
.academy-criteria,
.vision-col {
  background: rgba(255, 253, 249, .86);
}

@keyframes floatingMood {
  0% {
    opacity: 0;
    transform: translate(-50%, 14px) rotate(var(--r, 0deg)) scale(.92);
    filter: blur(8px);
  }
  18% {
    opacity: 1;
    filter: blur(0);
  }
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -28px) rotate(var(--r, 0deg)) scale(1.02);
    filter: blur(5px);
  }
}

@media (max-width: 1020px) {
  .hero-logo {
    font-size: 54px;
  }
  .hero-word {
    font-size: 43px;
  }
  .hero-mood-stage {
    right: 4%;
    width: 38vw;
  }
  .mood-palette-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .mood-palette-copy {
    max-width: 760px;
  }
  .palette-signatures {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 770px;
    padding-top: 112px;
  }
  .hero-bg {
    background-position: 64% center;
  }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 242, .98) 0%, rgba(255, 248, 242, .78) 54%, rgba(255, 248, 242, .96) 100%);
  }
  .hero-copy::before {
    width: 54px;
    margin-bottom: 22px;
  }
  .hero-logo {
    font-size: 41px;
  }
  .hero-word {
    margin-top: 8px;
    font-size: 32px;
  }
  .hero-tagline {
    font-size: 20px;
  }
  .hero-mood-stage {
    display: none;
  }
  .mood-palette-section {
    padding: 70px 18px 76px;
  }
  .mood-palette-inner {
    gap: 28px;
  }
  .mood-palette-visual img {
    aspect-ratio: 4 / 3;
  }
  .palette-orbit {
    inset: 14px;
  }
  .palette-title {
    font-size: 30px;
  }
  .palette-text {
    font-size: 14px;
  }
  .palette-signatures {
    grid-template-columns: 1fr;
  }
  .palette-signature {
    min-height: 54px;
  }
  .mc-card {
    min-height: 0;
  }
}
