:root {
  --cream: #FAF7F2;
  --warm-white: #FFFEF9;
  --sage: #7A9E7E;
  --sage-light: #C8DCC9;
  --sage-dark: #4A7150;
  --terracotta: #C17F5E;
  --terracotta-light: #EDD5C5;
  --charcoal: #2C2C2C;
  --mid-grey: #6B6B6B;
  --light-grey: #E8E3DC;
  --gold: #B8965A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(44,44,44,0.08);
  --shadow-hover: 0 8px 40px rgba(44,44,44,0.14);
  --transition: all 0.25s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; }
body { font-family: var(--font-body); background: var(--warm-white) !important; color: var(--charcoal) !important; line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
@media (prefers-color-scheme: dark) { html, body { background: var(--warm-white) !important; color: var(--charcoal) !important; } }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.2rem,5vw,3.8rem); }
h2 { font-size: clamp(1.6rem,3vw,2.6rem); }
h3 { font-size: clamp(1.1rem,2vw,1.5rem); }
em { font-style: italic; color: var(--sage-dark); }
a { text-decoration: none; color: inherit; }
p { color: var(--mid-grey); line-height: 1.75; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--sage-dark); color: white; padding: 14px 32px; border-radius: 50px; font-size: 0.95rem; font-weight: 500; transition: var(--transition); }
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,113,80,0.3); }
.btn-ghost { display: inline-block; color: var(--charcoal); padding: 14px 32px; border-radius: 50px; font-size: 0.95rem; border: 1.5px solid var(--light-grey); transition: var(--transition); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage-dark); }
.btn-outline { display: inline-block; color: var(--sage-dark); padding: 12px 28px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; border: 1.5px solid var(--sage-dark); transition: var(--transition); }
.btn-outline:hover { background: var(--sage-dark); color: white; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,254,249,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--light-grey); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-size: 1.4rem; color: var(--charcoal); }
.logo-mark { color: var(--gold); }
.logo em { color: var(--sage-dark); font-style: italic; }
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.875rem; color: var(--mid-grey); transition: var(--transition); }
.nav-links a:hover { color: var(--charcoal); }
.nav-cta { background: var(--sage-dark) !important; color: white !important; padding: 8px 20px; border-radius: 50px; font-weight: 500 !important; }
.nav-cta:hover { background: var(--sage) !important; }
.hamburger { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--charcoal); padding: 4px 8px; }
.mobile-menu { display: none; flex-direction: column; background: var(--warm-white); border-top: 1px solid var(--light-grey); }
.mobile-menu a { padding: 14px 24px; font-size: 1rem; color: var(--charcoal); border-bottom: 1px solid var(--light-grey); display: block; }
.mobile-menu.open { display: flex; }

/* HERO */
.hero { position: relative; padding: 80px 24px 60px; max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; overflow: hidden; }
.hero-blob { position: absolute; top: -80px; right: -60px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%); opacity: 0.4; pointer-events: none; }
.hero-content { position: relative; }
.hero-label { display: inline-block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 20px; padding: 6px 14px; background: var(--sage-light); border-radius: 50px; }
.hero h1 { margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-sub { font-size: 1.05rem; color: var(--mid-grey); max-width: 460px; margin-bottom: 36px; line-height: 1.85; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hero-card { background: white; border: 1px solid var(--light-grey); border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: center; gap: 14px; font-size: 0.95rem; font-weight: 500; box-shadow: var(--shadow); transition: var(--transition); }
.hero-card:hover { transform: translateX(8px); border-color: var(--sage-light); box-shadow: var(--shadow-hover); }
.card-icon { font-size: 1.5rem; }

/* AD SLOTS */
.ad-slot { display: flex; justify-content: center; align-items: center; margin: 16px auto; background: var(--cream); border: 1px dashed #D8D3CC; border-radius: 4px; }
.ad-leaderboard { max-width: 750px; height: 96px; }
.ad-rect { max-width: 380px; height: 260px; }
.ad-label { font-size: 0.65rem; color: #CCC; letter-spacing: 0.12em; text-transform: uppercase; }

/* TRUST BAR */
.trust-bar { background: var(--sage-dark); padding: 40px 24px; margin: 40px 0 0; }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 56px; flex-wrap: wrap; }
.trust-item { text-align: center; color: white; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--sage-light); }
.trust-item span { font-size: 0.82rem; opacity: 0.75; max-width: 150px; display: block; margin: 4px auto 0; }
.trust-div { width: 1px; height: 48px; background: rgba(255,255,255,0.18); }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; font-size: 0.73rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 12px; }
.section-sub { color: var(--mid-grey); font-size: 0.9rem; margin-top: 10px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* TOPICS */
.topics { padding: 80px 0; background: var(--cream); }
.topics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.topic-card { background: white; border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--light-grey); transition: var(--transition); display: flex; flex-direction: column; gap: 10px; }
.topic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--sage-light); }
.topic-card.featured { background: var(--sage-dark); border-color: var(--sage-dark); }
.topic-card.featured h3, .topic-card.featured p { color: white; }
.topic-card.featured p { opacity: 0.8; }
.topic-card.featured .topic-link { color: white; }
.topic-card.tools { background: var(--terracotta-light); border-color: transparent; }
.topic-icon { font-size: 1.9rem; margin-bottom: 4px; }
.topic-card h3 { font-size: 1.15rem; font-family: var(--font-display); font-weight: 600; }
.topic-card p { font-size: 0.875rem; flex: 1; }
.topic-link { font-size: 0.82rem; font-weight: 500; color: var(--sage-dark); margin-top: 8px; display: block; }

/* GUIDES */
.guides-section { padding: 80px 0; }
.guides-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 40px; }
.guide-card { background: white; border-radius: var(--radius); padding: 28px; border: 1px solid var(--light-grey); transition: var(--transition); display: flex; flex-direction: column; gap: 10px; }
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--sage-light); }
.guide-meta { display: flex; justify-content: space-between; align-items: center; }
.guide-tag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-dark); background: var(--sage-light); padding: 3px 10px; border-radius: 50px; }
.guide-read { font-size: 0.78rem; color: var(--mid-grey); }
.guide-card h3 { font-size: 1.05rem; }
.guide-card p { font-size: 0.875rem; }
.guides-cta { text-align: center; }

/* TOOLS */
.tools-promo { padding: 80px 0; background: var(--cream); }
.tools-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tool-card { background: white; border-radius: var(--radius); padding: 28px; border: 1px solid var(--light-grey); display: flex; flex-direction: column; gap: 12px; transition: var(--transition); }
.tool-card:hover { box-shadow: var(--shadow-hover); }
.tool-header { display: flex; align-items: flex-start; gap: 14px; }
.tool-icon { font-size: 1.7rem; }
.tool-header h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.tool-badge { display: inline-block; font-size: 0.68rem; font-weight: 500; background: var(--terracotta-light); color: var(--terracotta); padding: 2px 8px; border-radius: 50px; }
.tool-card p { font-size: 0.86rem; flex: 1; }
.tool-btn { display: block; text-align: center; background: var(--charcoal); color: white; padding: 12px 20px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; transition: var(--transition); margin-top: auto; }
.tool-btn:hover { background: var(--sage-dark); }

/* WHY */
.why-section { padding: 88px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-content { display: flex; flex-direction: column; gap: 16px; }
.why-values { display: flex; flex-direction: column; gap: 26px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.value-item h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.value-item p { font-size: 0.875rem; }

/* NEWSLETTER */
.newsletter { background: var(--sage-dark); padding: 64px 24px; }
.newsletter-inner { max-width: 700px; margin: 0 auto; display: flex; align-items: center; gap: 48px; flex-wrap: wrap; justify-content: center; }
.newsletter-text { color: white; }
.newsletter-text h3 { color: white; font-size: 1.7rem; margin-bottom: 8px; }
.newsletter-text p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 10px; flex: 1; min-width: 280px; }
.newsletter-form input { flex: 1; padding: 13px 18px; border-radius: 8px; border: none; font-family: var(--font-body); font-size: 0.9rem; outline: none; background: rgba(255,255,255,0.15); color: white; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button { background: var(--gold); color: white; border: none; padding: 13px 20px; border-radius: 8px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.newsletter-form button:hover { background: #9e7e3f; }

/* FOOTER */
.footer { background: var(--charcoal); color: white; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { color: white; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h5 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-legal a:hover { color: white; }

/* RESPONSIVE */
@media(max-width:900px){
  .hero { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px 48px; }
  .hero-blob { display: none; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .hero-card { flex: 1 1 calc(50% - 6px); min-width: 140px; }
  .topics-grid { grid-template-columns: repeat(2,1fr); }
  .guides-grid { grid-template-columns: repeat(2,1fr); }
  .tools-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-div { display: none; }
  .trust-items { gap: 28px; }
  .newsletter-inner { flex-direction: column; gap: 24px; text-align: center; }
  .newsletter-form { width: 100%; max-width: 420px; }
  .ad-leaderboard { max-width: 100%; height: 80px; margin: 12px 16px; }
}

@media(max-width:600px){
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { padding: 36px 16px 40px; gap: 28px; }
  .hero-label { font-size: 0.7rem; }
  .hero h1 { font-size: clamp(1.9rem,7vw,2.6rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 13px 24px; }
  .hero-cards { flex-direction: column; gap: 10px; }
  .hero-card { font-size: 0.9rem; padding: 16px 18px; }
  .topics { padding: 52px 0; }
  .topics-grid { grid-template-columns: 1fr; gap: 14px; }
  .topic-card { padding: 24px 20px; }
  .guides-section { padding: 52px 0; }
  .guides-grid { grid-template-columns: 1fr; gap: 14px; }
  .guide-card { padding: 22px 18px; }
  .tools-promo { padding: 52px 0; }
  .tools-grid { grid-template-columns: 1fr; gap: 14px; }
  .tool-card { padding: 22px 18px; }
  .why-section { padding: 52px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar { padding: 28px 16px; }
  .trust-items { gap: 20px; flex-direction: column; }
  .trust-item strong { font-size: 1.8rem; }
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
  .newsletter { padding: 44px 16px; }
  .newsletter-text h3 { font-size: 1.4rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
  .section-header { margin-bottom: 32px; }
  .ad-leaderboard { height: 60px; margin: 8px 12px; }
  .ad-rect { width: calc(100% - 32px); height: 200px; }
  .container { padding: 0 16px; }
}
