@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   ASHTEN ELLISON — Design System
   Colors: Green #2C5F2E | Gold #D4A534 | Cream #F8F6EC
           Tan #EDE5C8 | White #FFFFFF
   ============================================================ */

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

:root {
  --green:        #2C5F2E;
  --green-dark:   #1E4020;
  --green-mid:    #4A7C59;
  --green-light:  #7DAA6B;
  --gold:         #D4A534;
  --gold-dark:    #B88B2A;
  --gold-pale:    #F5E8BB;
  --cream:        #F8F6EC;
  --tan:          #EDE5C8;
  --tan-mid:      #D8CC9E;
  --white:        #FFFFFF;
  --text-dark:    #1A2D1B;
  --text-mid:     #3D5C3E;
  --text-light:   #6B876C;
  --shadow-sm:    0 2px 8px rgba(44,95,46,0.10);
  --shadow-md:    0 4px 20px rgba(44,95,46,0.14);
  --shadow-lg:    0 8px 40px rgba(44,95,46,0.18);
  --radius:       8px;
  --radius-lg:    14px;
  --transition:   0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--green-dark);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-mid); }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   AFFILIATE BANNER
   ============================================================ */
.affiliate-banner {
  background: var(--green);
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 8px 24px;
  font-size: 0.82rem;
  font-weight: 500;
}
.affiliate-banner a { color: var(--gold); font-weight: 700; text-decoration: underline; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--tan);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--text-mid);
  font-size: 0.87rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-links a:hover { color: var(--green); background: rgba(44,95,46,0.06); }
.nav-links .nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--green-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--green-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, #3E7A40 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 24px 88px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(212,165,52,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 85% 15%, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding: 5px 14px;
  border: 1px solid rgba(212,165,52,0.45);
  border-radius: 20px;
  font-family: 'Poppins', sans-serif;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  margin: 0 auto 30px;
  border-radius: 2px;
}
.hero-tags {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px;
  margin-bottom: 36px;
}
.hero-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
  font-size: 0.83rem; font-weight: 500;
  padding: 6px 14px; border-radius: 20px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 26px; border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.03em; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(44,95,46,0.30); }
.btn-gold { background: var(--gold); color: var(--green-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.50); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 0.84rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-cream { background: var(--cream); }
.section-tan { background: #F2EDD8; }
.section-green { background: var(--green); }
.section-dark { background: var(--green-dark); }

.section-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); display: block; margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}
.section-title { margin-bottom: 12px; }
.section-sub { font-size: 1.03rem; color: var(--text-light); max-width: 560px; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.divider-line { width: 44px; height: 4px; background: linear-gradient(90deg, var(--green), var(--gold)); margin: 14px 0 0; border-radius: 2px; }
.section-header.center .divider-line { margin: 14px auto 0; }

/* ============================================================
   CARDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,200,160,0.5);
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img-placeholder {
  height: 190px;
  background: linear-gradient(135deg, var(--tan) 0%, var(--tan-mid) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.card-body { padding: 22px; }
.card-tag {
  display: inline-block; font-size: 0.71rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); background: rgba(44,95,46,0.09);
  padding: 4px 10px; border-radius: 12px; margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { font-size: 0.91rem; margin-bottom: 14px; color: var(--text-light); }
.card-link { font-size: 0.84rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 5px; }
.card-link::after { content: '→'; transition: transform var(--transition); }
.card-link:hover::after { transform: translateX(4px); }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,200,160,0.5);
  border-top: 4px solid var(--green);
  transition: all var(--transition);
}
.feature-card:nth-child(2) { border-top-color: var(--gold); }
.feature-card:nth-child(3) { border-top-color: var(--green-light); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 18px; }

/* ============================================================
   PRODUCT / AFFILIATE CARDS
   ============================================================ */
.gear-section-title {
  font-size: 1.4rem; color: var(--green-dark); margin-bottom: 22px;
  padding-bottom: 12px; border-bottom: 2px solid var(--tan);
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif;
}
.gear-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; margin-bottom: 52px; }

.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--tan);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-img {
  height: 150px;
  background: linear-gradient(135deg, var(--cream), var(--tan));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; flex-shrink: 0;
}
.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--text-dark); margin-bottom: 6px; }
.product-desc { font-size: 0.81rem; color: var(--text-light); flex: 1; margin-bottom: 12px; line-height: 1.5; }
.amazon-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: #FF9900; color: #111; font-size: 0.81rem; font-weight: 700;
  padding: 9px; border-radius: var(--radius); text-decoration: none;
  transition: background var(--transition);
}
.amazon-btn:hover { background: #E68900; color: #111; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 26px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--tan); box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-header {
  padding: 32px 26px 22px;
  background: linear-gradient(135deg, var(--cream), #EDE8D0);
  position: relative;
}
.blog-card-header::after {
  content: ''; position: absolute; bottom: 0; left: 26px;
  width: 38px; height: 3px; background: var(--green); border-radius: 2px;
}
.post-category {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
  display: block; font-family: 'Poppins', sans-serif;
}
.blog-card h3 { font-size: 1.22rem; color: var(--green-dark); line-height: 1.3; }
.blog-card-body { padding: 22px 26px; }
.blog-card-body p { font-size: 0.91rem; color: var(--text-light); margin-bottom: 16px; }
.blog-meta { font-size: 0.77rem; color: var(--text-light); display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }

/* Blog post content */
.post-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 80px 24px 68px; text-align: center;
}
.post-hero h1 { color: var(--white); max-width: 820px; margin: 0 auto 14px; }
.post-hero .post-meta { color: rgba(255,255,255,0.65); font-size: 0.87rem; }

.post-content { max-width: 740px; margin: 0 auto; padding: 60px 24px; }
.post-content h2 { font-size: 1.65rem; margin: 38px 0 12px; color: var(--green-dark); }
.post-content h3 { font-size: 1.3rem; margin: 30px 0 10px; color: var(--green); }
.post-content p { font-size: 1rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 18px; }
.post-content ul, .post-content ol { padding-left: 22px; margin-bottom: 18px; }
.post-content li { margin-bottom: 10px; font-size: 1rem; color: var(--text-mid); line-height: 1.7; }
.post-content strong { color: var(--text-dark); }
.post-content a { color: var(--green); font-weight: 500; }

.post-highlight {
  background: rgba(44,95,46,0.07);
  border-left: 4px solid var(--green);
  padding: 18px 22px; margin: 26px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-highlight p { margin: 0; font-style: italic; color: var(--text-mid); }

.post-affiliate-box {
  background: #FFFBEE; border: 1px solid rgba(212,165,52,0.35);
  border-radius: var(--radius-lg); padding: 20px 22px; margin: 28px 0;
}
.post-affiliate-box h4 { font-size: 0.93rem; color: var(--green-dark); margin-bottom: 10px; }
.post-affiliate-box ul { padding-left: 18px; }
.post-affiliate-box li { font-size: 0.91rem; color: var(--text-mid); margin-bottom: 6px; }
.post-affiliate-box li a { font-weight: 600; color: var(--green); }

/* ============================================================
   EMAIL SIGNUP
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(212,165,52,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-section h2 { color: var(--white); margin-bottom: 10px; }
.newsletter-section p { color: rgba(255,255,255,0.75); max-width: 460px; margin: 0 auto 28px; }

.email-form { display: flex; max-width: 460px; margin: 0 auto; gap: 10px; }
.email-form input[type="email"] {
  flex: 1; padding: 13px 18px; border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12); color: var(--white);
  font-size: 0.93rem; outline: none; transition: border-color var(--transition);
  font-family: 'Inter', sans-serif;
}
.email-form input::placeholder { color: rgba(255,255,255,0.52); }
.email-form input:focus { border-color: var(--gold); }
.email-form button {
  padding: 13px 22px; background: var(--gold); color: var(--green-dark);
  border: none; border-radius: 30px; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  font-family: 'Poppins', sans-serif; white-space: nowrap;
}
.email-form button:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }
.form-note { font-size: 0.77rem; color: rgba(255,255,255,0.45); margin-top: 10px; }
.form-success { color: var(--gold); font-weight: 600; margin-top: 12px; display: none; font-family: 'Poppins', sans-serif; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-image-placeholder {
  aspect-ratio: 4/5; background: linear-gradient(160deg, var(--tan) 0%, #C8B870 100%);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.about-image-placeholder::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 38%;
  background: linear-gradient(to top, rgba(30,64,32,0.28), transparent);
}
.about-text h2 { margin-bottom: 16px; }
.stats-row { display: flex; gap: 28px; margin-top: 26px; padding-top: 22px; border-top: 2px solid var(--tan); }
.stat-item { text-align: center; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--green); display: block; }
.stat-label { font-size: 0.76rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.04em; }

/* ============================================================
   RESOURCE CARDS
   ============================================================ */
.resource-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 26px; border: 1px solid var(--tan); box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.resource-icon { font-size: 1.9rem; margin-bottom: 10px; display: block; }
.resource-card h4 { color: var(--green-dark); margin-bottom: 7px; }
.resource-card p { font-size: 0.87rem; color: var(--text-light); margin: 0; }

/* ============================================================
   DISCLAIMER PAGE
   ============================================================ */
.disclaimer-content { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.disclaimer-content h2 { font-size: 1.45rem; margin: 34px 0 12px; color: var(--green-dark); }
.disclaimer-content p { font-size: 0.96rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 14px; }
.disclaimer-content ul { padding-left: 22px; margin-bottom: 16px; }
.disclaimer-content li { font-size: 0.96rem; color: var(--text-mid); margin-bottom: 8px; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.70); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand .logo-text { color: var(--white); font-size: 1.25rem; }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; margin-top: 12px; color: rgba(255,255,255,0.52); }

.footer-col h5 {
  font-family: 'Poppins', sans-serif; font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.58); font-size: 0.87rem; text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10); padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.79rem; color: rgba(255,255,255,0.38); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.52); font-size: 0.79rem; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; background: rgba(255,255,255,0.10); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.88rem;
  color: rgba(255,255,255,0.70); text-decoration: none; transition: all var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--green-dark); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--text-light); }
.fw-700 { font-weight: 700; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.badge { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Poppins', sans-serif; }
.badge-green { background: rgba(44,95,46,0.10); color: var(--green); }
.badge-gold { background: rgba(212,165,52,0.14); color: #8A6212; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .about-image-placeholder { max-height: 280px; }
}
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--tan); padding: 12px 20px 20px; gap: 2px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 12px; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 68px 20px 58px; }
  .email-form { flex-direction: column; }
  .email-form input, .email-form button { border-radius: 10px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
