/* ===== 디자인 토큰 ===== */
:root {
  --navy: #0E1B33;
  --navy-soft: #182a4a;
  --gold: #C9A961;
  --gold-soft: #d9bf80;
  --ivory: #F8F6F1;
  --ivory-deep: #efeae0;
  --charcoal: #2C2C2C;
  --muted: #6f6c66;
  --line: rgba(14, 27, 51, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow-lg: 0 30px 60px -25px rgba(14, 27, 51, 0.25);
  --shadow-md: 0 18px 40px -22px rgba(14, 27, 51, 0.35);
  --serif: 'Noto Serif KR', 'Times New Roman', serif;
  --sans: 'Noto Sans KR', system-ui, -apple-system, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== 네비 ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ivory); transition: color 0.3s ease; }
.nav.scrolled .brand { color: var(--navy); }
.brand-mark {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif); font-weight: 500; letter-spacing: 0.04em;
  font-size: 14px;
}
.brand-name { font-family: var(--serif); font-size: 17px; letter-spacing: 0.02em; }
.brand-name em { font-style: italic; color: var(--gold); font-weight: 400; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: rgba(248, 246, 241, 0.85);
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* ===== 버튼 ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  font-size: 15px;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 12px 30px -16px rgba(201, 169, 97, 0.6);
}
.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -16px rgba(201, 169, 97, 0.7);
}
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(248, 246, 241, 0.5);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-block { width: 100%; padding: 18px; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ===== 히어로 ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: var(--ivory);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 97, 0.22), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(20, 40, 80, 0.6), transparent 60%),
    linear-gradient(135deg, #0a1428 0%, #0E1B33 45%, #182a4a 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(14, 27, 51, 0.6) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px);
}
.hero-bg::before {
  content: '';
  position: absolute;
  right: -8%; bottom: -5%;
  width: 70%; height: 90%;
  background:
    linear-gradient(180deg, rgba(201, 169, 97, 0.08), transparent 70%),
    linear-gradient(135deg, #1a2c4f 0%, #0E1B33 100%);
  clip-path: polygon(0 100%, 8% 60%, 16% 80%, 24% 45%, 32% 70%, 40% 30%, 50% 55%, 60% 22%, 70% 50%, 82% 18%, 92% 42%, 100% 14%, 100% 100%);
  opacity: 0.85;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14, 27, 51, 0.55) 0%, rgba(14, 27, 51, 0.25) 50%, rgba(14, 27, 51, 0.7) 100%);
}
.hero-content {
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 140px 32px 120px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin: 0 0 24px;
  padding-left: 60px;
  position: relative;
}
.hero-eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 44px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  max-width: 920px;
}
.hero-title .gold { color: var(--gold); }
.hero-sub {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(248, 246, 241, 0.82);
  max-width: 560px;
  margin: 0 0 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 88px; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: 720px;
  margin: 0;
  padding-top: 36px;
  border-top: 1px solid rgba(248, 246, 241, 0.18);
}
.hero-meta div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta dt { font-size: 12px; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; }
.hero-meta dd { margin: 0; font-family: var(--serif); font-size: 22px; }

.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: rgba(248, 246, 241, 0.6);
  font-size: 11px; letter-spacing: 0.35em;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll span {
  width: 1px; height: 48px; background: rgba(248, 246, 241, 0.4);
  position: relative; overflow: hidden;
}
.hero-scroll span::after {
  content: ''; position: absolute; top: -48px; left: 0;
  width: 1px; height: 48px; background: var(--gold);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -48px; }
  100% { top: 48px; }
}

/* ===== 공통 섹션 ===== */
.section { padding: 140px 0; position: relative; }
.section-head { max-width: 760px; margin: 0 auto 80px; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.42em;
  color: var(--gold);
  margin-bottom: 22px;
  position: relative;
  padding: 0 28px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; position: absolute; top: 50%;
  width: 18px; height: 1px; background: var(--gold);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.section-title .gold { color: var(--gold); }
.section-desc {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
}
.section-eyebrow.light { color: var(--gold); }
.section-eyebrow.light::before, .section-eyebrow.light::after { background: var(--gold); }
.section-title.light { color: var(--ivory); }
.section-desc.light { color: rgba(248, 246, 241, 0.75); }

/* ===== 단지 소개 ===== */
.section-about { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(14, 27, 51, 0.0) 0%, rgba(14, 27, 51, 0.35) 100%),
    linear-gradient(135deg, #2a3a5c 0%, #0E1B33 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-figure::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 56px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 56px);
}
.about-figure::after {
  content: '';
  position: absolute;
  left: 12%; right: 12%; bottom: 0;
  height: 65%;
  background:
    linear-gradient(180deg, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #1f3358 0%, #0a1428 100%);
  clip-path: polygon(
    0 100%, 0 60%, 8% 60%, 8% 30%, 16% 30%, 16% 55%, 28% 55%, 28% 20%, 38% 20%,
    38% 50%, 50% 50%, 50% 10%, 62% 10%, 62% 45%, 74% 45%, 74% 25%, 86% 25%,
    86% 55%, 100% 55%, 100% 100%
  );
}
.about-facts { list-style: none; padding: 0; margin: 0; }
.about-facts li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.about-facts li:first-child { padding-top: 0; }
.fact-label {
  font-size: 12px; letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.fact-value {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
}

/* ===== 입지 ===== */
.section-location { background: var(--ivory-deep); }
.location-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.location-map {
  position: relative;
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, #f4eee1 0%, #ebe2cd 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.map-canvas { position: absolute; inset: 0; }
.map-grid {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(14, 27, 51, 0.06) 0px, rgba(14, 27, 51, 0.06) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(14, 27, 51, 0.06) 0px, rgba(14, 27, 51, 0.06) 1px, transparent 1px, transparent 40px);
}
.map-river {
  position: absolute;
  left: -8%; right: -8%;
  top: 64%;
  height: 70px;
  background: linear-gradient(180deg, #b9d0e5 0%, #8fb3d4 100%);
  transform: rotate(-4deg);
  opacity: 0.85;
}
.map-road {
  position: absolute;
  background: rgba(14, 27, 51, 0.18);
}
.map-road-h { top: 48%; left: 0; right: 0; height: 4px; }
.map-road-v { top: 0; bottom: 0; left: 52%; width: 4px; }

.map-pin {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
  color: var(--navy);
  transform: translate(-50%, -50%);
  background: rgba(248, 246, 241, 0.85);
  padding: 4px 10px;
  border: 1px solid var(--line);
  white-space: nowrap;
}
.map-pin .pin-mini {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--navy);
  display: inline-block;
}
.map-pin-site {
  top: 48%; left: 52%;
  background: var(--navy);
  color: var(--ivory);
  padding: 10px 18px;
  border: none;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 32px -14px rgba(14, 27, 51, 0.55);
}
.map-pin-site .pin-dot {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(201, 169, 97, 0.25);
  animation: pinPulse 2.2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(201, 169, 97, 0.25); }
  50% { box-shadow: 0 0 0 14px rgba(201, 169, 97, 0); }
}

.location-list { display: flex; flex-direction: column; gap: 20px; }
.loc-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 30px 32px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.loc-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.loc-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.loc-card h3::after {
  content: ''; position: absolute;
  left: 0; bottom: -1px;
  width: 36px; height: 1px;
  background: var(--gold);
}
.loc-card ul { list-style: none; margin: 0; padding: 0; }
.loc-card li {
  padding: 8px 0 8px 18px;
  position: relative;
  color: var(--charcoal);
  font-size: 15px;
}
.loc-card li::before {
  content: ''; position: absolute;
  left: 0; top: 18px;
  width: 6px; height: 1px;
  background: var(--gold);
}

/* ===== 평면도 ===== */
.section-plans { background: var(--ivory); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.plan-card {
  background: var(--ivory-deep);
  border: 1px solid var(--line);
  padding: 36px 32px 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.plan-card .plan-type {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.plan-card .plan-name {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 6px;
}
.plan-card .plan-area {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.plan-svg {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  background: var(--ivory);
  border: 1px solid var(--line);
  margin-bottom: 24px;
}
.plan-svg svg { width: 100%; height: 100%; display: block; }
.plan-features { list-style: none; padding: 0; margin: 0 0 26px; }
.plan-features li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14px;
  color: var(--charcoal);
}
.plan-features li::before {
  content: ''; position: absolute;
  left: 0; top: 16px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.plan-foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.plan-foot strong { color: var(--navy); font-family: var(--serif); font-size: 16px; }

/* ===== 프리미엄 (다크 섹션) ===== */
.section-premium {
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.section-premium::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201, 169, 97, 0.12), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(201, 169, 97, 0.06), transparent 50%);
  pointer-events: none;
}
.section-premium .container { position: relative; }
.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.premium-card {
  padding: 40px 28px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.premium-card:hover {
  background: rgba(201, 169, 97, 0.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.premium-icon {
  width: 56px; height: 56px;
  color: var(--gold);
  margin-bottom: 28px;
}
.premium-icon svg { width: 100%; height: 100%; }
.premium-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--ivory);
  margin: 0 0 14px;
}
.premium-card p {
  font-size: 14.5px;
  color: rgba(248, 246, 241, 0.7);
  line-height: 1.85;
  margin: 0;
}

/* ===== 문의 폼 ===== */
.section-contact { background: var(--ivory); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.contact-left .section-eyebrow { padding-left: 0; padding-right: 28px; }
.contact-left .section-eyebrow::before { display: none; }
.contact-left .section-title { text-align: left; }
.contact-left .section-desc { margin-bottom: 40px; }
.section-contact .section-head { text-align: left; margin: 0; }

.contact-info { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.contact-info li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info li span {
  font-size: 12px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase;
}
.contact-info li strong {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  font-weight: 400;
}

.contact-form {
  background: var(--ivory-deep);
  padding: 48px 44px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--navy);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.field .req { color: var(--gold); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.7; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #b94c4c;
  background: #fdf5f5;
}
.field.invalid .err-msg { color: #b94c4c; font-size: 12px; margin-top: 6px; display: block; }

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 14px 0 22px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  cursor: pointer;
}
.consent input { margin-top: 4px; accent-color: var(--gold); }
.form-note {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ===== 푸터 ===== */
.footer {
  background: var(--navy);
  color: rgba(248, 246, 241, 0.78);
  padding: 80px 0 32px;
}
.footer .brand { color: var(--ivory); margin-bottom: 18px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot-desc { font-size: 14px; line-height: 1.8; color: rgba(248, 246, 241, 0.6); max-width: 320px; }
.foot-col h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
  text-transform: uppercase;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 8px 0;
  font-size: 14px;
}
.foot-col li span { color: rgba(248, 246, 241, 0.5); font-size: 12px; letter-spacing: 0.1em; }
.foot-col li:last-child { padding-bottom: 0; }
.footer-bottom {
  max-width: var(--container);
  margin: 56px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid var(--line-dark);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: rgba(248, 246, 241, 0.45);
}

/* ===== 토스트 ===== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translate(-50%, 24px);
  background: var(--navy);
  color: var(--ivory);
  padding: 16px 28px;
  border: 1px solid var(--gold);
  font-size: 14px;
  letter-spacing: 0.04em;
  box-shadow: 0 20px 40px -16px rgba(14, 27, 51, 0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: flex; align-items: center; gap: 12px;
  max-width: calc(100% - 32px);
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.toast.error::before { background: #d97a6c; }

/* ===== 스크롤 리빌 ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.hero .reveal { transition-duration: 1s; }

/* ===== 반응형 ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .about-grid, .location-grid, .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 100px 0; }
  .about-figure { aspect-ratio: 5 / 4; }
}
@media (max-width: 640px) {
  .container, .nav-inner { padding-left: 20px; padding-right: 20px; }
  .hero-content { padding: 120px 20px 100px; }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-meta dd { font-size: 18px; }
  .plans-grid, .premium-grid, .footer-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .about-facts li { grid-template-columns: 110px 1fr; gap: 12px; padding: 18px 0; }
  .fact-value { font-size: 16px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 56px; }
  .nav-cta { display: none; }
  .footer-bottom { padding: 24px 20px 0; }
  .brand-name { font-size: 15px; }
}
