/* ========================================================================
   CD — Career & Personal Brand Consultant
   Theme: Deep black + luxe gold (Art-Deco business-card aesthetic)
   ======================================================================== */

:root {
  --black:        #0a0a0a;
  --black-soft:   #111111;
  --panel:        rgba(20, 19, 16, 0.72);
  --panel-solid:  #15140f;
  --gold:         #d4af37;
  --gold-bright:  #f1d27a;
  --gold-deep:    #b8860b;
  --gold-soft:    #cbb26a;
  --cream:        #f4eedd;
  --text:         #e9e4d6;
  --text-dim:     #b6ad97;
  --line:         rgba(212, 175, 55, 0.28);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1140px;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}

/* WebGL shader canvas sits behind everything */
#shader-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
/* Dark veil over shader so text stays readable */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(10,10,10,0.35), rgba(8,8,8,0.9) 70%),
    linear-gradient(180deg, rgba(8,8,8,0.6), rgba(8,8,8,0.92));
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Reusable gold accents ---------- */
.section-eyebrow {
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.section-eyebrow i { margin-right: 0.4rem; }

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1.05;
}
.section-sub { color: var(--text-dim); margin-top: 0.5rem; }

.section { padding: 88px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 56px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
  color: #1a1405;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(212, 175, 55, 0.42); }
.btn-ghost {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(212,175,55,0.08); border-color: var(--gold); }
.btn-block { width: 100%; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-mark { display: flex; flex-direction: column; line-height: 1.05; }
.brand-cd {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.25s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--gold-bright); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--line);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  color: var(--gold-bright);
}
.nav-cta:hover { background: rgba(212,175,55,0.1); }
.nav-toggle { display: none; background: none; border: none; color: var(--gold-bright); font-size: 1.4rem; cursor: pointer; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 880px;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(160deg, rgba(18,17,13,0.92), rgba(10,10,10,0.92));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
/* Art-deco gold corner rays */
.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  background:
    linear-gradient(135deg, transparent 46%, var(--gold) 47%, var(--gold) 49%, transparent 50%),
    linear-gradient(115deg, transparent 56%, var(--gold-deep) 57%, var(--gold-deep) 58.5%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-card::before { left: -10px; bottom: -10px; }
.hero-card::after { right: -10px; bottom: -10px; transform: scaleX(-1); }

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: "—"; color: var(--gold); margin: 0 0.6rem; }
.hero-mantra {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold-bright);
  margin-bottom: 1.6rem;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.02;
  color: #fff;
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-pillars {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin: 0 auto 2rem;
  flex-wrap: wrap;
}
.hero-pillars li { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.pillar-icon { font-size: 1.7rem; color: var(--gold-bright); }
.pillar-name { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold-soft); }
.pillar-divider { width: 1px; height: 46px; background: var(--line); }

.hero-strap {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero-footnote {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

/* ===================== INTRO ===================== */
.intro { text-align: center; padding-top: 40px; }
.intro-lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--cream);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===================== SERVICES ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--panel);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }
.service-card:hover::after { opacity: 1; }
.service-card-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.4rem; }
.service-emoji { font-size: 1.8rem; }
.service-card-head h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1.15;
}
.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.9rem;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  font-size: 0.96rem;
  color: var(--text);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "\f00c"; /* fa-check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute; left: 0; top: 0.55rem;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text p { color: var(--text-dim); margin-bottom: 1.1rem; }
.about-text strong { color: var(--cream); }
.about-text .section-title { margin-bottom: 1.4rem; }
.about-whether { color: var(--text) !important; font-weight: 500; }
.diamond-list { list-style: none; margin: 0.4rem 0 1.4rem; }
.diamond-list li {
  position: relative; padding-left: 1.7rem; margin-bottom: 0.7rem; color: var(--text);
}
.diamond-list li::before {
  content: "\f3a5"; /* gem */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 0.15rem; color: var(--gold); font-size: 0.75rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 18px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat-num .plus { font-size: 1.5rem; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-intro p { color: var(--text-dim); }
.contact-intro .section-title { margin: 0.4rem 0 1rem; }
.contact-details { list-style: none; margin-top: 2rem; }
.contact-details li { margin-bottom: 1rem; }
.contact-details a { display: inline-flex; align-items: center; gap: 0.9rem; color: var(--text); font-weight: 500; transition: color 0.2s ease; }
.contact-details a:hover { color: var(--gold-bright); }
.ci {
  width: 44px; height: 44px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  background: rgba(212,175,55,0.06);
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  backdrop-filter: blur(6px);
}
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #756d5a; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.field select option, .field select optgroup { background: var(--panel-solid); color: var(--text); }
.field textarea { resize: vertical; }
.form-status { margin-top: 0.9rem; font-size: 0.9rem; min-height: 1.2em; }
.form-status.ok { color: var(--gold-bright); }
.form-status.err { color: #e6a4a4; }
.form-fallback { margin-top: 1rem; font-size: 0.85rem; color: var(--text-dim); }
.form-fallback a { color: var(--gold-bright); }

/* ===================== FOOTER ===================== */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(6,6,6,0.85);
  padding: 50px 0 26px;
  margin-top: 40px;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 30px;
  justify-content: space-between; align-items: center;
}
.footer-brand .brand-cd { font-size: 2rem; }
.footer-brand p { color: var(--text-dim); font-size: 0.9rem; }
.footer-mantra { letter-spacing: 0.3em; font-size: 0.72rem !important; color: var(--gold-soft) !important; margin-top: 0.3rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact a { color: var(--text); transition: color 0.2s ease; }
.footer-contact a:hover { color: var(--gold-bright); }
.footer-contact i { color: var(--gold); margin-right: 0.5rem; }
.footer-copy {
  text-align: center; color: var(--text-dim); font-size: 0.78rem;
  letter-spacing: 0.08em; margin-top: 32px; padding-top: 22px;
  border-top: 1px solid rgba(212,175,55,0.12);
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; right: 24px; left: 24px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,10,10,0.97);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    transform-origin: top;
    transform: scaleY(0); opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-links.open { transform: scaleY(1); opacity: 1; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.8rem 0.6rem; }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 0.4rem; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-pillars { gap: 0.9rem; }
}
