:root {
  /* Warm ivory/orange palette (단일 페이지 버전 기반) */
  --accent: #f5a623;
  --accent-deep: #e8920c;

  /* 기존 변수명 호환 매핑 — 전부 따뜻한 오렌지/잉크 톤으로 */
  --orange: #f5a623;
  --orange-deep: #e8920c;
  --orange-soft: #ffeccd;

  --gold: #e8920c;
  --gold-soft: #f7b94e;
  --gold-deep: #c8780a;

  /* 다크 톤 → 따뜻한 잉크(footer/표 헤더 등 최소 사용) */
  --navy-900: #1a1714;
  --navy-800: #221d18;
  --navy-700: #2c251e;
  --navy-600: #3a3128;

  --ivory: #fff7ec;
  --ivory-2: #ffeccd;
  --cream: #fffdf9;

  --ink: #1a1714;
  --ink-2: #4a4239;
  --muted: #8a7f72;
  --line: rgba(120, 90, 30, 0.12);

  --card: #ffffff;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 8px 24px rgba(180, 120, 20, 0.08);
  --shadow: 0 18px 48px rgba(180, 120, 20, 0.14);
  --shadow-navy: 0 22px 60px rgba(180, 120, 20, 0.22);

  --maxw: 1140px;
  --nav-h: 72px;
  --font: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.gold {
  background: linear-gradient(100deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hl {
  color: var(--orange);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ 네비게이션 ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 236, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(120, 90, 30, 0.1);
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(180, 120, 20, 0.18);
}
.brand__mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.brand__text strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand__text small {
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav__menu {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--ink);
  background: rgba(245, 166, 35, 0.1);
}
.nav__link.is-active {
  color: var(--accent-deep);
  background: rgba(245, 166, 35, 0.15);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cta-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(236, 122, 44, 0.35);
  transition: transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(236, 122, 44, 0.45);
}

.member-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-deep);
  font-weight: 800;
  font-size: 14px;
  padding: 9px 15px;
  border-radius: 12px;
  border: 1px solid rgba(245, 166, 35, 0.55);
  background: rgba(245, 166, 35, 0.1);
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.member-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.member-btn:hover {
  background: rgba(245, 166, 35, 0.2);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}

/* ============ 앱 다운로드 페이지 (기존 네이비+골드 톤 그대로 유지) ============ */
.page-dl {
  --navy-900: #0a1426;
  --navy-800: #0e1d36;
  --navy-700: #16294a;
  --navy-600: #1f3559;
  --gold: #d9b878;
  --gold-soft: #ecd49e;
  --gold-deep: #b78f4f;
  --muted: #6c727c;
}
.page-dl .nav {
  background: rgba(10, 20, 38, 0.92);
  border-bottom: 1px solid rgba(217, 184, 120, 0.16);
}
.page-dl .brand__mark {
  background: #f3ede1;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.page-dl .brand__text strong {
  color: #fff;
}
.page-dl .brand__text small {
  color: var(--gold);
}
.page-dl .member-btn {
  color: var(--gold-soft);
  border-color: rgba(217, 184, 120, 0.55);
  background: rgba(217, 184, 120, 0.08);
}
.page-dl .member-btn:hover {
  background: rgba(217, 184, 120, 0.18);
  border-color: var(--gold-soft);
}
.page-dl .hamburger span {
  background: #fff;
}
.page-dl .hero__glow {
  filter: blur(90px);
  opacity: 0.45;
  mix-blend-mode: screen;
}
.page-dl .hero__glow--gold {
  background: rgba(217, 184, 120, 0.35);
}
.page-dl .hero__glow--orange {
  background: rgba(236, 122, 44, 0.28);
}

.page-dl,
.page-dl body {
  background: var(--navy-900);
}
.dl-hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  padding: 48px 24px 40px;
  overflow: hidden;
  text-align: center;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(110% 90% at 50% 0%, #16294a 0%, #0a1426 60%);
}
.dl-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.dl-badge {
  display: inline-block;
  background: rgba(217, 184, 120, 0.14);
  color: var(--gold-soft);
  border: 1px solid rgba(217, 184, 120, 0.4);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 999px;
}
.dl-appicon {
  width: 92px;
  height: 92px;
  margin: 22px auto 18px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.dl-appicon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dl-title {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.dl-desc {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
}
.dl-desc b {
  color: var(--gold-soft);
}

.store-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 200px;
  padding: 13px 22px;
  border-radius: 14px;
  background: #fff;
  color: #0a1426;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s, box-shadow 0.18s;
}
.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}
.store-btn svg {
  width: 28px;
  height: 28px;
  fill: #0a1426;
  flex-shrink: 0;
}
.store-btn__txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  text-align: left;
}
.store-btn__txt small {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.store-btn__txt b {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.dl-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13.5px;
}
.dl-note a {
  color: var(--gold-soft);
  font-weight: 700;
}
.dl-copy {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  letter-spacing: 0.02em;
}

@media (max-width: 520px) {
  .store-btn {
    width: 100%;
    justify-content: center;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ 탭 전환 ============ */
.tab {
  display: none;
  animation: fadeUp 0.45s ease;
}
.tab.is-active {
  display: block;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ 섹션 공통 ============ */
.section {
  padding: 46px 0;
}
.section--tight {
  padding-top: 0;
}
.section--ivory {
  background: linear-gradient(180deg, var(--ivory), var(--ivory-2));
}

/* ============ 히어로 ============ */
.hero {
  position: relative;
  color: var(--ink);
  padding: 84px 24px 92px;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(1200px 600px at 75% -10%, var(--bg-soft, #ffeccd), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, #fffdf9 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}
.hero__glow--gold {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #ffce8a, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__glow--orange {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #ffe2a8, transparent 70%);
  bottom: -150px;
  right: -60px;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}
.loc-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(236, 122, 44, 0.4);
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(30px, 6vw, 54px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.22;
  margin-bottom: 20px;
}
.hero__desc {
  color: var(--ink-2);
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.8;
  margin-bottom: 0;
  text-wrap: balance;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ 버튼 ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 14px;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 12px 30px rgba(236, 122, 44, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(236, 122, 44, 0.5);
}
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(120, 90, 30, 0.18);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  background: #fffaf0;
  border-color: rgba(245, 166, 35, 0.5);
}
.btn--block {
  width: 100%;
}

/* ============ 핵심 서비스 (밝은 오렌지 톤) ============ */
.keyservices {
  position: relative;
  background: radial-gradient(120% 100% at 50% 0%, var(--ivory-2), var(--ivory));
  color: var(--ink);
  padding: 52px 0 56px;
  overflow: hidden;
}
.keyservices::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.45), transparent);
}
.ks-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}
.ks-head h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.ks-head p {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: 1.7;
}
.ks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ks-card {
  width: 100%;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s, background 0.22s;
}
.ks-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.ks-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: var(--shadow);
}
.ks-card__ico {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--accent-deep);
}
.ks-card__ico svg {
  width: 26px;
  height: 26px;
}
.ks-card h3 {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
}
.ks-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  word-break: keep-all;
}

/* ============ 인테리어 ============ */
.interior {
  margin-top: 8px;
}
.interior__photo {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-navy);
  border: 1px solid rgba(217, 184, 120, 0.25);
  line-height: 0;
}
.interior__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  max-height: 460px;
}
.interior__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 90% at 50% 120%, rgba(236, 122, 44, 0.16), transparent 70%);
  pointer-events: none;
}
.interior figcaption {
  text-align: center;
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 500;
}

/* ============ 섹션 헤더 (흰 바 + 오렌지 좌측 바) ============ */
.sec-head {
  background: var(--card);
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
  margin-bottom: 26px;
}
.sec-head--sub {
  margin-top: 42px;
}
.sec-head h2 {
  font-size: clamp(20px, 3.4vw, 28px);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.sec-head__desc {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ 브랜드 소개 ============ */
.brand-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.brand-lead__big {
  font-size: clamp(22px, 3.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.45;
  margin-bottom: 18px;
}
.brand-lead__sub {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.85;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.checklist {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

/* ============ lead row ============ */
.lead-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}
.lead-row__big {
  font-size: clamp(20px, 3.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.45;
}
.lead-row__sub {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.85;
}

/* ============ 카드 그리드 ============ */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.icard {
  padding: 28px 24px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.icard:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.icard__ico {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  margin-bottom: 18px;
}
.icard__ico svg {
  width: 26px;
  height: 26px;
}
/* 카드 아이콘 전체 비표시 */
.ks-card__ico,
.icard__ico {
  display: none !important;
}
.icard h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.icard p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============ 알약 라벨 ============ */
.pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pill--orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
}
.pill--navy {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
}
.pill--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: #3a2a0e;
}
.pill--soft {
  background: var(--orange-soft);
  color: var(--orange-deep);
}

/* ============ 프로모션 ============ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.promo {
  padding: 32px 30px;
}
.promo--vip {
  background: linear-gradient(180deg, #fffdf8, #fbf4e6);
  border-color: rgba(183, 143, 79, 0.3);
}
.promo h4 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.promo__cap {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.price {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
}
.price s {
  color: var(--muted);
}
.price strong {
  font-size: 34px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.price__sub {
  font-size: 14px;
}
.dot-list li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 10px;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.dot-list b {
  color: var(--ink);
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.bs {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.bs span {
  font-size: 22px;
}
.bs b {
  color: var(--ink);
  font-weight: 800;
  margin-right: 2px;
}

.cta-banner {
  margin-top: 28px;
  background: linear-gradient(135deg, #ffb43d, var(--accent-deep));
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 48px rgba(232, 146, 12, 0.35);
}
.cta-banner p {
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.95);
}
.cta-banner .btn--primary {
  background: #fff;
  color: var(--accent-deep);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}
.cta-banner .btn--primary:hover {
  background: #fffaf0;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

/* ============ 입시 표 ============ */
.table-wrap {
  overflow-x: auto;
  padding: 6px;
}
.adm-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.adm-table thead th {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 20px;
  text-align: center;
}
.adm-table thead th:first-child {
  border-top-left-radius: 14px;
}
.adm-table thead th:last-child {
  border-top-right-radius: 14px;
}
.adm-table thead small {
  font-weight: 500;
  color: var(--gold-soft);
}
.adm-table tbody th {
  background: #fdf3e3;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  font-size: 15px;
  width: 22%;
}
.adm-table tbody td {
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
  padding: 18px 20px;
}
.adm-table tbody tr:nth-child(odd) td {
  background: #fffaf0;
}
.adm-table tbody tr:nth-child(even) td {
  background: #fdf3e3;
}
.adm-table tbody tr:nth-child(even) th {
  background: #f8ead2;
}
.adm-table tbody td small,
.adm-table tbody th small {
  color: var(--muted);
  font-weight: 500;
}
.adm-table tbody tr td {
  border-top: 1px solid var(--line);
}

/* ============ target / seminar ============ */
.target {
  padding: 30px 28px;
}
.target h4 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.4;
}
.target p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.8;
}

.seminar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
}
.seminar__head h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 8px 0 14px;
}
.seminar__head p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.8;
}
.seminar__warn {
  color: var(--orange-deep) !important;
  font-weight: 700;
  margin-top: 14px;
}
.agenda {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.agenda li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.seminar .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

/* ============ 상담 폼 ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: start;
}
.contact-form {
  padding: 34px 30px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.field label em {
  color: var(--orange);
  font-style: normal;
}
.field input,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fcfbf8;
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(236, 122, 44, 0.14);
}
.field input.invalid {
  border-color: #e0463a;
  box-shadow: 0 0 0 3px rgba(224, 70, 58, 0.14);
}
.form-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.form-ok {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #1f9d55;
  text-align: center;
}

.contact-info {
  padding: 34px 30px;
  background: radial-gradient(140% 160% at 50% 0%, var(--navy-700), var(--navy-900));
  color: #fff;
  border: none;
}
.contact-info h4 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 22px;
  color: var(--gold-soft);
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.info-row:first-of-type {
  border-top: none;
}
.info-ico {
  font-size: 20px;
  flex-shrink: 0;
}
.info-row small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}
.info-row b {
  font-size: 16px;
  font-weight: 700;
}
a.info-row:hover b {
  color: var(--gold-soft);
}

/* ============ 푸터 ============ */
.foot {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 44px 0 0;
}
.foot__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 28px;
}
.foot__brand strong {
  display: block;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
}
.foot__brand p {
  font-size: 14px;
}
.foot__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  text-align: right;
}
.foot__contact a:hover {
  color: var(--gold-soft);
}
.foot__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
}

/* ============ 모바일 하단 CTA ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  background: rgba(255, 247, 236, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(120, 90, 30, 0.12);
  box-shadow: 0 -8px 24px rgba(180, 120, 20, 0.1);
}
.mobile-cta__call {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(120, 90, 30, 0.16);
  font-weight: 800;
  font-size: 15px;
}
.mobile-cta__btn {
  flex: 1;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 14px;
  border-radius: 12px;
}

/* ============ 스크롤 리빌 ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

.br-mo {
  display: none;
}

/* ============================================================= */
/* 반응형 */
/* ============================================================= */
@media (max-width: 1024px) {
  .ks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  :root {
    --nav-h: 60px;
  }
  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2px;
    background: rgba(255, 247, 236, 0.98);
    backdrop-filter: blur(14px);
    padding: 14px;
    border-bottom: 1px solid rgba(120, 90, 30, 0.1);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__menu.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link {
    font-size: 16px;
    padding: 14px 16px;
    text-align: left;
    border-radius: 12px;
  }
  .hamburger {
    display: flex;
  }
  .nav__right .cta-btn {
    display: none;
  }
  .nav__right {
    margin-left: auto;
  }
  .member-btn {
    font-size: 13px;
    padding: 8px 12px;
  }

  .hero {
    padding: 28px 22px 26px;
  }
  .hero .loc-pill {
    margin-bottom: 14px;
  }
  .hero__title {
    margin-bottom: 14px;
  }
  .hero__desc {
    line-height: 1.7;
  }
  .keyservices {
    padding: 26px 0 40px;
  }

  .brand-grid,
  .lead-row,
  .cards-3,
  .cards-2,
  .promo-grid,
  .seminar,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .benefit-strip {
    grid-template-columns: 1fr;
  }
  .seminar .btn {
    width: 100%;
    justify-self: stretch;
  }

  .section {
    padding: 34px 0;
  }
  .sec-head--sub {
    margin-top: 30px;
  }

  .mobile-cta {
    display: flex;
  }
  .foot__copy {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }
  .foot__contact {
    text-align: left;
  }
  .br-mo {
    display: inline;
  }
}

@media (max-width: 620px) {
  .ks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .cards-4 {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 18px;
  }
  .sec-head {
    padding: 18px 20px;
  }
  .interior__photo img {
    max-height: 320px;
  }
  .price strong {
    font-size: 30px;
  }
}

/* ============================================================= */
/* 밴드 이미지 + SVG 아이콘 세트 */
/* ============================================================= */
.band {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  margin: 6px 0 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 184, 120, 0.22);
}
.band img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.band__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 34px;
  background: linear-gradient(0deg, rgba(8, 16, 34, 0.9) 0%, rgba(8, 16, 34, 0.45) 55%, transparent);
}
.band__cap span {
  display: inline-block;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.band__cap p {
  color: #fff;
  font-size: clamp(17px, 2.6vw, 23px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.4;
  max-width: 760px;
}

/* SVG 아이콘 공통 */
svg.ic,
.icard__ico svg,
.bs__ic svg,
.info-ico svg,
.loc-pill svg,
.btn svg,
.foot__contact svg,
.mobile-cta__call svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bs__ic {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  flex-shrink: 0;
}
.bs__ic svg {
  width: 22px;
  height: 22px;
}
.bs {
  align-items: center;
}

.info-ico {
  color: var(--gold-soft);
  display: inline-grid;
  place-items: center;
}
.info-ico svg {
  width: 22px;
  height: 22px;
}

.loc-pill svg {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  margin-right: 6px;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.foot__contact a,
.foot__contact span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-end;
}
.foot__contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}
.mobile-cta__call svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: -3px;
}

@media (max-width: 860px) {
  .band {
    margin-bottom: 32px;
  }
  .band img {
    height: 200px;
  }
  .band__cap {
    padding: 20px 22px;
  }
  .foot__contact a,
  .foot__contact span {
    justify-content: flex-start;
  }
}

/* ============ 홈 팝업 ============ */
.popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup[hidden] {
  display: none;
}
.popup__dim {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.6);
  backdrop-filter: blur(2px);
  animation: popupFade 0.25s ease;
}
.popup__box {
  position: relative;
  width: min(440px, 100%);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: popupPop 0.3s cubic-bezier(0.2, 0.8, 0.3, 1.1);
}
.popup__img {
  display: block;
  width: 100%;
  height: auto;
}
.popup__x {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.popup__x:hover {
  background: rgba(0, 0, 0, 0.7);
}
.popup__bar {
  display: flex;
  border-top: 1px solid var(--line);
}
.popup__bar button {
  flex: 1;
  border: none;
  background: #fff;
  padding: 15px 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.2s ease;
}
.popup__bar button:hover {
  background: var(--ivory);
}
.popup__today {
  border-right: 1px solid var(--line) !important;
}
.popup__close {
  color: var(--gold-deep) !important;
}

@keyframes popupFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popupPop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 860px) {
  .popup {
    padding: 16px;
  }
  .popup__box {
    width: min(360px, 100%);
  }
  .popup__bar button {
    padding: 14px 8px;
    font-size: 14px;
  }
}
