/* ==========================================================================
   광주 중앙공원 롯데캐슬 시그니처 — style.css
   ========================================================================== */

:root {
  --charcoal-950: #131110;
  --charcoal-900: #1a1714;
  --charcoal-850: #211d19;
  --charcoal-800: #2b2420;
  --charcoal-700: #3a3129;
  --cream-50: #faf8f5;
  --cream-100: #f3efe8;
  --ink-700: #4a453f;
  --ink-500: #6b655c;
  --gold-300: #e0c58f;
  --gold-400: #cba86a;
  --gold-500: #b8965a;
  --gold-600: #9c7c42;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(19, 17, 16, 0.1);

  --font-serif: "Noto Serif KR", serif;
  --font-sans: "Noto Sans KR", sans-serif;
  --font-display: "Cormorant Garamond", var(--font-serif);

  --container: 1180px;
  --header-h: 76px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream-50);
  color: var(--charcoal-900);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

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

.only-mobile { display: none; }

/* ---------------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--charcoal-950);
  box-shadow: 0 10px 30px -8px rgba(184, 150, 90, 0.55);
}
.btn-gold:hover { box-shadow: 0 14px 34px -6px rgba(184, 150, 90, 0.7); }

.btn-outline {
  background: transparent;
  color: var(--cream-50);
  border-color: rgba(250, 248, 245, 0.4);
}
.btn-outline:hover { border-color: var(--gold-300); color: var(--gold-300); }

.btn-call {
  background: var(--charcoal-900);
  color: var(--gold-300);
  padding: 10px 18px;
  font-size: 14px;
}
.btn-call:hover { background: var(--charcoal-800); }

.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-xl { padding: 20px 40px; font-size: 18px; }

/* ---------------------------------- Header ---------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 500;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(19, 17, 16, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.5);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream-50);
  flex-shrink: 0;
}
.brand-mark { color: var(--gold-400); display: flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold-300);
  font-weight: 500;
}
.brand-text strong {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: rgba(250, 248, 245, 0.82);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.main-nav a:hover { color: var(--gold-300); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-call svg { color: var(--gold-400); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream-50);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal-950);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(19,17,16,0.55) 0%, rgba(19,17,16,0.25) 30%, rgba(19,17,16,0.55) 68%, rgba(19,17,16,0.96) 100%),
    linear-gradient(90deg, rgba(19,17,16,0.55) 0%, rgba(19,17,16,0.05) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 90px;
  color: var(--cream-50);
}

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: var(--gold-300);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(250, 248, 245, 0.88);
  margin-bottom: 42px;
  max-width: 560px;
}

.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 42px;
  flex-wrap: wrap;
}
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .num {
  display: inline-block;
  min-width: 4ch;
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gold-300);
  line-height: 1;
}
.hero-stats .label {
  font-size: 13px;
  color: rgba(250, 248, 245, 0.75);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(250, 248, 245, 0.5);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--gold-300);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* ---------------------------------- Sections ---------------------------------- */
.section { padding: 110px 0; position: relative; }
.section-dark {
  background: var(--charcoal-950);
  color: var(--cream-50);
}
.section-dark .section-lead { color: rgba(250, 248, 245, 0.72); }

.kicker {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.section-dark .kicker { color: var(--gold-300); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}

.section-lead {
  font-size: 16.5px;
  color: var(--ink-500);
  max-width: 640px;
  margin-bottom: 50px;
}

/* ---------------------------------- Selling grid ---------------------------------- */
.selling-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  overflow: hidden;
}
.selling-card {
  background: var(--charcoal-900);
  padding: 40px 32px;
  transition: background 0.4s var(--ease);
}
.selling-card:hover { background: var(--charcoal-850); }
.selling-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300);
  margin-bottom: 24px;
}
.selling-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 700;
}
.selling-card p { font-size: 14.5px; color: rgba(250, 248, 245, 0.68); }

/* ---------------------------------- Park section ---------------------------------- */
.section-park { background: var(--cream-100); }
.park-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.park-media img {
  border-radius: 18px;
  box-shadow: 0 30px 60px -25px rgba(19, 17, 16, 0.35);
}
.park-copy p { color: var(--ink-700); font-size: 16px; margin-bottom: 28px; }

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--ink-700);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
}
.section-dark .check-list li,
.section-dark .park-copy p { color: rgba(250, 248, 245, 0.75); }

/* ---------------------------------- Complex / Tabs ---------------------------------- */
.block-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--charcoal-850);
  border-radius: 999px;
  margin-bottom: 40px;
}
.block-tab {
  border: none;
  background: transparent;
  color: rgba(250, 248, 245, 0.6);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.block-tab.active {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--charcoal-950);
}

.block-panel { display: none; }
.block-panel.active { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; animation: fadeUp 0.5s var(--ease); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.info-table, .unit-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.info-table th, .info-table td {
  text-align: left;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line-dark);
}
.info-table th {
  color: rgba(250, 248, 245, 0.55);
  font-weight: 500;
  width: 38%;
  white-space: nowrap;
}
.info-table td { color: var(--cream-50); font-weight: 500; }

.block-table-wrap { overflow-x: auto; }
.unit-table thead th {
  text-align: left;
  padding: 12px 14px;
  color: var(--gold-300);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(203, 168, 106, 0.35);
}
.unit-table tbody td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(250, 248, 245, 0.85);
  white-space: nowrap;
}
.unit-table tbody tr:hover { background: rgba(255,255,255,0.03); }

/* ---------------------------------- Units / floor plans ---------------------------------- */
.type-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 56px;
}
.chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--cream-100);
}
.chip-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--charcoal-950);
  border-color: transparent;
}

.floorplan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}
.floorplan-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-100);
  border: 1px solid var(--line-light);
}
.floorplan-card img { width: 100%; }
.floorplan-caption { padding: 24px 26px; }
.floorplan-caption h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}
.floorplan-caption p { font-size: 14px; color: var(--ink-500); }

.finish-strip {
  background: var(--charcoal-950);
  border-radius: 20px;
  padding: 40px 44px;
  color: var(--cream-50);
}
.finish-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 24px;
}
.finish-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.finish-logos span {
  padding: 12px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.finish-logos small {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(250, 248, 245, 0.5);
}

/* ---------------------------------- Community ---------------------------------- */
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.community-item {
  background: var(--charcoal-900);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.community-item:hover { transform: translateY(-4px); border-color: rgba(203, 168, 106, 0.4); }
.ci-icon { font-size: 30px; display: block; margin-bottom: 14px; }
.community-item p {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(250, 248, 245, 0.9);
}
.community-item small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(250, 248, 245, 0.5);
  margin-top: 6px;
}

/* ---------------------------------- Location ---------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.location-media img {
  border-radius: 18px;
  border: 1px solid var(--line-light);
}
.loc-block { margin-bottom: 34px; }
.loc-block:last-child { margin-bottom: 0; }
.loc-block h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--charcoal-900);
}

/* ---------------------------------- CTA ---------------------------------- */
.section-cta {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(203, 168, 106, 0.16), transparent 60%),
    var(--charcoal-950);
  text-align: center;
  color: var(--cream-50);
}
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.section-cta .section-lead { color: rgba(250, 248, 245, 0.72); margin-left: auto; margin-right: auto; }
.cta-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: rgba(250, 248, 245, 0.5);
}

/* ---------------------------------- Footer ---------------------------------- */
.site-footer {
  background: var(--charcoal-900);
  color: rgba(250, 248, 245, 0.55);
  padding: 48px 0 100px;
  border-top: 1px solid var(--line-dark);
}
.footer-brand {
  font-family: var(--font-serif);
  color: var(--cream-50);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-disclaimer {
  font-size: 12.5px;
  line-height: 1.8;
  max-width: 820px;
  margin-bottom: 20px;
}
.footer-copy { font-size: 13px; }
.footer-copy a { color: var(--gold-300); font-weight: 600; }

/* ---------------------------------- Mobile call bar ---------------------------------- */
.mobile-call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 600;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--charcoal-950);
  border-top: 1px solid var(--line-dark);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-call-bar.show { transform: translateY(0); }
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--charcoal-950);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 999px;
}

/* ---------------------------------- Reveal animation ---------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .selling-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: repeat(3, 1fr); }
  .park-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .block-panel.active { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-call span { display: none; }
  .header-call { padding: 10px; }
  .header-call svg { margin: 0; }

  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(19, 17, 16, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 24px 30px;
    gap: 4px;
    border-top: 1px solid var(--line-dark);
  }
  .main-nav.mobile-open a { padding: 14px 4px; font-size: 16px; border-bottom: 1px solid var(--line-dark); }

  .only-mobile { display: inline; }
  .section { padding: 74px 0; }
  .floorplan-grid { grid-template-columns: 1fr; }
  .finish-strip { padding: 30px 24px; }
  .mobile-call-bar { display: block; }
  .site-footer { padding-bottom: 110px; }
}

@media (max-width: 640px) {
  .selling-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 26px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
}

@media (max-width: 860px) {
  .only-desktop { display: none; }
}

/* ==========================================================================
   Fraud-click monitoring badge
   ========================================================================== */
.fraud-badge {
  position: fixed;
  top: calc(var(--header-h) + 12px);
  left: 14px;
  z-index: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px -6px rgba(220, 38, 38, 0.7);
}
.fraud-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: fraudPulse 1.4s infinite;
  flex-shrink: 0;
}
@keyframes fraudPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.65); }
  70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@media (max-width: 640px) {
  .fraud-badge { top: calc(var(--header-h) + 8px); left: 8px; padding: 7px 13px 7px 10px; font-size: 11px; }
  .fraud-text { max-width: 130px; }
}

/* ==========================================================================
   Toast
   ========================================================================== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 16px);
  z-index: 900;
  background: var(--charcoal-950);
  color: var(--cream-50);
  border: 1px solid var(--line-dark);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  box-shadow: 0 20px 40px -16px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ==========================================================================
   Reservation card (페이지 하단 인라인 섹션)
   ========================================================================== */
.reservation-wrap {
  margin-top: 64px;
}

.reservation-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: var(--cream-50);
  color: var(--charcoal-900);
  border-radius: 20px;
  padding: 44px 40px;
  text-align: left;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.45);
}

.reservation-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.modal-desc { font-size: 14px; color: var(--ink-500); margin-bottom: 26px; }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal-900);
}
.form-row .req { color: var(--gold-600); }
.form-row input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-light);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--charcoal-900);
  transition: border-color 0.25s;
}
.form-row input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.18);
}
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consent-box {
  background: var(--cream-100);
  border-radius: 12px;
  padding: 18px 18px 16px;
  margin-bottom: 20px;
}
.consent-title { font-size: 13.5px; font-weight: 700; margin-bottom: 10px; }
.consent-detail { margin-bottom: 14px; }
.consent-detail li {
  font-size: 12.5px;
  color: var(--ink-500);
  position: relative;
  padding-left: 12px;
  margin-bottom: 5px;
  line-height: 1.6;
}
.consent-detail li::before { content: "·"; position: absolute; left: 0; }
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.consent-check input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--gold-500); flex-shrink: 0; }

.form-error {
  font-size: 13px;
  color: #c0392b;
  margin: -6px 0 14px;
  min-height: 1em;
}

.btn-block { width: 100%; justify-content: center; }

.form-success {
  text-align: center;
  padding: 10px 0 4px;
}
.form-success svg { color: var(--gold-500); margin-bottom: 16px; }
.form-success p { font-size: 15px; line-height: 1.7; margin-bottom: 24px; color: var(--charcoal-900); }

/* .btn-outline은 어두운 배경 전용 스타일이므로, 밝은 예약 카드 배경 안에서는
   대비가 뒤집힌 버전을 사용한다 (흰 텍스트가 크림색 배경에 묻히는 문제 방지) */
.reservation-card .btn-outline {
  color: var(--charcoal-900);
  border-color: var(--line-light);
}
.reservation-card .btn-outline:hover {
  color: var(--gold-600);
  border-color: var(--gold-400);
}

@media (max-width: 480px) {
  .reservation-card { padding: 32px 22px; }
  .form-row-split { grid-template-columns: 1fr; gap: 0; }
}
