/*
Theme Name: Henry Blackwell
Theme URI: https://blackwell.trust
Author: Henry Blackwell
Author URI: https://blackwell.trust
Description: Premium wealth education landing page theme. Dark + gold aesthetic, built for the Smart Wealth Bundle and high-conversion product pages.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: henry-blackwell
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ========================================
   BRAND TOKENS — Henry Blackwell
   ======================================== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5EDD6;
  --black: #0D0D0D;
  --charcoal: #1A1A1A;
  --dark: #242424;
  --mid: #3D3D3D;
  --white: #FAFAF8;
  --light: #F0EDE8;
  --muted: #7A7A7A;
  --green: #2E6B4F;
  --red: #8B2020;

  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--light);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 20px;
}

p { margin: 0 0 16px; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  background: var(--black);
  border-bottom: 1px solid var(--mid);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.site-brand span { color: var(--gold); }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
.site-nav a {
  color: var(--light);
  font-size: 14px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.site-nav a:hover { color: var(--gold); }

/* ========================================
   GOLD RULE — recurring divider
   ======================================== */
.gold-rule {
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  margin: 0 auto 32px;
}
.gold-rule.left { margin-left: 0; margin-right: auto; }

/* ========================================
   MONO LABEL — section tags
   ======================================== */
.mono-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}

/* ========================================
   GOLD CTA BUTTON
   ======================================== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black) !important;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 20px 44px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black) !important;
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold) !important;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  transition: all 0.2s ease;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black) !important;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
  padding: 96px 0;
  position: relative;
}
section.bg-charcoal { background: var(--charcoal); }
section.bg-dark { background: var(--dark); }

.section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 16px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: 120px 0 100px;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(201,168,76,0.08), transparent 60%),
    var(--black);
}
.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 .gold { color: var(--gold); font-style: italic; }
.hero p.lead {
  font-size: 19px;
  color: var(--light);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.hero .price-tag {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--muted);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero .price-tag .price {
  color: var(--gold);
  font-size: 36px;
  font-weight: 700;
  margin-left: 8px;
}
.hero .price-tag .strike {
  text-decoration: line-through;
  color: var(--muted);
  margin-right: 8px;
}

/* ========================================
   SOUND LIKE YOU - pain points
   ======================================== */
.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pain-list li {
  padding: 18px 0 18px 36px;
  border-bottom: 1px solid var(--mid);
  position: relative;
  font-size: 17px;
  color: var(--light);
}
.pain-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 700;
}

.closing-line {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  max-width: 720px;
  margin: 40px auto 0;
  line-height: 1.5;
}

/* ========================================
   BUNDLE GRID — 4 products
   ======================================== */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.product-card {
  background: var(--dark);
  padding: 36px 32px;
  border-top: 3px solid var(--gold);
  transition: transform 0.25s ease, background 0.25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  background: #2a2a2a;
}
.product-card .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.product-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--white);
}
.product-card p {
  color: var(--light);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   WHO IS THIS FOR
   ======================================== */
.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
  margin: 0 auto;
}
.who-list li {
  padding: 20px 0 20px 44px;
  position: relative;
  font-size: 17px;
  border-bottom: 1px solid var(--mid);
}
.who-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}

/* ========================================
   HENRY BIO
   ======================================== */
.bio {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.bio .avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--mid);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.bio h2 { font-size: 36px; margin-bottom: 8px; }
.bio .subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.bio p {
  font-size: 17px;
  color: var(--light);
  line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--charcoal);
  padding: 32px;
  border-left: 3px solid var(--gold);
}
.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--light);
  margin-bottom: 16px;
}
.testimonial .author {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

/* ========================================
   VALUE STACK
   ======================================== */
.stack {
  max-width: 640px;
  margin: 0 auto;
  background: var(--dark);
  padding: 40px;
  border: 1px solid var(--mid);
}
.stack .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--mid);
}
.stack .row:last-of-type { border-bottom: none; }
.stack .row .name { color: var(--light); font-size: 16px; }
.stack .row .price {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 16px;
}
.stack .total {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 16px;
  border-top: 2px solid var(--gold);
}
.stack .total .name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
}
.stack .total .price {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 28px;
  font-weight: 700;
}
.stack-cta {
  text-align: center;
  margin-top: 40px;
}
.stack-cta .today {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 24px;
}
.stack-cta .today .price {
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* ========================================
   GUARANTEE
   ======================================== */
.guarantee {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.guarantee .badge {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.guarantee p {
  font-size: 17px;
  color: var(--light);
  line-height: 1.7;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--mid);
  padding: 24px 0;
}
.faq summary {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  outline: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -4px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 16px;
  color: var(--light);
  font-size: 16px;
  line-height: 1.7;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  text-align: center;
  padding: 120px 0;
  background:
    radial-gradient(ellipse at center, rgba(201,168,76,0.06), transparent 70%),
    var(--black);
}
.final-cta h2 {
  font-size: 48px;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--charcoal);
  padding: 48px 0 32px;
  border-top: 1px solid var(--mid);
  text-align: center;
}
.site-footer .signature {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.site-footer .handle {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 2px;
  margin-bottom: 32px;
}
.site-footer .copyright {
  font-size: 13px;
  color: var(--muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .hero { padding: 80px 0 70px; }
  .hero h1 { font-size: 36px; }
  .hero p.lead { font-size: 16px; }
  section { padding: 70px 0; }
  .section-title { font-size: 30px; }
  .final-cta h2 { font-size: 32px; }
  .bundle-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .stack { padding: 24px; }
  .stack .total .price { font-size: 22px; }
  .btn-gold { padding: 16px 28px; font-size: 14px; }
}

/* ========================================
   WORDPRESS REQUIRED CLASSES
   ======================================== */
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
  width: 1px; word-wrap: normal !important;
}
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 14px; color: var(--muted); text-align: center; }
