/* Lumeraé 璐美拉 — 全站樣式 */
:root {
  /* 品牌色 — 從 logo 月亮萃取 */
  --gold: #A07845;          /* 主色：深金 */
  --gold-soft: #C4A06A;
  --taupe: #B8A687;         /* 副色：香檳灰金 */
  --taupe-soft: #D6C8B0;

  --bg: #FAF7F2;            /* 米白底 */
  --bg-2: #F2ECE4;
  --surface: #FFFFFF;
  --ink: #1A1611;
  --ink-2: #4A4039;
  --muted: #8A7F75;
  --line: #E4DCD1;

  --serif-en: 'Cormorant Garamond', 'Noto Serif TC', serif;
  --display: 'DM Serif Display', 'Noto Serif TC', serif;
  --serif-tc: 'Noto Serif TC', serif;
  --sans: 'Inter', 'Noto Sans TC', system-ui, sans-serif;

  --max: 1200px;
  --pad-x: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans);
  font-size: 15px; 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; border: none; background: none; }

.display { font-family: var(--display); font-weight: 400; letter-spacing: -0.005em; }
.serif { font-family: var(--serif-en); }
.serif-tc { font-family: var(--serif-tc); }
.italic { font-style: italic; }
.caps { text-transform: uppercase; letter-spacing: 0.22em; font-size: 11px; font-weight: 500; color: var(--muted); }

/* ========== Header ========== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px; height: 38px;
  background-image: url('assets/lumerae-mark.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.brand-text {
  display: flex; flex-direction: column;
  line-height: 1; gap: 2px;
}
.brand-en {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.01em;
}
.brand-tc {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  padding-left: 2px;
}

.nav {
  display: flex; gap: 4px; align-items: center;
}
.nav a {
  padding: 8px 14px;
  font-size: 13px;
  color: var(--ink-2);
  border-radius: 999px;
  transition: all .2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--gold); }
.nav a.active { background: var(--ink); color: var(--bg); }

.header-cta {
  display: flex; gap: 10px; align-items: center;
}

/* mobile menu button */
.menu-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.menu-btn span {
  display: block; width: 16px; height: 1.5px; background: var(--ink);
  position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: ''; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--ink);
}
.menu-btn span::before { top: -5px; }
.menu-btn span::after { top: 5px; }

@media (max-width: 980px) {
  .nav, .header-cta .btn-primary { display: none; }
  .menu-btn { display: inline-flex; }
}

/* mobile drawer */
.drawer {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex; flex-direction: column;
  padding: 80px 32px 32px;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 22px; right: 22px;
  width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.drawer a {
  font-family: var(--display);
  font-size: 28px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
}
.drawer a small {
  font-family: var(--sans);
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: all .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--gold); }
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--ink); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-line { border-bottom: 1px solid var(--ink); padding: 6px 0; border-radius: 0; gap: 12px; }
.btn-line:hover { color: var(--gold); border-color: var(--gold); }

/* ========== Layout helpers ========== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.wide { max-width: 1400px; margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: clamp(60px, 9vw, 120px) 0; }
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.eyebrow .dash { width: 28px; height: 1px; background: var(--gold); }
.h1-display {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.h1-display em { font-style: italic; color: var(--gold); font-weight: 300; }
.h2-display {
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.h2-display em { font-style: italic; color: var(--gold); font-weight: 300; }
.h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
  margin: 0 0 12px;
}
.lede {
  font-family: var(--serif-en);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  font-style: italic;
  color: var(--muted);
  margin: 0;
}

/* page hero band */
.page-hero {
  padding: clamp(80px, 12vw, 160px) 0 clamp(50px, 7vw, 90px);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero .crumb {
  display: flex; gap: 10px; color: var(--muted); font-size: 12px;
  margin-bottom: 28px; align-items: center;
}
.page-hero .crumb a:hover { color: var(--gold); }

/* ========== Cards ========== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s;
}
.card:hover { border-color: var(--gold); transform: translateY(-2px); }
.card-pad { padding: 28px; }

/* ========== Footer ========== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 40px;
}
.footer .container { max-width: var(--max); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid color-mix(in oklab, var(--bg) 18%, transparent);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer h4 {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe-soft);
  margin: 0 0 18px; font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { font-size: 13px; color: color-mix(in oklab, var(--bg) 78%, transparent); }
.footer ul a:hover { color: var(--taupe-soft); }
.footer-bottom {
  margin-top: 30px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 11px; color: color-mix(in oklab, var(--bg) 55%, transparent);
}

/* ========== Footer Social Icons ========== */
.footer-social {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid color-mix(in oklab, var(--bg) 12%, transparent);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.footer-social-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe-soft); font-weight: 500;
}
.footer-social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social .social-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: color-mix(in oklab, var(--bg) 8%, transparent);
  color: color-mix(in oklab, var(--bg) 78%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg) 14%, transparent);
  transition: all .2s ease;
}
.footer-social .social-icon:hover {
  background: var(--gold, #C9A86A);
  color: var(--ink);
  border-color: var(--gold, #C9A86A);
  transform: translateY(-2px);
}

/* ========== LINE Floating Button (右下固定) ========== */
.line-floating-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 14px;
  background: #06C755;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35), 0 2px 6px rgba(0,0,0,.12);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: lineBtnIn .4s ease-out both;
}
.line-floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(6, 199, 85, 0.45), 0 4px 10px rgba(0,0,0,.15);
}
.line-floating-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  flex-shrink: 0;
}
.line-floating-label { white-space: nowrap; }
@keyframes lineBtnIn {
  from { opacity: 0; transform: translateY(20px) scale(.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 600px) {
  .line-floating-btn {
    right: 14px;
    bottom: 14px;
    padding: 10px 16px 10px 12px;
    font-size: 13px;
  }
  .line-floating-icon { width: 28px; height: 28px; }
  .line-floating-icon svg { width: 22px; height: 22px; }
}

/* ========== Forms ========== */
.field { display: grid; gap: 6px; }
.field label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
}

/* ========== Mobile RWD — 統一處理所有 inline grid ========== */
/* 平板:雙欄變單欄 (≤ 880px) */
@media (max-width: 880px) {
  /* Hero 1.1fr 1fr → 單欄 */
  [style*="grid-template-columns: 1.1fr 1fr"],
  [style*="grid-template-columns:1.1fr 1fr"],
  [style*="grid-template-columns:1fr 1.4fr"],
  [style*="grid-template-columns: 1fr 1.4fr"],
  [style*="grid-template-columns:1fr 1.6fr"],
  [style*="grid-template-columns: 1fr 1.6fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* 數字 + 內文 兩欄 (60px 1fr / 80px 1fr) 保留:這是行內排版,本就單欄不會壞 */
  /* 三欄編號 + 標題 + 描述:franchise.html flow */
  [style*="grid-template-columns:80px 1fr 1fr"] {
    grid-template-columns: 60px 1fr !important;
    gap: 16px !important;
  }
  [style*="grid-template-columns:80px 1fr 1fr"] > *:nth-child(3) {
    grid-column: 1 / -1;
    padding-left: 60px;
  }
  /* home.system 內 2 欄項目卡 → 單欄 */
  [style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Hero 內 stats 行:防止統計數字撐爆 */
  #hero-section [style*="display:flex"][style*="gap:40px"] {
    gap: 24px !important;
  }
}

/* 手機:更激進的調整 (≤ 600px) */
@media (max-width: 600px) {
  /* container padding 拉小 */
  :root { --pad-x: 18px; }

  /* Hero 統計數字字級拉小 */
  #hero-section .display { font-size: 26px !important; }
  /* h1 過大會超出視窗 */
  .h1-display { font-size: clamp(34px, 9vw, 44px) !important; }
  .h2-display { font-size: clamp(26px, 7vw, 34px) !important; }

  /* page-hero padding 縮短 */
  .page-hero { padding: 80px 0 50px !important; }

  /* 卡片 padding */
  .card-pad { padding: 22px !important; }

  /* CTA 按鈕在小螢幕全寬 */
  .btn { padding: 12px 20px; font-size: 12.5px; }

  /* section padding 適度縮短 */
  .section { padding: 60px 0 !important; }

  /* footer */
  .footer { padding: 60px 0 30px; }
  .footer-grid { padding-bottom: 40px; }
  .footer-bottom { font-size: 10.5px; }
}

/* 超小手機 (≤ 380px) */
@media (max-width: 380px) {
  .h1-display { font-size: 30px !important; }
  .btn { padding: 10px 16px; font-size: 12px; }
  .line-floating-btn .line-floating-label { display: none; }
  .line-floating-btn { padding: 10px; }
}

/* ========== Portfolio (作品集) ========== */
.portfolio-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 36px;
  justify-content: center;
}
.pf-chip {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 13px;
  color: var(--ink-2);
  font-family: inherit;
  letter-spacing: 0.04em;
  transition: all .2s;
}
.pf-chip:hover { border-color: var(--gold); color: var(--gold); }
.pf-chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(var(--pf-cols, 3), 1fr);
  gap: 18px;
}
@media (max-width: 880px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr !important; }
}
.pf-item {
  margin: 0;
  cursor: zoom-in;
  display: flex; flex-direction: column; gap: 10px;
}
.pf-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
}
.pf-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.pf-item:hover .pf-frame img { transform: scale(1.06); }
.pf-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,17,.45), transparent 50%);
  opacity: 0;
  transition: opacity .25s;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 14px;
}
.pf-item:hover .pf-overlay { opacity: 1; }
.pf-zoom {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.pf-caption {
  font-family: var(--display);
  font-size: 16px;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.02em;
}
.portfolio-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
  font-size: 14px;
}

/* ========== Lightbox ========== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,8,6,.94);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 60px 80px;
  animation: fadeIn .25s ease;
}
.lightbox.open { display: flex; }
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
.lightbox-stage {
  position: relative;
  max-width: 90vw; max-height: 84vh;
  display: flex; flex-direction: column; gap: 14px;
  align-items: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.lightbox-meta {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; gap: 20px;
  color: rgba(255,255,255,.85);
  font-family: var(--display); font-size: 17px;
}
.lightbox-meta > div:last-child {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 0.18em; color: rgba(255,255,255,.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  font-family: inherit;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
}
.lightbox-close { top: 24px; right: 24px; font-size: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 768px) {
  .lightbox { padding: 50px 16px; }
  .lightbox-close { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 20px; }
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; font-size: 22px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-meta { font-size: 14px; }
}

/* ========== Product Hero (主要產品多角度展示) ========== */
.product-hero { padding: clamp(50px, 7vw, 90px) 0; }
.product-stage {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}
@media (max-width: 880px) {
  .product-stage { grid-template-columns: 1fr; gap: 40px; }
}

.product-visual { display: flex; flex-direction: column; gap: 18px; }

/* 漸層展示框 — 把產品照粗邊融進去 */
.product-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -25px rgba(160, 120, 69, 0.28),
    0 12px 30px -15px rgba(26, 22, 17, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  background: linear-gradient(
    150deg,
    #FAF5EC 0%,
    #F2EADC 35%,
    #E8DDC8 70%,
    #DDD0B7 100%
  );
}
/* 中央光暈 (柔化背景過渡) */
.product-frame-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(ellipse at 30% 25%, rgba(255, 245, 220, 0.4) 0%, transparent 50%);
}
/* 邊緣暗角 (引導視線到中心) */
.product-frame-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(160, 120, 69, 0.15) 100%);
  pointer-events: none;
}
.product-main-img {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  object-fit: contain;
  z-index: 2;
  transition: opacity .25s ease;
  filter: drop-shadow(0 20px 30px rgba(60, 45, 25, 0.18));
}

/* 產品標籤 (左上角) */
.product-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 5;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(160, 120, 69, 0.2);
}

/* 縮圖列 */
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(150deg, #FAF5EC, #E8DDC8);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: all .25s ease;
  position: relative;
}
.product-thumb img {
  width: 86%; height: 86%;
  object-fit: contain;
  position: absolute; inset: 7%;
  transition: transform .3s ease;
}
.product-thumb:hover { transform: translateY(-2px); }
.product-thumb:hover img { transform: scale(1.05); }
.product-thumb.active {
  border-color: var(--gold);
  box-shadow: 0 8px 20px -8px rgba(160, 120, 69, 0.4);
}
.product-thumb.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold);
}

/* 產品資訊區 */
.product-info { padding: 0 8px; }
.product-name {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 8px 0 18px;
}
.product-desc {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0 0 28px;
}
.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-spec {
  padding: 18px 16px 18px 0;
  border-right: 1px solid var(--line);
}
.product-spec:nth-child(2n) { border-right: 0; padding-left: 24px; padding-right: 0; }
.product-spec:nth-child(n+3) { border-top: 1px solid var(--line); }
.product-spec .caps {
  font-size: 10.5px;
  color: var(--muted);
  margin-bottom: 6px;
}
.product-spec-val {
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
@media (max-width: 480px) {
  .product-spec-val { font-size: 18px; }
}

/* 未來產品 卡片 — 與主產品有區別感 */
.upcoming-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px 26px;
  transition: all .3s ease;
}
.upcoming-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -15px rgba(160, 120, 69, 0.28);
}
.upcoming-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: color-mix(in oklab, var(--gold) 8%, transparent);
  border: 1px solid color-mix(in oklab, var(--gold) 22%, transparent);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.upcoming-card h3 { font-size: 19px; }

/* ========== Animations ========== */
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s ease both; }
.fade-up.d1 { animation-delay: .1s; }
.fade-up.d2 { animation-delay: .2s; }
.fade-up.d3 { animation-delay: .3s; }
