/* ============================================================
   HARVESTING ABUNDANCE — Brand Stylesheet
   Owner: The Gloria Washington Living Revocable Trust
   ============================================================ */

/* ---- CSS Variables (Brand Palette) ---- */
:root {
  --deep-forest: #1A3C2A;
  --forest: #2E5E3F;
  --harvest-gold: #C4943A;
  --amber: #8C6B2A;
  --cream: #FBF7EE;
  --wheat: #E8DCC8;
  --deep-berry: #6B2D3E;
  --soft-berry: #F5E6EA;
  --dark-text: #212121;
  --gray-text: #4A4A4A;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --font-primary: 'Georgia', 'Times New Roman', serif;
  --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
  --section-pad: 80px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-primary);
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--harvest-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--amber); }

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

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-primary); line-height: 1.3; }
h1 { font-size: 3rem; color: var(--deep-forest); margin-bottom: 0.5em; }
h2 { font-size: 2.2rem; color: var(--forest); margin-bottom: 0.4em; }
h3 { font-size: 1.5rem; color: var(--amber); margin-bottom: 0.3em; }
p { margin-bottom: 1em; color: var(--gray-text); }

/* ---- Navigation ---- */
.nav {
  background: var(--deep-forest);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--harvest-gold);
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--wheat);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--harvest-gold);
  border-bottom-color: var(--harvest-gold);
}
.nav-cta {
  background: var(--harvest-gold) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  border: none !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--amber) !important;
  color: var(--white) !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--wheat);
  margin: 5px 0; transition: 0.3s;
}

/* ---- Hero Section ---- */
.hero {
  background: linear-gradient(135deg, var(--deep-forest) 0%, var(--forest) 100%);
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(196,148,58,0.08) 0%, transparent 50%);
}
.hero h1 {
  color: var(--harvest-gold);
  font-size: 3.5rem;
  margin-bottom: 0.3em;
  position: relative;
}
.hero .subtitle {
  color: var(--wheat);
  font-size: 1.35rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
}
.hero .tagline {
  color: var(--cream);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 40px;
  position: relative;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--harvest-gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--amber);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196,148,58,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--harvest-gold);
  border: 2px solid var(--harvest-gold);
}
.btn-secondary:hover {
  background: var(--harvest-gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--deep-forest);
  color: var(--harvest-gold);
}
.btn-dark:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Sections ---- */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--deep-forest); color: var(--wheat); }
.section-dark h2 { color: var(--harvest-gold); }
.section-dark p { color: var(--wheat); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; }

/* ---- Gold Divider ---- */
.divider {
  width: 80px;
  height: 3px;
  background: var(--harvest-gold);
  margin: 0 auto 30px;
  border: none;
}

/* ---- Cards Grid ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 30px;
  border: 1px solid var(--wheat);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card h3 { color: var(--deep-forest); margin-bottom: 12px; }

/* ---- Module List ---- */
.module-list { list-style: none; counter-reset: module; }
.module-item {
  counter-increment: module;
  padding: 24px 30px;
  border-left: 3px solid var(--harvest-gold);
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 0 8px 8px 0;
  transition: transform 0.2s;
}
.module-item:hover { transform: translateX(4px); }
.module-item::before {
  content: "Module " counter(module);
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--harvest-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.module-item h4 { color: var(--deep-forest); font-size: 1.15rem; margin-bottom: 6px; }
.module-item p { color: var(--gray-text); font-size: 0.95rem; margin: 0; }

/* ---- Pricing Cards ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  border: 2px solid var(--wheat);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.price-card.featured {
  border-color: var(--harvest-gold);
  transform: scale(1.03);
}
.price-card.featured::before {
  content: 'Best Value';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--harvest-gold);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-card .tier-name {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--harvest-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.price-card .price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--deep-forest);
  margin-bottom: 4px;
}
.price-card .price-note {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 24px;
}
.price-card .price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}
.price-card .price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.95rem;
  color: var(--gray-text);
  position: relative;
  padding-left: 28px;
}
.price-card .price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}

/* ---- Testimonial / Quote ---- */
.quote-block {
  background: var(--cream);
  border-left: 4px solid var(--harvest-gold);
  padding: 30px 36px;
  border-radius: 0 12px 12px 0;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--deep-forest);
}

/* ---- About / Bio ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--wheat);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  color: var(--gray-text);
  font-size: 0.9rem;
}

/* ---- Footer ---- */
.footer {
  background: var(--deep-forest);
  padding: 60px 0 30px;
  color: var(--wheat);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--harvest-gold);
  margin-bottom: 12px;
}
.footer p { color: var(--wheat); font-size: 0.9rem; margin-bottom: 8px; }
.footer h4 {
  color: var(--harvest-gold);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--wheat); font-size: 0.9rem; }
.footer-links a:hover { color: var(--harvest-gold); }
.footer-bottom {
  border-top: 1px solid rgba(232,220,200,0.15);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(232,220,200,0.6); }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold { color: var(--harvest-gold); }
.text-forest { color: var(--forest); }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.gap-16 { gap: 16px; }
.flex-center { display: flex; align-items: center; justify-content: center; gap: 16px; }

/* ---- Email Signup ---- */
.signup-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
}
.signup-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--wheat);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-family: var(--font-ui);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input[type="email"]:focus { border-color: var(--harvest-gold); }
.signup-form button {
  padding: 14px 28px;
  border-radius: 0 8px 8px 0;
  background: var(--harvest-gold);
  color: var(--white);
  border: 2px solid var(--harvest-gold);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.signup-form button:hover { background: var(--amber); border-color: var(--amber); }

/* ---- Features Row ---- */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  padding: 40px 0;
}
.feature-item h4 {
  color: var(--deep-forest);
  font-size: 1rem;
  margin-top: 12px;
  margin-bottom: 8px;
}
.feature-item p { font-size: 0.9rem; }
.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .hero .subtitle { font-size: 1.1rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 50px 0; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--deep-forest);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .nav-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr; gap: 24px; }
  .signup-form { flex-direction: column; }
  .signup-form input[type="email"] { border-right: 2px solid var(--wheat); border-radius: 8px; }
  .signup-form button { border-radius: 8px; }
  .price-card.featured { transform: scale(1); }
  .card-grid { grid-template-columns: 1fr; }
}
