/* ===== 폰트 ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold:       #C9A96E;
  --gold-light: #F0D070;
  --gold-dark:  #7A5520;
  --black:      #000000;
  --card:       #111111;
  --border:     rgba(201,169,110,0.15);
}

/* ===== 기본 ===== */
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Apple SD Gothic Neo', sans-serif; background: var(--black); }
*, *::before, *::after { box-sizing: border-box; }

/* ===== 타이포그래피 ===== */
.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(48px, 13vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.section-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 10vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  word-break: keep-all;
}
.promise-text {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 9vw, 44px);
  font-weight: 600;
  line-height: 1.4;
  word-break: keep-all;
}
.program-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: #fff;
}
.location-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

/* ===== 골드 텍스트 ===== */
.gold-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== 섹션 레이블 ===== */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

/* ===== 버튼 ===== */
.btn-gold {
  background: linear-gradient(135deg, #A07840, #E8C050, #C9A040);
  color: #000;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
  text-decoration: none;
}
.btn-gold:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-outline {
  border: 1px solid rgba(201,169,110,0.45);
  color: var(--gold);
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); }

/* ===== 골드 구분선 ===== */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.35;
}

/* ===== 카드 ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-3px); }

/* ===== 스크롤 fade-in ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== 네비게이션 ===== */
#navbar.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* ===== HERO ===== */
.hero-photos {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}
.hero-photo.active { opacity: 1; }
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

/* 스크롤 인디케이터 */
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ===== 브랜드 약속 ===== */
.promise-strip { background: #050505; }
.promise-deco {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== 통계 카드 ===== */
.stat-card {
  background: #090909;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}
.stat-unit {
  font-size: 1.5rem;
  vertical-align: baseline;
}
.stat-line {
  width: 28px;
  height: 1px;
  background: rgba(201,169,110,0.4);
  margin: 14px auto;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6b7280;
}
.stat-desc {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.6;
  margin-top: 10px;
  text-align: center;
}

/* ===== Why 카드 ===== */
.why-card {
  background: #0a0a0a;
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 20px;
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-4px); }
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 10px;
}
.why-desc { font-size: 0.875rem; color: #9ca3af; line-height: 1.8; }

/* ===== 갤러리 탭 ===== */
.gallery-tab {
  border: 1px solid rgba(201,169,110,0.3);
  color: #6b7280;
  background: transparent;
  cursor: pointer;
}
.gallery-tab:hover { border-color: var(--gold); color: var(--gold); }
.gallery-tab.active-tab {
  background: linear-gradient(135deg, #A07840, #E8C050, #C9A040);
  border-color: transparent;
  color: #000;
}

/* ===== 갤러리 슬라이더 ===== */
#gallerySlider img { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

/* ===== 갤러리 썸네일 ===== */
.thumb-item {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.thumb-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== 회원 후기 카드 ===== */
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.review-card:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-3px); }
.review-quote-mark {
  font-family: 'Georgia', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(201,169,110,0.25);
  margin-bottom: -8px;
}
.review-text {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.85;
  flex: 1;
  margin-bottom: 24px;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201,169,110,0.1);
  padding-top: 18px;
}
.review-author { font-size: 13px; color: #9ca3af; font-weight: 500; }
.review-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 4px 12px;
  border-radius: 100px;
}
.review-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.review-naver-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.review-naver-link:hover { opacity: 1; }

/* ===== 지점 배지 ===== */
.location-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 5px 14px;
  border-radius: 100px;
}

/* ===== 트레이너 카드 ===== */
.trainer-card {
  background: #0a0a0a;
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.trainer-card:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-4px); }
.trainer-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  background: #111;
}
.trainer-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,169,110,0.3);
  letter-spacing: 0.05em;
}
.trainer-body { padding: 24px; }
.trainer-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.trainer-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.trainer-spec {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.75;
}
.trainer-spec li { list-style: none; padding-left: 0; }
.trainer-spec li::before { content: '— '; color: var(--gold); }

/* ===== 프로그램 체크박스 ===== */
.program-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #6b7280;
  transition: all 0.2s;
  text-align: center;
}
.program-option:hover  { border-color: rgba(201,169,110,0.4); color: #d1d5db; }
.program-option.selected { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.08); }

/* ===== 아이콘 박스 ===== */
.icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
}

/* ===== 플로팅 버튼 그룹 ===== */
.float-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.55); }
.float-kakao { background: #FEE500; color: #000; }
.float-insta  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }

/* ===== 서브페이지 헤로 ===== */
.page-hero {
  background: #050505;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  padding: 140px 24px 64px;
  text-align: center;
}

/* ===== 홈 개요 카드 ===== */
.overview-card {
  background: #0a0a0a;
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s;
}
.overview-card:hover { border-color: rgba(201,169,110,0.5); transform: translateY(-4px); }
.overview-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.overview-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.overview-desc { font-size: 13px; color: #6b7280; line-height: 1.65; flex: 1; }
.overview-arrow {
  font-size: 1.125rem;
  color: var(--gold);
  display: block;
  transition: transform 0.2s;
}
.overview-card:hover .overview-arrow { transform: translateX(5px); }

/* ===== CTA 버튼 애니메이션 ===== */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  animation: shimmerSweep 3s ease-in-out infinite;
}
@keyframes shimmerSweep {
  0%   { left: -100%; }
  40%  { left: 150%; }
  100% { left: 150%; }
}

.btn-naver-glow {
  animation: naverPulse 2.5s ease-in-out infinite;
}
@keyframes naverPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(3,199,90,0); }
  50%       { box-shadow: 0 0 12px 3px rgba(3,199,90,0.35); }
}

/* ===== select ===== */
select option { background: #111; color: #fff; }

/* ===== 자동완성 ===== */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #000 inset;
  -webkit-text-fill-color: #fff;
}

/* ===== 노이즈 텍스처 (프리미엄 질감) ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.cursor-dot, .cursor-ring { display: none; }

/* ===== 스크롤 진행 바 ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #7A5520, #E8C050, #C9A040);
  z-index: 9998;
  pointer-events: none;
}

/* ===== 페이지 전환 오버레이 ===== */
.page-transition {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
.page-transition.leaving { opacity: 1; pointer-events: auto; }

/* ===== 마퀴 띠 ===== */
.marquee-wrap {
  overflow: hidden;
  background: #050505;
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  padding: 14px 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #4b5563;
}
.marquee-item.highlight { color: var(--gold); opacity: 0.7; }
.marquee-sep {
  color: var(--gold);
  opacity: 0.3;
  padding: 0 4px;
  font-size: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== 버튼 hover: transform은 JS 마그네틱이 처리 ===== */
.btn-gold:hover  { opacity: 0.92; transform: none; }
.btn-outline:hover { border-color: var(--gold); background: rgba(201,169,110,0.08); transform: none; }

/* ===== 상담 달력 ===== */
.calendar-wrap {
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 14px;
  padding: 18px 16px;
  background: #141820;
  position: relative;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}
.cal-nav {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.35);
  color: var(--gold);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.cal-nav:hover {
  background: rgba(201,169,110,0.15);
  border-color: var(--gold);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.cal-day-name {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #9ca3af;
  padding: 4px 0 8px;
}
.cal-sun { color: #f87171 !important; }
.cal-sat { color: #60a5fa !important; }
.cal-empty {}
.cal-date {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #e5e7eb;
  border-radius: 7px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.03);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cal-date:hover:not(.cal-past):not(:disabled) {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.4);
  color: var(--gold);
}
.cal-date.cal-past {
  color: #4b5563;
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.cal-date.cal-today {
  border-color: rgba(201,169,110,0.6);
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}
.cal-date.cal-selected {
  background: linear-gradient(135deg, #A07840, #E8C050, #C9A040) !important;
  border-color: transparent !important;
  color: #000 !important;
  font-weight: 700;
}
.cal-date.cal-selected.cal-active {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #C9A96E;
}
.cal-date.cal-confirmed {
  flex-direction: column;
  gap: 1px;
  font-size: 11px;
  padding: 3px 0;
}
.cal-date.cal-confirmed::after {
  content: '예약';
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(0,0,0,0.65);
  line-height: 1;
}
/* ── 팝오버 ── */
.cal-popup {
  position: absolute;
  z-index: 20;
  width: 216px;
  background: #1a2230;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.65);
  animation: calPopIn 0.14s ease;
}
@keyframes calPopIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}
.cal-popup-date {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 11px;
  letter-spacing: 0.03em;
}
.cal-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 10px;
}
.cal-time-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  color: #d1d5db;
  font-size: 12px;
  padding: 7px 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.cal-time-btn:hover {
  border-color: rgba(201,169,110,0.5);
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.cal-time-btn.cal-t-sel {
  background: linear-gradient(135deg, #A07840, #E8C050, #C9A040);
  border-color: transparent;
  color: #000;
  font-weight: 700;
}
.cal-popup-done {
  width: 100%;
  background: linear-gradient(135deg, #A07840, #E8C050, #C9A040);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 8px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.cal-popup-done:hover { opacity: 0.88; }
.cal-popup-cancel {
  display: block;
  width: 100%;
  background: none;
  border: none;
  text-align: center;
  font-size: 11px;
  color: #6b7280;
  margin-top: 8px;
  cursor: pointer;
  transition: color 0.15s;
  padding: 0;
}
.cal-popup-cancel:hover { color: #f87171; }
.cal-hint {
  font-size: 11px;
  color: #4b5563;
  text-align: center;
  margin-top: 10px;
}
.cal-summary {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(201,169,110,0.12);
}
.cal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cal-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--gold);
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 3px 6px 3px 10px;
  border-radius: 100px;
}
.cal-tag-remove {
  background: none;
  border: none;
  color: rgba(201,169,110,0.5);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.cal-tag-remove:hover { color: #f87171; }

/* ===== 성공 모달 ===== */
@keyframes modalBackdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalCardIn {
  from { opacity: 0; transform: translateY(24px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
#successModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  animation: modalBackdropIn 0.25s ease;
}
#successModal .modal-card {
  background: #0d0d0d;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 24px;
  padding: 52px 40px 44px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: modalCardIn 0.35s cubic-bezier(0.22,1,0.36,1);
}
#successModal .modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
#successModal .modal-label {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
#successModal .modal-title {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(24px, 5vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}
#successModal .modal-desc {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 36px;
}
#successModal .modal-btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 15px 0;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.15s;
}
#successModal .modal-btn:hover { opacity: 0.85; }
