/* ============================================================
   OpenUp Studio — 창업 브랜딩 풀패키지
   로고라인과 별개 브랜드: 크림 배경 + 코랄 + 아치(문) 모티프
   ============================================================ */

:root {
  --cream: #FFFBF3;
  --cream-deep: #FDF1DF;
  --ink: #26221E;
  --ink-soft: #8a7c63;
  --coral: #FF7A2B;
  --coral-deep: #E86412;
  --coral-soft: #FFE8D5;
  --paper: #FFFFFF;
  --line: rgba(38, 34, 30, 0.12);
  --radius: 22px;
  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--coral); color: var(--cream); }

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

/* ============ 버튼 ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease), background 0.25s, color 0.25s, box-shadow 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--coral { background: var(--coral); color: #fff; }
.btn--coral:hover { background: var(--coral-deep); box-shadow: 0 12px 26px rgba(255, 122, 43, 0.3); }

.btn--line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--cream); }

.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28); }

.btn--lg { padding: 17px 34px; font-size: 17px; }

/* ============ 내비게이션 ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.nav.is-scrolled {
  background: rgba(250, 251, 248, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; }
.nav__symbol { width: 40px; height: 40px; flex: none; border-radius: 10px; }
.nav__wordmark { font-size: 20px; letter-spacing: -0.03em; }

.nav__menu { display: flex; gap: 6px; margin-left: auto; }
.nav__menu a {
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.nav__menu a:hover { background: var(--coral-soft); color: var(--coral-deep); }

.nav__cta { flex: none; }

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 0; background: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.nav.is-open .nav__toggle span:first-child { transform: translateY(4.75px) rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { transform: translateY(-4.75px) rotate(-45deg); }

/* ============ 히어로 ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__inner {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: 48px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}
.hero__eyebrow {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--coral-deep);
  background: var(--coral-soft);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(42px, 6.6vw, 84px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 26px;
}
.hero__title em { font-style: normal; color: var(--coral); }
.hero__sub {
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* 문(아치) 비주얼 */
.hero__visual { display: flex; justify-content: center; }
.door {
  position: relative;
  color: var(--coral);
  width: min(100%, 320px);
}
.door svg { width: 100%; height: auto; display: block; }
.door__sign {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%) rotate(-4deg);
  background: var(--ink);
  color: var(--cream);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 9px 18px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(35, 55, 78, 0.25);
}

/* 티커 */
.hero__ticker {
  position: absolute;
  inset: auto 0 0 0;
  background: var(--coral);
  color: #fff;
  overflow: hidden;
  padding-block: 15px;
  transform: rotate(-1.2deg) scale(1.02);
  transform-origin: center;
}
.hero__ticker-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: ticker 24s linear infinite;
}
.hero__ticker-track span { font-size: 18px; font-weight: 800; white-space: nowrap; }
.hero__ticker-track i { font-style: normal; font-size: 14px; opacity: 0.75; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ 공통 섹션 ============ */
.section { padding-block: clamp(90px, 12vw, 150px); }
.section--tint { background: var(--cream-deep); }

.section__head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 72px); }
.section__label {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--coral-deep);
  background: var(--coral-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.section__title {
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.04em;
}
.section__desc { margin-top: 18px; font-size: 17px; color: var(--ink-soft); font-weight: 500; }

/* ============ 4대 서비스 (아치 카드) ============ */
.quad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.quad {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 130px 130px var(--radius) var(--radius); /* 문 모양 */
  padding: 52px 26px 34px;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.quad:hover {
  transform: translateY(-8px);
  border-color: var(--coral);
  box-shadow: 0 24px 44px rgba(36, 64, 95, 0.14);
}
.quad__icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral-deep);
  display: grid;
  place-items: center;
}
.quad__icon svg { width: 34px; height: 34px; }
.quad__tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--coral-deep);
  margin-bottom: 8px;
}
.quad h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.quad p { font-size: 14.5px; color: var(--ink-soft); word-break: keep-all; }

/* ============ 왜 한 곳에서 ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.why {
  border-top: 3px solid var(--coral);
  padding-top: 24px;
}
.why__num {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  color: var(--coral-deep);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.why h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.why p { font-size: 15.5px; color: var(--ink-soft); word-break: keep-all; }

/* ============ 타임라인 ============ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tl {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tl:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(35, 55, 78, 0.1); }
.tl__day {
  display: inline-block;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  background: var(--coral);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.tl h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.tl p { font-size: 14.5px; color: var(--ink-soft); word-break: keep-all; }

/* ============ 패키지 ============ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 38px 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(35, 55, 78, 0.1); }
.plan--featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.plan__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(36, 64, 95, 0.4);
}
.plan h3 { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }
.plan__for { font-size: 14px; opacity: 0.65; margin: 4px 0 22px; }
.plan__price {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 28px;
}
.plan__price span { font-size: 20px; font-weight: 700; margin-left: 4px; }
.plan ul { display: grid; gap: 12px; margin-bottom: 34px; }
.plan li { position: relative; padding-left: 24px; font-size: 15px; font-weight: 500; }
.plan li::before { content: "✓"; position: absolute; left: 0; font-weight: 900; color: var(--coral); }
.plan li strong { font-weight: 800; }
.plan--featured li strong { color: #FFC49B; }
.plan__btn { margin-top: auto; width: 100%; }
.plan--featured .plan__btn { border-color: var(--cream); color: var(--cream); }
.plan--featured .plan__btn:hover { background: var(--cream); color: var(--ink); }

.price-note {
  margin-top: 34px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-soft);
}
.price-note a { color: var(--coral-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ============ CTA ============ */
.cta {
  background: var(--ink);
  color: var(--cream);
  padding-block: clamp(100px, 13vw, 160px);
}
.cta__inner { text-align: center; }
.cta h2 {
  font-size: clamp(36px, 5.4vw, 66px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.cta p { font-size: 18px; opacity: 0.75; margin-bottom: 44px; }
.cta__actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta__mail { font-size: 15px; opacity: 0.55; letter-spacing: 0.02em; }

/* ============ 푸터 ============ */
.footer {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(250, 251, 248, 0.14);
  padding-block: 56px;
}
.footer__inner { display: grid; gap: 16px; justify-items: start; }
.footer__brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; }
.footer__tag { font-size: 15px; opacity: 0.7; }
.footer__menu { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__menu a { font-size: 14px; font-weight: 600; opacity: 0.8; transition: opacity 0.2s, color 0.2s; }
.footer__menu a:hover { opacity: 1; color: var(--coral); }
.footer__family { font-size: 13.5px; opacity: 0.55; }
.footer__legal { font-size: 12.5px; opacity: 0.45; }
.footer__copy { font-size: 12.5px; opacity: 0.35; }

/* ============ 상담 페이지 ============ */
.page-hero {
  background: var(--coral);
  color: #fff;
  padding: calc(var(--nav-h) + clamp(48px, 8vw, 90px)) 0 clamp(48px, 7vw, 80px);
}
.page-hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.page-hero p { font-size: 17px; font-weight: 500; opacity: 0.9; }

.consult { padding-block: clamp(56px, 8vw, 90px); }
.consult__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.form {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 24px 48px rgba(35, 55, 78, 0.08);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 22px;
}
.field { display: grid; gap: 8px; }
.field label { font-size: 15px; font-weight: 800; }
.field label .req { color: var(--coral-deep); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-soft);
}
.field__hint { font-size: 13px; color: var(--ink-soft); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 16px;
}
.agree input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--coral); flex: none; }
.agree strong { color: var(--ink); font-weight: 700; }

.form__error {
  display: none;
  background: #fdeae3;
  border: 2px solid var(--coral-deep);
  color: #a63512;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14.5px;
  font-weight: 600;
}
.form__error.show { display: block; }
.form__submit { justify-self: start; }
.form__submit[disabled] { opacity: 0.55; pointer-events: none; }

.form-success {
  display: none;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 24px 48px rgba(35, 55, 78, 0.08);
  padding: clamp(36px, 5vw, 56px);
  text-align: center;
}
.form-success.show { display: block; }
.form-success svg { width: 72px; height: 72px; margin-bottom: 18px; }
.form-success h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); margin-bottom: 26px; }

.consult-aside { display: grid; gap: 18px; }
.aside-card {
  background: var(--cream-deep);
  border-radius: calc(var(--radius) + 2px);
  padding: 26px;
}
.aside-card h3 { font-size: 17px; font-weight: 900; margin-bottom: 12px; }
.aside-card ul { display: grid; gap: 9px; }
.aside-card li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  word-break: keep-all;
}
.aside-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 10px;
  background: var(--coral);
  border-radius: 50% 50% 3px 3px;
}
.aside-card--dark { background: var(--ink); color: var(--cream); }
.aside-card--dark h3 { color: var(--coral); }
.aside-card--dark p { font-size: 14.5px; opacity: 0.85; }

/* ============ 등장 애니메이션 ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ============ 반응형 ============ */
@media (max-width: 1024px) {
  .quad-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 18px 24px 26px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(35, 55, 78, 0.08);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s, visibility 0.3s;
  }
  .nav.is-open .nav__menu { transform: none; opacity: 1; visibility: visible; }
  .nav__menu a { font-size: 17px; padding: 12px 14px; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-scrolled, .nav.is-open { background: rgba(250, 251, 248, 0.95); }

  .hero__inner { grid-template-columns: 1fr; padding-bottom: 140px; }
  .hero__visual { order: -1; }
  .door { width: min(60%, 220px); }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .consult__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .br-desktop { display: none; }
}

@media (max-width: 560px) {
  .quad-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
}

/* ============================================================
   문 여는(개업) 히어로 — 양쪽 문 열림 + 로고 아치 + 키워드 상승
   ============================================================ */
.hero { background: #211d1a; padding: 0; min-height: 100svh; }
.hero__stage { position: relative; width: 100%; min-height: 100svh; overflow: hidden; }

.hero__interior {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--nav-h) + 20px) 26px 40px;
  background: radial-gradient(120% 80% at 50% 2%, #FFE9B8 0%, #FFF6E6 44%, #FFFDF7 100%);
}

/* 아래에서 위로 쭉 올라가고, 도착한 것만 윗줄에 순차 정렬(유지) — 아이콘 배지 */
.hero__lineup { position: relative; z-index: 4; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 620px; margin-bottom: 26px; min-height: 92px; }
.hero__kw { background: #fff; color: #2a2622; font-weight: 800; font-size: 13.5px; padding: 14px 16px 12px; border-radius: 18px;
  box-shadow: 0 10px 24px rgba(140,100,50,.2); display: flex; flex-direction: column; align-items: center; gap: 9px; white-space: nowrap;
  opacity: 0; transform: translateY(360px); }
.hero__kw-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; }
.hero__kw-ic svg { width: 24px; height: 24px; }
.hero__kw.k1 { animation: heroRise 1.05s cubic-bezier(.45,0,.2,1) 1.3s forwards; } .hero__kw.k1 .hero__kw-ic { background: #FFE8D5; color: var(--coral-deep); }
.hero__kw.k2 { animation: heroRise 1.05s cubic-bezier(.45,0,.2,1) 1.8s forwards; } .hero__kw.k2 .hero__kw-ic { background: #FCEFD2; color: #C8871B; }
.hero__kw.k3 { animation: heroRise 1.05s cubic-bezier(.45,0,.2,1) 2.3s forwards; } .hero__kw.k3 .hero__kw-ic { background: #DFF3E8; color: #2A8C62; }
.hero__kw.k4 { animation: heroRise 1.05s cubic-bezier(.45,0,.2,1) 2.8s forwards; } .hero__kw.k4 .hero__kw-ic { background: #DEEBF7; color: #2C6EA8; }
.hero__kw.k5 { animation: heroRise 1.05s cubic-bezier(.45,0,.2,1) 3.3s forwards; } .hero__kw.k5 .hero__kw-ic { background: #EBE3F7; color: #6E4FB0; }
@keyframes heroRise { 0% { opacity: 0; transform: translateY(360px); } 16% { opacity: 1; } 100% { opacity: 1; transform: translateY(0); } }

.hero__logo { position: relative; width: 168px; height: 168px; margin-bottom: 16px;
  opacity: 0; animation: heroLogoIn 1s ease .9s forwards; }
.hero__logo svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__logo .arrow { animation: heroArrow 2.6s ease-in-out 1.8s infinite; transform-origin: center; }
@keyframes heroArrow { 0%,100%{transform:translateY(2px)} 50%{transform:translateY(-6px)} }

.hero__below { position: relative; z-index: 3; opacity: 0; animation: heroBelowIn 1s ease 1.5s forwards; }
.hero__below h1 { font-size: clamp(30px, 5.4vw, 46px); font-weight: 900; letter-spacing: -.04em; line-height: 1.15; color: #26221E; word-break: keep-all; }
.hero__below p { font-size: clamp(15px, 1.7vw, 18px); color: #8a7c63; margin-top: 14px; font-weight: 500; }
.hero__below .hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

.hero__door { position: absolute; top: 0; bottom: 0; width: 50.4%; z-index: 5; background: linear-gradient(100deg,#2c2723,#211d1a 55%,#2c2723); }
.hero__door::after { content: ""; position: absolute; top: 50%; width: 10px; height: 66px; background: #5a5148; border-radius: 5px; transform: translateY(-50%); box-shadow: inset 0 0 4px rgba(0,0,0,.5); }
.hero__door .plate { position: absolute; top: calc(var(--nav-h) + 6px); left: 0; right: 0; text-align: center; color: #7a6f60; font-weight: 900; letter-spacing: .34em; font-size: 14px; }
.hero__door.dl { left: 0; border-right: 1px solid #100d0b; animation: heroOpenL 1.5s cubic-bezier(.7,0,.2,1) .5s forwards; }
.hero__door.dr { right: 0; border-left: 1px solid #100d0b; animation: heroOpenR 1.5s cubic-bezier(.7,0,.2,1) .5s forwards; }
.hero__door.dl::after { right: 8px; } .hero__door.dr::after { left: 8px; }
@keyframes heroOpenL { to { transform: translateX(-101%); } }
@keyframes heroOpenR { to { transform: translateX(101%); } }
@keyframes heroLogoIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes heroBelowIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ============================================================
   섹션 톤 (따뜻한 크림/오렌지)
   ============================================================ */
.section__title { line-height: 1.24; word-break: keep-all; }
.cta h2, .page-hero h1 { word-break: keep-all; }
.section--tint { background: var(--cream-deep); }
.page-hero { background: var(--coral); }
.plan__badge--full { background: var(--ink); color: var(--cream); }
.quad__icon { background: var(--coral-soft); color: var(--coral-deep); }
.aside-card:not(.aside-card--dark) { background: var(--cream-deep); }
.aside-card--dark { background: var(--ink); }
.aside-card li::before { background: var(--coral); border-radius: 50%; }

/* ============ 모션 최소화 ============ */
@media (prefers-reduced-motion: reduce) {
  .hero__door { display: none; }
  .hero__logo, .hero__below { opacity: 1; animation: none; }
  .hero__kw { animation: none; opacity: 1; transform: none; }
}
/* ============ 모션 최소화(공통) ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__ticker-track { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
