/* =====================
   ROOT & RESET
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0A0A0A;
  --ink2: #1A1A1A;
  --white: #FAFAF8;
  --cream: #F5F0E8;
  --gold: #8F0000;
  --gold-light: rgba(143,0,0,0.1);
  --text: #2A2A2A;
  --muted: #7A7A7A;
  --light-muted: #A8A8A8;
  --border: rgba(0,0,0,0.07);

  --font-en: 'Cormorant Garamond', serif;
  --font-kr: 'Noto Serif KR', serif;
  --font-ui: 'Pretendard Variable', 'Pretendard', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-ui);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 480px;
  margin: 0 auto;
}

/* =====================
   REVEAL
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================
   MUSIC PLAYER
   ===================== */
.music-player {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 8px 14px 8px 8px;
}
.music-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.music-btn:hover { background: #6A0000; transform: scale(1.05); }
.music-info { display: flex; align-items: center; gap: 8px; }
.music-name { font-size: 11px; color: rgba(255,255,255,0.5); white-space: nowrap; }
.music-wave { display: flex; align-items: flex-end; gap: 2px; height: 12px; }
.mw-bar {
  width: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mw-bar:nth-child(1) { height: 40%; }
.mw-bar:nth-child(2) { height: 80%; }
.mw-bar:nth-child(3) { height: 60%; }
.mw-bar:nth-child(4) { height: 100%; }
.mw-bar:nth-child(5) { height: 50%; }
.music-player.playing .mw-bar {
  opacity: 1;
  animation: wave 1.2s ease-in-out infinite;
}
.music-player.playing .mw-bar:nth-child(2) { animation-delay: 0.1s; }
.music-player.playing .mw-bar:nth-child(3) { animation-delay: 0.2s; }
.music-player.playing .mw-bar:nth-child(4) { animation-delay: 0.3s; }
.music-player.playing .mw-bar:nth-child(5) { animation-delay: 0.15s; }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.3); }
}

/* =====================
   COVER
   ===================== */
.inv-cover {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cover-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.cover-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.cover-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cover-gradient {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(80,60,30,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 60%, rgba(40,30,10,0.4) 0%, transparent 60%),
    linear-gradient(160deg, #0D0B06 0%, #1A1208 40%, #0A0A0A 100%);
}
.cover-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 32px;
  animation: coverReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes coverReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cover-date-top {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 40px;
}
.cover-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}
.cn-name {
  font-family: var(--font-kr);
  font-size: 48px;
  font-weight: 200;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.cn-symbol {
  font-family: var(--font-en);
  font-size: 24px;
  color: var(--gold);
  margin: 4px 0;
}
.cover-sub {
  font-family: var(--font-kr);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 6px;
  margin-bottom: 8px;
}
.cover-eng {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.15);
}

.cover-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: coverReveal 2.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cs-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.cover-scroll span {
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-en);
}

.cover-corner {
  position: absolute;
  z-index: 4;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.12);
  animation: coverReveal 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.cover-corner.tl { top: 24px; left: 24px; }
.cover-corner.tr { top: 24px; right: 24px; }
.cover-corner.bl { bottom: 24px; left: 24px; }
.cover-corner.br { bottom: 24px; right: 24px; }

/* =====================
   SECTION COMMON
   ===================== */
.inv-section-inner {
  padding: 80px 32px;
  text-align: center;
}

/* =====================
   INTRO
   ===================== */
.inv-intro {
  background: var(--ink);
}
.intro-deco {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 36px;
}
.intro-text {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.intro-text-ko {
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 2.2;
  margin-bottom: 40px;
  word-break: keep-all;
}
.intro-sig {
  font-family: var(--font-kr);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sig-amp { color: var(--gold); opacity: 0.6; }

/* =====================
   COUNTDOWN
   ===================== */
.inv-countdown {
  background: var(--ink2);
  padding: 60px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inv-countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,168,130,0.06) 0%, transparent 70%);
}
.countdown-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
}
.countdown-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
}
.cd-unit {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.cd-unit:last-child { border-right: none; }
.cd-num {
  font-family: var(--font-en);
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.cd-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
}
.cd-sep {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  padding-bottom: 18px;
  align-self: flex-end;
}

/* =====================
   FAMILY
   ===================== */
.inv-family {
  background: var(--ink);
}
.family-deco {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 48px;
}
.family-grid {
  display: flex;
  align-items: center;
  gap: 0;
  text-align: center;
}
.family-side {
  flex: 1;
  padding: 0 16px;
}
.fs-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.fs-name-big {
  font-family: var(--font-kr);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 24px;
}
.fs-parents {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.fp-item {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
}
.fp-role { color: rgba(255,255,255,0.3); }
.fp-name { color: rgba(255,255,255,0.7); }
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 16px;
  border-radius: 100px;
  transition: all 0.2s;
}
.contact-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.family-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}
.fd-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.06);
}
.fd-heart { color: var(--gold); font-size: 14px; opacity: 0.5; }

/* =====================
   GALLERY
   ===================== */
.inv-gallery {
  background: var(--ink2);
  padding: 80px 0;
  overflow: hidden;
}
.gallery-header {
  text-align: center;
  padding: 0 32px 40px;
}
.gallery-deco {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 12px;
}
.gallery-title {
  font-family: var(--font-kr);
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
}
.gallery-strip {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.gallery-strip:active { cursor: grabbing; }
.gallery-track {
  display: flex;
  gap: 12px;
  padding: 0 24px;
  will-change: transform;
  transition: none;
}
.gallery-item {
  flex-shrink: 0;
  width: 220px;
  height: 300px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.gi-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
  display: flex;
  align-items: flex-end;
}
.gallery-item:hover .gi-inner { transform: scale(1.03); }
.gi-1 .gi-inner { background: linear-gradient(135deg, #3a2a1a 0%, #1a0d05 100%); }
.gi-2 .gi-inner { background: linear-gradient(135deg, #1a2a3a 0%, #050d1a 100%); }
.gi-3 .gi-inner { background: linear-gradient(135deg, #2a1a2a 0%, #0d050d 100%); }
.gi-4 .gi-inner { background: linear-gradient(135deg, #1a2a1a 0%, #050d05 100%); }
.gi-5 .gi-inner { background: linear-gradient(135deg, #2a2a1a 0%, #0d0d05 100%); }
.gi-6 .gi-inner { background: linear-gradient(135deg, #2a1a1a 0%, #0d0505 100%); }
.gi-overlay {
  padding: 12px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  width: 100%;
}
.gallery-hint {
  text-align: center;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.15);
  padding: 0 32px;
}

/* =====================
   WEDDING INFO
   ===================== */
.inv-info {
  background: var(--ink);
}
.info-deco {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 48px;
}
.info-date {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
.id-big {
  font-family: var(--font-en);
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  letter-spacing: -3px;
}
.id-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 8px;
}
.id-month {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 4px;
}
.id-day {
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.id-weekday {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
}
.id-time {
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
}
.info-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 40px;
}
.iv-label {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.7;
}
.iv-name {
  font-family: var(--font-kr);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 8px;
}
.iv-hall {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.iv-addr {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

/* =====================
   MAP
   ===================== */
.inv-map {
  background: var(--ink2);
  padding: 0 0 80px;
}
.map-container { }
.map-placeholder {
  width: 100%;
  height: 240px;
  background: #141414;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.map-pin { font-size: 32px; margin-bottom: 8px; }
.map-venue {
  font-family: var(--font-kr);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 0 32px;
}
.map-buttons {
  display: flex;
  gap: 10px;
  padding: 16px 24px 0;
}
.map-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  padding: 13px;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.2s;
}
.map-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.map-btn.kakao { background: #FEE500; color: #000; }
.map-btn.naver { background: #03C75A; color: #fff; }
.transport {
  padding: 32px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tp-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
}
.tp-icon { font-size: 20px; flex-shrink: 0; }
.tp-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tp-text strong { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
.tp-text span { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.6; word-break: keep-all; }

/* =====================
   ACCOUNT
   ===================== */
.inv-account {
  background: var(--ink);
}
.account-deco {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 28px;
}
.account-title {
  font-family: var(--font-kr);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}
.account-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 2;
  margin-bottom: 36px;
  word-break: keep-all;
}
.account-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.ag-label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 8px;
}
.ag-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 4px;
  align-items: center;
}
.ac-bank {
  grid-column: 1;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.ac-holder {
  grid-column: 1;
  font-family: var(--font-kr);
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
}
.ac-num {
  grid-column: 1;
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 1px;
}
.ac-copy {
  grid-column: 2;
  grid-row: 1 / 4;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-family: var(--font-ui);
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  align-self: center;
}
.ac-copy:hover { border-color: var(--gold); color: var(--gold); }
.ac-copy.copied { border-color: #4CAF50; color: #4CAF50; }

/* =====================
   GUESTBOOK
   ===================== */
.inv-guestbook {
  background: var(--ink2);
}
.gb-deco {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 28px;
}
.gb-title {
  font-family: var(--font-kr);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
}
.gb-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
}
.gb-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  text-align: left;
}
.gb-input, .gb-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.gb-input::placeholder, .gb-textarea::placeholder { color: rgba(255,255,255,0.2); }
.gb-input:focus, .gb-textarea:focus { border-color: rgba(143,0,0,0.35); }
.gb-input-password { }
.gb-submit {
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.gb-submit:hover { background: #6A0000; transform: translateY(-1px); }
.gb-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.gb-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 16px 18px;
}
.gbi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.gbi-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); }
.gbi-date { font-size: 11px; color: rgba(255,255,255,0.2); }
.gbi-msg { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; word-break: keep-all; }

/* =====================
   CLOSING
   ===================== */
.inv-closing {
  position: relative;
  background: var(--ink);
  padding: 100px 32px 60px;
  text-align: center;
  overflow: hidden;
}
.closing-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.inv-closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(196,168,130,0.06) 0%, transparent 60%);
}
.closing-inner { position: relative; z-index: 1; }
.cl-deco {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 36px;
}
.cl-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-kr);
  font-size: 32px;
  font-weight: 200;
  color: var(--white);
  margin-bottom: 28px;
}
.cl-and { color: var(--gold); opacity: 0.6; font-family: var(--font-en); font-size: 20px; }
.cl-message {
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 2.2;
  margin-bottom: 40px;
  word-break: keep-all;
}
.cl-date {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.15);
  margin-bottom: 60px;
}
.cl-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.12);
  letter-spacing: 1px;
}
.cl-brand a { color: rgba(255,255,255,0.2); transition: color 0.2s; }
.cl-brand a:hover { color: var(--gold); }

/* =====================
   TOAST
   ===================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(30,30,30,0.95);
  color: var(--white);
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  z-index: 200;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.08);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
