:root {
  --bg: #ffffff;
  --bg-soft: #f8f8f6;
  --panel: #f3f1ed;
  --border: rgba(60, 60, 60, 0.08);
  --text: #262626;
  --muted: #66625d;
  --gold: #d8c3a5;
  --gold-soft: #efe7da;
  --shadow: 0 12px 40px rgba(91, 79, 61, 0.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Noto Sans TC", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, #fdfcf9 100%);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: .02em; }
.brand-mark {
  width: 36px; height: 36px; display: inline-grid; place-items: center;
  border-radius: 50%; background: linear-gradient(180deg, #f9f5ed, #efe3cf);
  box-shadow: var(--shadow);
}
.site-nav { display: flex; align-items: center; gap: 18px; font-size: 14px; color: var(--muted); }
.site-nav a:hover { color: var(--text); }
.nav-cta {
  padding: 11px 16px; border-radius: 999px; background: var(--text); color: #fff !important;
}
.nav-toggle { display:none; border:0; background:transparent; font-size: 28px; }
.hero { padding-top: 64px; }
.hero-grid, .two-col {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center;
}
.hero-copy h1 { font-size: clamp(38px, 5vw, 72px); line-height: 1.05; margin: 10px 0 20px; }
.eyebrow { letter-spacing: .18em; color: #9f927f; font-size: 12px; margin: 0 0 8px; }
.hero-text, .section-heading p { color: var(--muted); font-size: 17px; line-height: 1.85; }
.hero-actions { display: flex; gap: 14px; margin: 28px 0 34px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 600;
  border: 1px solid transparent;
}
.btn-primary { background: var(--text); color: white; }
.btn-secondary { background: white; border-color: var(--border); }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0; list-style: none;
}
.hero-stats li {
  padding: 18px; border-radius: 18px; background: rgba(255,255,255,.75);
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.hero-stats strong { display: block; font-size: 24px; margin-bottom: 8px; }
.hero-stats span { color: var(--muted); font-size: 14px; }
.hero-visual { position: relative; min-height: 560px; }
.visual-card.main-card {
  position: absolute; inset: 28px 0 0 16px; border-radius: 36px;
  background: radial-gradient(circle at top, #fff 0%, #f6f2eb 45%, #f0ebe2 100%);
  border: 1px solid rgba(160,140,110,.12); box-shadow: 0 24px 60px rgba(108, 96, 76, 0.12);
  overflow: hidden;
}
.halo {
  position: absolute; inset: 20px; background: radial-gradient(circle at center, rgba(255,255,255,.95), rgba(239,231,218,0));
}
.window-card {
  position: absolute; inset: 68px; border-radius: 28px; background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.75); overflow: hidden;
}
.window-top { height: 56px; background: rgba(255,255,255,.78); border-bottom: 1px solid rgba(0,0,0,.05); }
.window-body { position: relative; height: calc(100% - 56px); }
.light-beam {
  position: absolute; width: 180px; height: 180px; border-radius: 50%; top: 36px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,247,228,.88) 38%, rgba(239,231,218,0) 74%);
}
.quote-box {
  position: absolute; left: 50%; bottom: 52px; transform: translateX(-50%); width: min(74%, 330px);
  padding: 26px; border-radius: 22px; background: rgba(255,255,255,.75); text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.7);
}
.quote-box p { margin: 0; font-size: 24px; line-height: 1.55; }
.floating-note {
  position: absolute; padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.05); box-shadow: var(--shadow); color: var(--muted);
}
.note-a { top: 42px; right: 10px; }
.note-b { left: 0; bottom: 96px; }
.note-c { right: 18px; bottom: 20px; }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.centered { text-align: center; margin: 0 auto; }
.section-heading h2 { font-size: clamp(28px, 4vw, 46px); line-height: 1.2; margin: 0 0 12px; }
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.info-card, .news-card, .wide-card, .event-card, .resource-tile, .album-card, .bullet-cards article {
  background: rgba(255,255,255,.84); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card, .wide-card, .event-card, .bullet-cards article { padding: 28px; }
.card-index { color: #a8977b; font-weight: 700; }
.info-card h3, .wide-card h3, .event-card h3 { font-size: 24px; margin: 12px 0 10px; }
.info-card p, .wide-card p, .event-card p, .news-card p { color: var(--muted); line-height: 1.8; }
.info-card a, .event-card a { color: #8f7b5c; font-weight: 600; }
.news-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 22px; }
.news-card { padding: 26px; min-height: 220px; }
.featured {
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,244,236,.96));
}
.tag, .event-date {
  display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--gold-soft); color: #8a7557; font-size: 12px;
}
.soft-panel { background: linear-gradient(180deg, rgba(248,248,246,.9), rgba(255,255,255,.9)); }
.feature-list { display: grid; gap: 16px; }
.feature-item {
  display: grid; gap: 6px; padding: 18px 20px; border-radius: 18px; background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
}
.feature-item span { color: var(--muted); }
.album-panel { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; }
.album-card { padding: 18px; }
.album-card.small { min-height: 220px; }
.album-cover {
  border-radius: 20px; min-height: 180px; margin-bottom: 14px;
  background-size: cover;
}
.cover-one { background: linear-gradient(135deg, #f9f6f1, #eadcc4, #fefefe); min-height: 360px; }
.cover-two { background: linear-gradient(135deg, #fff, #f3ede1, #e8d8bb); }
.cover-three { background: linear-gradient(135deg, #f7f4ef, #d8c3a5, #ffffff); }
.reverse { grid-template-columns: .95fr 1.05fr; }
.mock-visual {
  min-height: 430px; border-radius: 36px; background: linear-gradient(180deg, #faf8f4, #efe7da); box-shadow: var(--shadow);
  border: 1px solid rgba(160,140,110,.14); padding: 28px; display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
}
.mini-card {
  display: grid; place-items: center; border-radius: 22px; background: rgba(255,255,255,.82);
  color: #7b6b56; font-weight: 700; font-size: 22px;
}
.bullet-cards { display: grid; gap: 18px; }
.resources .resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.resource-tile {
  min-height: 140px; display: grid; place-items: center; font-size: 24px; font-weight: 600;
  color: #7a6953;
}
.cta-section { padding-bottom: 100px; }
.cta-box {
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
  padding: 34px; border-radius: 30px; background: linear-gradient(135deg, #fff, #f5f0e8);
  border: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow);
}
.cta-actions { display:flex; gap: 12px; flex-wrap: wrap; }
.site-footer {
  background: #faf8f4; border-top: 1px solid var(--border); padding: 34px 0 50px;
}
.footer-grid { display:grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 20px; color: var(--muted); }
.footer-grid h3 { color: var(--text); margin-top: 0; }
@media (max-width: 980px) {
  .hero-grid, .two-col, .reverse, .news-grid, .card-grid.three, .resources .resource-grid, .footer-grid, .album-panel, .card-grid.two {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 420px; }
  .site-nav {
    position: absolute; top: 76px; left: 16px; right: 16px; flex-direction: column; align-items: flex-start;
    padding: 18px; background: rgba(255,255,255,.97); border: 1px solid var(--border); border-radius: 22px; display: none;
  }
  .site-nav.open { display:flex; }
  .nav-toggle { display:block; }
  .hero-stats { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}
