/* ============================================================
   ARTISTSEER — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  --bg-deep:        #0f0b06;
  --bg-base:        #19120a;
  --bg-surface:     #22180d;
  --bg-raised:      #2c1f11;
  --bg-card:        #251a0e;

  --text-primary:   #ffffff;
  --text-secondary: #ffffff;
  --text-muted:     rgba(255,255,255,0.6);

  --copper:         #c17a4a;
  --copper-light:   #d49060;
  --terracotta:     #b05535;
  --gold:           #d4a843;
  --gold-light:     #e8c96a;

  /* Five Elements (subtle motif) */
  --wood:    #4a7c59;
  --fire:    #b84a2a;
  --earth:   #c9933a;
  --metal:   #9a9aaa;
  --water:   #2a4a7a;

  --border:         rgba(193,122,74,0.18);
  --border-strong:  rgba(193,122,74,0.38);

  --glow-copper:    0 0 50px rgba(193,122,74,0.13);
  --glow-gold:      0 0 60px rgba(212,168,67,0.11);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  30px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', system-ui, sans-serif;

  --trans: all 0.3s ease;
  --nav-h: 68px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
img:not(.nav-logo-img):not(.footer-logo) {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: zoom-in;
}
img:not(.nav-logo-img):not(.footer-logo):hover {
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
a { color: var(--copper); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--gold); }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.25; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.4rem); font-weight: 500; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.65rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1.1rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text-primary); font-weight: 600; }
ul, ol { padding-left: 1.4rem; color: var(--text-secondary); }
li { margin-bottom: 0.4rem; }
li:last-child { margin-bottom: 0; }

/* ---- LAYOUT ---- */
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ---- NAVIGATION ---- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(15,11,6,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: row; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-logo-img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; border-radius: 50%; border: 2px solid rgba(212,168,67,0.4); }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  color: var(--text-primary); letter-spacing: 0.02em; line-height: 1;
}
.nav-logo-tag {
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--copper); line-height: 1; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
  padding: 0.45rem 0.7rem; border-radius: var(--radius-sm);
  letter-spacing: 0.07em; text-transform: uppercase; white-space: nowrap;
  display: block;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(212,168,67,0.07); }

/* Dropdown */
.nav-drop > a::after { content: ' ▾'; font-size: 0.65rem; color: var(--copper); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  min-width: 210px; background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 0.4rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s ease;
  transition-delay: 0.8s; /* long delay before hiding */
  box-shadow: 0 10px 35px rgba(0,0,0,0.6);
}
/* Invisible bridge covers the gap so mouse travel doesn't close the menu */
.nav-drop-menu::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.nav-drop:hover .nav-drop-menu {
  opacity: 1; pointer-events: auto;
  transition-delay: 0s; /* open instantly */
}
.nav-drop-menu a {
  display: block; padding: 0.45rem 0.8rem; font-size: 0.8rem;
  text-transform: none; letter-spacing: 0.03em; border-radius: var(--radius-sm);
  color: var(--text-secondary); white-space: nowrap;
}
.nav-drop-menu a:hover { color: var(--gold); background: rgba(212,168,67,0.07); }

/* Rectification standalone button */
.nav-rect-btn {
  flex-shrink: 0;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  color: var(--bg-base);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 0.42rem 0.9rem;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-rect-btn:hover { background: var(--copper); border-color: var(--copper); color: #fff; }
.nav-rect-btn--active { background: var(--copper); border-color: var(--copper); color: #fff; }
@media (max-width: 768px) { .nav-rect-btn { display: none; } }

/* Burger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.4rem; flex-shrink: 0;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--trans); }

/* Mobile nav drawer */
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-deep); border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.5rem; z-index: 998;
  flex-direction: column; gap: 0.25rem;
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 0.9rem; color: var(--text-secondary); padding: 0.55rem 0.8rem; border-radius: var(--radius-sm); }
.nav-mobile a:hover { color: var(--gold); background: rgba(212,168,67,0.07); }
.nav-mobile-label {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--copper); padding: 0.9rem 0.8rem 0.3rem; font-weight: 700;
}

main { padding-top: var(--nav-h); }

/* ---- HERO (home) ---- */
.hero {
  position: relative; min-height: calc(90vh - var(--nav-h));
  display: flex; align-items: center; overflow: hidden;
  background: var(--bg-deep);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 75% 55% at 65% 40%, rgba(193,122,74,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 15% 75%, rgba(212,168,67,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 90%, rgba(42,74,122,0.05) 0%, transparent 60%);
}
.hero .container { position: relative; z-index: 1; padding-top: 2rem; padding-bottom: 2rem; }
.hero-inner { display: grid; grid-template-columns: 1fr 500px; gap: 3rem; align-items: center; }
.hero-eyebrow {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--copper); font-weight: 700; margin-bottom: 1rem; display: block;
}
.hero h1 { margin-bottom: 0.75rem; }
.hero-subhead {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 1.5rem; max-width: 480px;
}
.hero-tagline {
  font-family: var(--font-display); font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-style: italic; color: var(--gold); margin-bottom: 1.5rem; line-height: 1.4;
}
.hero-body {
  font-size: 1rem; color: var(--text-secondary); max-width: 520px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: visible;
  aspect-ratio: 1/1; background: transparent;
  border: none;
}
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.35) brightness(0.78) contrast(1.05);
}
.hero-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(193,122,74,0.22) 0%, rgba(15,11,6,0.38) 100%);
  border-radius: var(--radius-xl);
}
.hero-image-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  color: var(--text-muted); font-size: 0.85rem; text-align: center; padding: 2rem;
}
.hero-image-placeholder .placeholder-icon { font-size: 3rem; opacity: 0.3; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative; padding: 4.5rem 0 3rem; overflow: hidden;
  background: var(--bg-deep);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 80% at 50% 50%, rgba(193,122,74,0.07) 0%, transparent 68%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.4rem; }
.page-hero-sub {
  font-family: var(--font-display); font-style: italic;
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.5;
}
.page-hero-eyebrow {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--copper); font-weight: 700; display: block; margin-bottom: 0.75rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--trans);
  text-decoration: none; line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--copper), var(--gold));
  color: var(--bg-deep);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(193,122,74,0.4); color: var(--bg-deep); }
.btn-outline {
  background: transparent; border: 1px solid var(--border-strong);
  color: var(--text-secondary);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,168,67,0.05); }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.73rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.85rem; }

/* ---- CARDS ---- */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; transition: var(--trans);
}
.card:hover { border-color: var(--border-strong); box-shadow: var(--glow-copper); transform: translateY(-3px); }
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { max-width: 600px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.02rem; color: var(--text-secondary); }
.section-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--copper); font-weight: 700; display: block; margin-bottom: 0.6rem;
}

/* ---- DIVIDERS ---- */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); margin: 2rem 0; }
.ornament { text-align: center; color: var(--copper); font-size: 1rem; opacity: 0.4; letter-spacing: 0.6em; margin: 1.5rem 0; }

/* ---- CALLOUTS ---- */
.callout {
  background: rgba(193,122,74,0.07); border: 1px solid rgba(193,122,74,0.28);
  border-left: 3px solid var(--copper); border-radius: var(--radius-md);
  padding: 1.4rem 1.75rem; margin: 2rem 0;
}
.callout-gold {
  background: rgba(212,168,67,0.06); border-color: rgba(212,168,67,0.28);
  border-left-color: var(--gold);
}
.callout h4 { font-size: 0.88rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; font-weight: 700; }
.callout p { font-size: 0.92rem; margin-bottom: 0; }

/* Laws callout — appears on every reading page */
.laws-callout {
  background: linear-gradient(135deg, rgba(42,74,122,0.12), rgba(193,122,74,0.07));
  border: 1px solid rgba(193,122,74,0.22); border-radius: var(--radius-lg);
  padding: 1.75rem 2rem; margin: 3.5rem 0;
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.laws-callout-icon { font-size: 2.2rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.laws-callout-body h4 { font-size: 1rem; color: var(--gold); margin-bottom: 0.4rem; }
.laws-callout-body p { font-size: 0.9rem; margin-bottom: 0; }
.laws-callout-body a { color: var(--copper); font-weight: 600; }
.laws-callout-body a:hover { color: var(--gold); }

/* ---- PRICING PATHS ---- */
.price-paths { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); margin-top: 3rem; }
.price-path {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.price-path.featured {
  border-color: rgba(212,168,67,0.38);
  background: linear-gradient(160deg, rgba(212,168,67,0.05), var(--bg-card));
  box-shadow: var(--glow-gold);
}
.price-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--copper); font-weight: 700; }
.price-amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.price-path h3 { font-size: 1.2rem; margin-bottom: 0; }
.price-path > p { font-size: 0.9rem; flex: 1; }
.price-steps { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; padding: 0; }
.price-steps li { display: flex; gap: 0.55rem; font-size: 0.87rem; color: var(--text-secondary); align-items: flex-start; }
.price-steps li::before { content: '→'; color: var(--copper); flex-shrink: 0; margin-top: 0.08em; }
.payment-methods { display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.85rem; }
.pm-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); }
.pm-item strong { color: var(--text-primary); }
.pm-item a { color: var(--copper); }
.pm-item a:hover { color: var(--gold); }

/* ---- PREPARE BOX ---- */
.prepare-box {
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 2rem; margin: 2.5rem 0;
}
.prepare-box h4 {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--copper); font-family: var(--font-body); font-weight: 700; margin-bottom: 1rem;
}
.prepare-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.prepare-list li { display: flex; gap: 0.55rem; font-size: 0.92rem; color: var(--text-secondary); align-items: flex-start; }
.prepare-list li::before { content: '◆'; color: var(--copper); font-size: 0.5rem; flex-shrink: 0; margin-top: 0.5em; }

/* ---- IMAGE PLACEHOLDER ---- */
.img-placeholder {
  background: var(--bg-surface); border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.82rem; text-align: center; padding: 2.5rem 1.5rem;
}
.img-placeholder .ph-icon { font-size: 2.5rem; opacity: 0.3; }

/* Site image with warm overlay */
.site-image { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.site-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: sepia(0.3) brightness(0.78) contrast(1.08);
}
.site-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(193,122,74,0.2), rgba(15,11,6,0.35));
  pointer-events: none;
}

/* ---- ELEMENT BADGES ---- */
.badge { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.18rem 0.65rem; border-radius: 999px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; }
.badge-wood  { background: rgba(74,124,89,0.18);  color: #6dba88; border: 1px solid rgba(74,124,89,0.35); }
.badge-fire  { background: rgba(184,74,42,0.18);  color: #e0705a; border: 1px solid rgba(184,74,42,0.35); }
.badge-earth { background: rgba(201,147,58,0.18); color: #d4a843; border: 1px solid rgba(201,147,58,0.35); }
.badge-metal { background: rgba(154,154,170,0.18);color: #c0c0cc; border: 1px solid rgba(154,154,170,0.35); }
.badge-water { background: rgba(42,74,122,0.18);  color: #6090cc; border: 1px solid rgba(42,74,122,0.35); }

/* ---- ELEMENT CARDS (BaZi) ---- */
.element-card {
  border-radius: var(--radius-md); padding: 1.5rem 1.75rem; margin-bottom: 0.75rem;
  border-left: 4px solid;
}
.element-card.wood  { background: rgba(74,124,89,0.07);  border-color: var(--wood); }
.element-card.fire  { background: rgba(184,74,42,0.07);  border-color: var(--fire); }
.element-card.earth { background: rgba(201,147,58,0.07); border-color: var(--earth); }
.element-card.metal { background: rgba(154,154,170,0.07);border-color: var(--metal); }
.element-card.water { background: rgba(42,74,122,0.07);  border-color: var(--water); }
.element-card h4 { margin-bottom: 0.4rem; }
.element-card.wood  h4 { color: #6dba88; }
.element-card.fire  h4 { color: #e0705a; }
.element-card.earth h4 { color: #d4a843; }
.element-card.metal h4 { color: #c0c0cc; }
.element-card.water h4 { color: #6090cc; }
.element-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ---- LAW CARDS ---- */
.law-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.75rem; margin-bottom: 0.75rem;
  display: flex; gap: 1.5rem;
}
.law-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  color: rgba(212,168,67,0.18); line-height: 1; flex-shrink: 0; min-width: 3rem; text-align: right;
}
.law-body h3 { font-size: 1.05rem; color: var(--gold); margin-bottom: 0.35rem; }
.law-body p { font-size: 0.9rem; margin-bottom: 0.3rem; }
.law-implication {
  font-size: 0.84rem; color: var(--text-muted); font-style: italic;
  border-left: 2px solid var(--border-strong); padding-left: 0.75rem; margin-top: 0.6rem;
}

/* ---- ACCORDION ---- */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:last-child { border-bottom: none; }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.5rem; background: none; border: none; cursor: pointer;
  text-align: left; color: var(--text-primary); font-family: var(--font-display);
  font-size: 1rem; font-weight: 500; transition: var(--trans);
}
.acc-btn:hover { background: rgba(193,122,74,0.04); color: var(--gold); }
.acc-btn.open { color: var(--gold); }
.acc-icon {
  width: 22px; height: 22px; border: 1px solid var(--border-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0; color: var(--copper); transition: var(--trans);
}
.acc-btn.open .acc-icon { transform: rotate(45deg); border-color: var(--gold); color: var(--gold); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.acc-body.open { max-height: 2500px; }
.acc-body-inner { padding: 0 1.5rem 1.5rem; }
.acc-body-inner p { font-size: 0.92rem; }

/* ---- HD TYPE CARDS ---- */
.hd-type {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 0.65rem;
}
.hd-pct { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--gold); min-width: 3rem; text-align: right; flex-shrink: 0; line-height: 1.3; }
.hd-type h4 { margin: 0 0 0.2rem; font-size: 1rem; }
.hd-type p { margin: 0; font-size: 0.86rem; }

/* ---- RELATIONSHIP ASPECT TYPES ---- */
.aspect-row { display: flex; align-items: center; gap: 0.8rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.aspect-row:last-child { border-bottom: none; }
.aspect-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0.5rem; bottom: 0.5rem; width: 1px; background: linear-gradient(to bottom, var(--copper), rgba(212,168,67,0.3), transparent); }
.tl-item { position: relative; margin-bottom: 2rem; }
.tl-item:last-child { margin-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: -2rem; top: 0.6rem; width: 9px; height: 9px; background: var(--copper); border-radius: 50%; transform: translateX(-4px); }
.tl-year { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--copper); font-weight: 700; margin-bottom: 0.25rem; }
.tl-item h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.tl-item p { font-size: 0.9rem; margin-bottom: 0; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-deep); border-top: 1px solid var(--border); padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-primary); margin-bottom: 0.2rem; }
.footer-tagline { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--copper); margin-bottom: 1rem; }
.footer-desc { font-size: 0.86rem; color: var(--text-muted); }
.footer-col h5 { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--copper); font-family: var(--font-body); font-weight: 700; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.86rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

/* ---- QUOTE BLOCK ---- */
.quote-block {
  position: relative; padding: 2rem 2.5rem;
  background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.quote-block::before {
  content: '\201C'; position: absolute; top: -0.2rem; left: 1.5rem;
  font-family: var(--font-display); font-size: 5rem; color: var(--copper); opacity: 0.25; line-height: 1;
}
.quote-block p { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; line-height: 1.65; color: var(--text-secondary); }

/* ---- OFFERING CARD (hub page) ---- */
.offering-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem; display: flex;
  flex-direction: column; gap: 0.75rem; transition: var(--trans); text-decoration: none;
}
.offering-card:hover { border-color: var(--border-strong); box-shadow: var(--glow-copper); transform: translateY(-3px); color: inherit; }
.offering-icon { font-size: 2.2rem; line-height: 1; }
.offering-card h3 { font-size: 1.2rem; color: var(--text-primary); }
.offering-card p { font-size: 0.88rem; flex: 1; margin-bottom: 0; }
.offering-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.offering-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--copper); font-weight: 700; }

/* ---- DONATION PAGE ---- */
.donation-box {
  background: var(--bg-card); border: 1px solid rgba(212,168,67,0.3);
  border-radius: var(--radius-xl); padding: 3rem; text-align: center;
  box-shadow: var(--glow-gold); max-width: 540px; margin: 0 auto;
}
.donation-box h2 { margin-bottom: 0.75rem; }
.donation-box p { font-size: 0.95rem; margin-bottom: 1.75rem; }

/* ---- CONTACT ---- */
.contact-method { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.contact-method:last-child { border-bottom: none; }
.cm-icon { width: 42px; height: 42px; background: rgba(193,122,74,0.1); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cm-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--copper); font-weight: 700; display: block; margin-bottom: 0.2rem; }
.cm-value { font-size: 0.95rem; color: var(--text-secondary); }
.cm-value a { color: var(--copper); }
.cm-value a:hover { color: var(--gold); }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1) { opacity:1;transform:translateY(0);transition-delay:0s }
.stagger.visible > *:nth-child(2) { opacity:1;transform:translateY(0);transition-delay:.1s }
.stagger.visible > *:nth-child(3) { opacity:1;transform:translateY(0);transition-delay:.2s }
.stagger.visible > *:nth-child(4) { opacity:1;transform:translateY(0);transition-delay:.3s }
.stagger.visible > *:nth-child(5) { opacity:1;transform:translateY(0);transition-delay:.4s }
.stagger.visible > *:nth-child(6) { opacity:1;transform:translateY(0);transition-delay:.5s }
.stagger.visible > *:nth-child(n+7) { opacity:1;transform:translateY(0);transition-delay:.6s }

/* ---- UTILITIES ---- */
.text-gold   { color: var(--gold); }
.text-copper { color: var(--copper); }
/* ---- CLOCK MAGNIFY ON HOVER ---- */
.clock-wrap {
  display: block;
  cursor: zoom-in;
  transition: transform 0.38s cubic-bezier(0.34,1.3,0.64,1);
  transform-origin: center center;
  position: relative;
  z-index: 1;
}
.clock-wrap:hover {
  transform: scale(1.22);
  z-index: 20;
}

.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.italic      { font-style: italic; }
.serif       { font-family: var(--font-display); }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-wrap { max-width: 380px; aspect-ratio: 4/5; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { min-height: auto; padding: 3rem 0; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .price-paths { grid-template-columns: 1fr; }
  .laws-callout { flex-direction: column; gap: 1rem; }
  .law-card { gap: 1rem; }
  .law-num { font-size: 2rem; min-width: 2.5rem; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .donation-box { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  h1 { font-size: 1.8rem; }
  .btn { padding: 0.7rem 1.5rem; }
  .page-hero { padding: 3rem 0 2rem; }
  .law-card { flex-direction: column; }
  .hd-type { flex-direction: column; }
  .hd-pct { text-align: left; }
}
