/* =========================================
   ASCENITY — Premium Transformation Coaching
   Warm Black Gold — Malaysia Seniors & Women
   ========================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E2C47A;
  --gold-dark: #A6862F;
  --black: #0C0C0C;
  --black-warm: #141210;
  --card-bg: #181614;
  --card-border: #2A2620;
  --cream: #F5F0E8;
  --cream-soft: #FAF7F2;
  --white: #FFFFFF;
  --text-body: rgba(255,255,255,0.78);
  --text-muted: rgba(255,255,255,0.42);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', system-ui, sans-serif;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-gold.large { font-size: 15px; padding: 20px 52px; }
.btn-gold.full { display: block; text-align: center; width: 100%; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== SECTION LABELS ===== */
.section-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.center { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title.center { text-align: center; }

.section-sub { font-size: 17px; color: var(--text-body); margin-bottom: 56px; line-height: 1.7; }
.section-sub.center { text-align: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 46px; width: auto; object-fit: contain; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-body); text-decoration: none; font-size: 14px; letter-spacing: 0.5px; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 9px 22px;
  font-weight: 700;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover { background: var(--gold); color: #000; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

.mobile-menu {
  display: none;
  list-style: none;
  background: var(--black-warm);
  border-top: 1px solid var(--card-border);
  padding: 16px 28px 28px;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu a { display: block; color: var(--text-body); text-decoration: none; font-size: 16px; padding: 12px 0; border-bottom: 1px solid var(--card-border); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 28px;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 680px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--card-border);
  padding-top: 40px;
  max-width: 560px;
}
.trust-item { display: flex; flex-direction: column; gap: 5px; padding: 0 40px 0 0; }
.trust-item:first-child { padding-left: 0; }
.trust-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-label { font-size: 12px; letter-spacing: 1px; color: var(--text-muted); text-transform: uppercase; }
.trust-divider { width: 1px; height: 50px; background: var(--card-border); margin: 0 40px; flex-shrink: 0; }

/* ===== WHO IS THIS FOR ===== */
.for-you {
  padding: 100px 0;
  background: var(--cream-soft);
  border-top: 1px solid #e8e2d8;
}
.for-you .section-label { color: var(--gold-dark); }
.for-you .section-title { color: #1a1410; }
.for-you .section-sub { color: #5a5248; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  background: #fff;
  border: 1px solid #e8e2d8;
  border-radius: 8px;
  padding: 40px 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.audience-card:hover { box-shadow: 0 12px 40px rgba(201,168,76,0.12); transform: translateY(-4px); }
.featured-card {
  background: var(--black-warm);
  border-color: var(--gold);
  color: var(--white);
}
.audience-icon {
  color: var(--gold);
  font-size: 10px;
  margin-bottom: 18px;
}
.audience-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #1a1410;
  margin-bottom: 14px;
  line-height: 1.3;
}
.featured-card h3 { color: var(--white); }
.audience-card p { font-size: 15px; color: #5a5248; line-height: 1.75; margin-bottom: 20px; }
.featured-card p { color: var(--text-body); }
.audience-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.audience-card ul li {
  font-size: 14px;
  color: #5a5248;
  padding-left: 18px;
  position: relative;
}
.audience-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.featured-card ul li { color: var(--text-body); }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid var(--card-border);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-role { font-size: 15px; color: var(--gold); letter-spacing: 0.5px; margin-bottom: 24px; }
.about-desc { color: var(--text-body); font-size: 16px; line-height: 1.85; margin-bottom: 16px; }
.about-desc strong { color: var(--white); }
.about-promise {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-body);
}
.promise-icon { color: var(--gold); font-size: 16px; flex-shrink: 0; margin-top: 2px; }

.cred-list { display: flex; flex-direction: column; gap: 24px; }
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.cred-icon { color: var(--gold); font-size: 8px; flex-shrink: 0; margin-top: 6px; }
.cred-title { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cred-body { display: block; font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.spec-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 20px;
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ===== PROOF ===== */
.proof {
  padding: 100px 0;
  background: var(--black-warm);
  border-top: 1px solid var(--card-border);
}
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.proof-desc { color: var(--text-body); font-size: 16px; line-height: 1.85; margin-bottom: 16px; }
.proof-desc:last-of-type { margin-bottom: 36px; }
.proof-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius); }
.proof-img { width: 100%; height: auto; display: block; }
.proof-label-box { position: absolute; bottom: 0; right: 0; background: var(--gold); padding: 10px 20px; }
.proof-label-text { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #000; }

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 0;
  background: var(--cream-soft);
  border-top: 1px solid #e8e2d8;
}
.how .section-label { color: var(--gold-dark); }
.how .section-title { color: #1a1410; }
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
}
.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step h3 { font-family: var(--font-serif); font-size: 22px; color: #1a1410; margin-bottom: 12px; }
.step p { font-size: 15px; color: #5a5248; line-height: 1.75; }
.step-arrow {
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 24px;
  opacity: 0.5;
}

/* ===== PACKAGES ===== */
.packages {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid var(--card-border);
}
.packages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 28px; }

.pkg-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pkg-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
.pkg-featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, #1a1500 0%, var(--card-bg) 55%);
}
.pkg-popular {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 4px 4px;
}
.pkg-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.pkg-title { font-family: var(--font-serif); font-size: 24px; margin-bottom: 20px; line-height: 1.2; }
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 20px;
  margin-bottom: 8px;
}
.price-rm { font-size: 18px; font-weight: 700; color: var(--gold); }
.price-num { font-family: var(--font-serif); font-size: 44px; font-weight: 700; color: var(--gold); line-height: 1; }
.price-per { font-size: 14px; color: var(--text-muted); margin-left: 4px; }
.price-note { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.pkg-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 11px; }
.pkg-features li { font-size: 15px; color: var(--text-body); padding-left: 20px; position: relative; }
.pkg-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 13px; }
.pkg-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--cream-soft);
  border-top: 1px solid #e8e2d8;
}
.testimonials .section-label { color: var(--gold-dark); }
.testimonials .section-title { color: #1a1410; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }

.testi-card {
  background: #fff;
  border: 1px solid #e8e2d8;
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.testi-card:hover { box-shadow: 0 8px 32px rgba(201,168,76,0.1); transform: translateY(-3px); }
.testi-featured {
  background: var(--black-warm);
  border-color: var(--gold);
  color: var(--white);
}
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.testi-quote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: #3a3228;
  line-height: 1.8;
  flex: 1;
}
.testi-featured .testi-quote { color: var(--text-body); }
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #e8e2d8;
  padding-top: 20px;
}
.testi-featured .testi-author { border-color: var(--card-border); }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { display: block; font-size: 15px; font-weight: 700; color: #1a1410; }
.testi-featured .testi-name { color: var(--white); }
.testi-role { display: block; font-size: 12px; color: #8a7d6e; margin-top: 2px; }
.testi-featured .testi-role { color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--black-warm);
  border-top: 1px solid var(--card-border);
}
.contact-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 64px 56px;
}
.contact-desc {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 40px;
}
.contact-desc strong { color: var(--white); }
.contact-sub {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0;
  background: var(--black);
  border-top: 1px solid var(--card-border);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-logo { height: 50px; width: auto; opacity: 0.75; }
.footer-tag { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.18); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .proof-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .packages-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 40px 28px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 44px; }
  .hero-trust { flex-wrap: wrap; gap: 24px; }
  .trust-divider { display: none; }
  .trust-item { padding: 0; }
  .btn-gold.large { padding: 18px 36px; font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-outline { text-align: center; }
}
