/*
Theme Name: Honest Wealth
Theme URI: https://honestwealth.ca/
Author: OpenAI
Author URI: https://openai.com/
Description: Custom WordPress theme for Honest Wealth with a premium dark financial-services homepage.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: honest-wealth
*/

:root {
  --bg: #0a0a0a;
  --panel: #121212;
  --panel-2: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.1);
  --text: #ffffff;
  --muted: #b4b4b8;
  --gold: #e3b84c;
  --gold-soft: rgba(227, 184, 76, 0.12);
  --gold-border: rgba(227, 184, 76, 0.28);
  --max: 1240px;
  --radius: 28px;
  --shadow: 0 30px 60px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10,10,10,0.88);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand-title { font-size: 1.25rem; font-weight: 700; letter-spacing: .02em; }
.brand-tag { color: var(--muted); font-size: .8rem; }

.main-nav { display: flex; gap: 24px; align-items: center; }
.main-nav a { color: #d4d4d8; font-size: .95rem; }
.main-nav a:hover { color: #fff; }

.btn, button, input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 18px;
  padding: 14px 22px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s ease;
}
.btn:hover, button:hover, input[type="submit"]:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: #111;
  box-shadow: 0 16px 35px rgba(227,184,76,.22);
}
.btn-secondary {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.btn-whatsapp {
  background: var(--gold-soft);
  border-color: var(--gold-border);
  color: #f8df94;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before,
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(227,184,76,0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.07), transparent 28%);
  pointer-events: none;
}
.hero-inner,
.grid-2,
.grid-4,
.benefits-grid,
.services-grid,
.faq-grid,
.contact-grid {
  position: relative;
  z-index: 1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold-border);
  background: var(--gold-soft);
  color: #f3da95;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .9rem;
}

.hero h1, .section-title {
  margin: 18px 0 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.hero h1 { font-size: clamp(2.8rem, 7vw, 4.8rem); max-width: 740px; }
.text-gold { color: var(--gold); }
.lead { font-size: 1.08rem; color: #d4d4d8; max-width: 740px; margin-top: 22px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.points-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 760px;
}
.point-card,
.service-card,
.step-card,
.faq-card,
.info-card,
.contact-form,
.signature-card,
.strategy-box,
.benefit-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.point-card { padding: 16px 18px; color: #e4e4e7; font-size: .95rem; }
.signature-wrap { padding-left: 28px; }
.signature-card {
  padding: 26px;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.05);
}
.signature-card .inner {
  padding: 30px;
  border-radius: 24px;
  background: #0f0f10;
  border: 1px solid var(--border);
}
.signature-list { display: grid; gap: 12px; margin-top: 22px; }
.signature-list-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 16px; border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: #ebebec;
}
.check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid var(--gold-border);
  display: inline-flex; align-items: center; justify-content: center; color: var(--gold); font-size: .85rem;
  flex-shrink: 0;
}

.section { padding: 78px 0; }
.section-muted { background: rgba(255,255,255,.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header { max-width: 720px; margin-bottom: 34px; }
.section-kicker {
  color: var(--gold); text-transform: uppercase; letter-spacing: .25em; font-size: .82rem; font-weight: 600;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); }
.section-copy { color: var(--muted); margin-top: 12px; }

.services-grid,
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.service-card,
.step-card,
.benefit-card { padding: 26px; }
.service-icon {
  width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 18px; border: 1px solid var(--gold-border); background: var(--gold-soft); color: var(--gold);
  font-size: 1.5rem;
}
.card-title { margin: 16px 0 8px; font-size: 1.3rem; }
.card-copy { color: var(--muted); font-size: .96rem; }

.grid-2,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 30px;
}
.strategy-content p,
.about-copy p { color: #d4d4d8; }
.strategy-box,
.info-card { padding: 28px; }
.note-box {
  margin-top: 16px;
  padding: 20px 22px;
  border-radius: 22px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  color: #ececed;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.benefit-card { color: #e4e4e7; font-size: .96rem; }
.step-number { color: var(--gold); font-size: 2rem; font-weight: 700; }

.faq-card { padding: 24px; }
.faq-card h3 { margin: 0; font-size: 1.1rem; }
.faq-card p { color: var(--muted); margin: 10px 0 0; }

.cta-section {
  position: relative;
  padding: 84px 0;
}
.cta-box {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  border: 1px solid var(--gold-border);
  background: radial-gradient(circle at top, rgba(227,184,76,.14), transparent 45%), rgba(255,255,255,.04);
  padding: 42px;
  box-shadow: var(--shadow);
}
.contact-grid { align-items: start; }
.contact-list { display: grid; gap: 16px; margin-top: 28px; color: #e4e4e7; }
.contact-line { display: flex; gap: 12px; align-items: center; }
.contact-icon {
  width: 22px; text-align: center; color: var(--gold);
}
.contact-form { padding: 26px; background: rgba(10,10,10,.82); }
.form-grid { display: grid; gap: 14px; }
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
  color: #fff;
  font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #8f8f95; }
input:focus, select:focus, textarea:focus { outline: none; border-color: rgba(227,184,76,.4); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 34px;
  color: #9f9fa5;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: #fff; }

.mobile-nav-toggle { display: none; }
.mobile-nav { display: none; }

@media (max-width: 1100px) {
  .hero-inner, .faq-grid, .contact-grid, .grid-2 { grid-template-columns: 1fr; }
  .services-grid, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .signature-wrap { padding-left: 0; }
}

@media (max-width: 780px) {
  .main-nav { display: none; }
  .mobile-nav-toggle {
    display: inline-flex;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px;
  }
  .mobile-nav { display: none; padding: 0 0 16px; }
  .mobile-nav.open { display: grid; gap: 10px; }
  .mobile-nav a {
    padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid var(--border); color: #e4e4e7;
  }
  .points-grid, .benefits-grid, .services-grid, .grid-4 { grid-template-columns: 1fr; }
  .cta-box { padding: 28px; }
  .header-inner { flex-wrap: wrap; }
}
