/* ── ORIVERGE GLOBAL STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1B2A5E;
  --dark-navy: #111E45;
  --deeper-navy: #0C1530;
  --gold: #C9A84C;
  --light-gold: #E8D5A3;
  --pale-gold: #F5EDD8;
  --white: #FFFFFF;
  --cream: #F7F4ED;
  --text-muted: rgba(232,213,163,0.65);
  --text-body: rgba(255,255,255,0.72);
  --border: rgba(201,168,76,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--deeper-navy);
  color: var(--white);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark-navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── TOP GOLD BAR ── */
.gold-top-bar { height: 4px; background: var(--gold); }

/* ── NAV ── */
nav {
  position: fixed; top: 4px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 68px;
  background: rgba(8,12,28,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(6,9,22,0.98); }
.nav-logo { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; text-decoration: none; }
.nav-logo .ori { color: var(--gold); }
.nav-logo .verge { color: var(--white); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 10.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.25s; transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  border: 1.5px solid var(--gold); color: var(--gold);
  padding: 8px 20px; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  font-family: 'Montserrat', sans-serif; transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--dark-navy); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  min-height: 340px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 60px 56px;
  margin-top: 72px; position: relative;
  background: linear-gradient(160deg, var(--deeper-navy) 0%, #0e1a3d 60%, var(--dark-navy) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08); pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: 5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 64px); font-weight: 400; line-height: 1.1;
  color: var(--white); max-width: 700px;
}
.page-hero-title em { color: var(--gold); font-style: italic; }
.page-hero-desc {
  font-size: 12px; color: var(--text-muted); max-width: 520px;
  line-height: 1.9; margin-top: 18px; letter-spacing: 0.3px;
}

/* ── SECTION COMMON ── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 90px 60px; }
.section-label {
  font-size: 9px; font-weight: 700; letter-spacing: 5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 46px); font-weight: 400; line-height: 1.15;
  color: var(--white); margin-bottom: 18px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-desc { font-size: 12.5px; color: var(--text-body); line-height: 1.9; max-width: 580px; }
.gold-rule { width: 50px; height: 1px; background: var(--gold); margin-bottom: 28px; }

/* ── DIVIDERS ── */
.section-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 0; width: 100%;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--dark-navy);
  padding: 13px 32px; font-size: 10.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  font-family: 'Montserrat', sans-serif; transition: all 0.25s;
}
.btn-primary:hover { background: var(--light-gold); transform: translateY(-1px); }
.btn-outline {
  display: inline-block; border: 1.5px solid rgba(201,168,76,0.5);
  color: var(--light-gold); padding: 13px 32px; font-size: 10.5px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; font-family: 'Montserrat', sans-serif; transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--deeper-navy);
  border-top: 1px solid var(--border);
  padding: 48px 60px 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px;
  padding-bottom: 36px; border-bottom: 1px solid var(--border);
}
.footer-logo { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.footer-logo .ori { color: var(--gold); }
.footer-logo .verge { color: var(--white); }
.footer-chinese { font-size: 12px; color: var(--gold); letter-spacing: 6px; margin-bottom: 16px; }
.footer-tagline { font-size: 11px; color: var(--text-muted); line-height: 1.8; }
.footer-col-title {
  font-size: 9px; font-weight: 700; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 11.5px; color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.2s; letter-spacing: 0.5px;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-row { display: flex; gap: 10px; margin-bottom: 9px; align-items: flex-start; }
.footer-contact-label { font-size: 9px; font-weight: 700; color: var(--gold); letter-spacing: 2px; min-width: 14px; padding-top: 1px; }
.footer-contact-val { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-bottom {
  max-width: 1100px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.25); letter-spacing: 0.5px; }
.footer-disclaimer-link { font-size: 10px; color: rgba(201,168,76,0.4); text-decoration: none; letter-spacing: 1px; }
.footer-disclaimer-link:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .page-hero { padding: 0 24px 40px; }
  .section-inner { padding: 60px 24px; }
  footer { padding: 40px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
