/* ========================================
   Creating Financial Confidence — Global Styles
   ======================================== */

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

:root {
    --bg: #FAF9F6;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --accent: #4A6741;
    --accent-light: #6B8F62;
    --accent-mid: #3D5636;
    --gold: #C4A35A;
    --gold-light: #D4B96A;
    --white: #FFFFFF;
    --border: #E8E6E1;
    --card-bg: #FFFFFF;
    --section-alt: #F4F3EF;
    --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Fraunces', 'Georgia', serif; font-weight: 600; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

/* --- Buttons --- */
.btn-primary {
    display: inline-block; background: var(--accent); color: var(--white);
    padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
    letter-spacing: 0.01em; transition: background 0.3s, transform 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-mid); transform: translateY(-1px); color: var(--white); }

.btn-secondary {
    display: inline-block; background: transparent; color: var(--accent);
    padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
    border: 2px solid var(--accent); transition: all 0.3s; cursor: pointer;
}
.btn-secondary:hover { background: var(--accent); color: var(--white); }

.btn-white {
    display: inline-block; background: var(--white); color: var(--accent);
    padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
    transition: background 0.3s, transform 0.2s; border: none; cursor: pointer;
}
.btn-white:hover { background: #f0f0ee; transform: translateY(-1px); }

.btn-gold {
    display: inline-block; background: var(--gold); color: var(--white);
    padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
    transition: background 0.3s, transform 0.2s; border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--white); }

/* --- Navigation --- */
nav {
    position: fixed; top: 0; width: 100%; background: rgba(250,249,246,0.97);
    backdrop-filter: blur(10px); z-index: 1000; border-bottom: 1px solid var(--border);
    height: var(--nav-height);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nav-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--text);
}
.nav-brand img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    color: var(--text); font-size: 0.9rem; font-weight: 500;
    transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
    background: var(--accent); color: var(--white) !important; padding: 10px 22px;
    border-radius: 6px; font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--accent-mid); }

/* Mobile menu */
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }
.mobile-menu {
    display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border); padding: 20px 32px;
    flex-direction: column; gap: 16px; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); font-size: 1rem; font-weight: 500; padding: 8px 0; }

/* --- Sections --- */
.section { padding: 80px 32px; max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--section-alt); }
.section-full { padding: 80px 32px; }
.section-label {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--accent); font-weight: 600; margin-bottom: 12px;
}
.section-title { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 16px; }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin-bottom: 48px; }

/* --- Cards --- */
.card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px;
    padding: 36px; transition: border-color 0.3s, transform 0.2s;
}
.card:hover { border-color: var(--accent-light); transform: translateY(-2px); }

/* --- Hero (home) --- */
.hero {
    min-height: 85vh; display: flex; align-items: center; padding-top: var(--nav-height);
    background: linear-gradient(135deg, var(--bg) 0%, #EDE9E0 100%);
}
.hero-inner {
    max-width: 1200px; margin: 0 auto; padding: 60px 32px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero p { color: var(--text-light); font-size: 1.15rem; margin: 24px 0 36px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
    border-radius: 16px; overflow: hidden; aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* --- Page Header (inner pages) --- */
.page-header {
    padding: 140px 32px 60px; text-align: center;
    background: linear-gradient(135deg, var(--bg) 0%, #EDE9E0 100%);
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { color: var(--text-light); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* --- Trust Bar --- */
.trust-bar {
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
    padding: 32px; border-bottom: 1px solid var(--border); background: var(--white);
}
.trust-item { text-align: center; }
.trust-item h4 { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--accent); margin-bottom: 4px; }
.trust-item p { font-size: 0.8rem; color: var(--text-light); }

/* --- Full-width Image Break --- */
.image-break {
    width: 100%; height: 360px; overflow: hidden; position: relative;
}
.image-break img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* --- CTA Banner --- */
.cta-banner {
    background: var(--accent); color: var(--white); text-align: center; padding: 72px 32px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }

/* --- Footer --- */
footer {
    background: var(--text); color: rgba(255,255,255,0.6); padding: 48px 32px; text-align: center;
    font-size: 0.85rem;
}
footer a { color: rgba(255,255,255,0.6); }
footer a:hover { color: var(--white); }
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-disclaimer { max-width: 600px; margin: 16px auto 0; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* --- Grid layouts --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* --- Blockquote --- */
blockquote {
    border-left: 3px solid var(--accent); padding: 16px 24px; margin: 24px 0;
    font-style: italic; color: var(--text-light); font-size: 1.1rem;
    font-family: 'Fraunces', serif;
}

/* --- Lists (content) --- */
.content-list { list-style: none; padding: 0; }
.content-list li {
    padding: 8px 0 8px 28px; position: relative; color: var(--text);
}
.content-list li::before {
    content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.content-list-x li::before { content: '✗'; color: #C0392B; }

/* --- Badge --- */
.badge {
    display: inline-block; padding: 4px 14px; border-radius: 20px;
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.badge-green { background: #E8F0E6; color: var(--accent); }
.badge-gold { background: #F5EFD8; color: #8B7332; }

/* --- Pricing --- */
.price-box {
    background: var(--accent); color: var(--white); border-radius: 12px;
    padding: 40px; text-align: center; margin: 32px 0;
}
.price-box .price { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 700; }
.price-box .price-note { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 8px; }
.price-box .price-original { text-decoration: line-through; color: rgba(255,255,255,0.5); font-size: 1.2rem; margin-bottom: 8px; }

/* --- About page two-col --- */
.about-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.about-photo { border-radius: 12px; overflow: hidden; }
.about-photo img { width: 100%; height: auto; object-fit: cover; }

/* --- Contact --- */
.contact-info { font-size: 1.05rem; }
.contact-info a { font-weight: 600; }

/* --- Resource Card --- */
.resource-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px;
    padding: 32px; transition: border-color 0.3s, transform 0.2s; display: flex; flex-direction: column;
}
.resource-card:hover { border-color: var(--accent-light); transform: translateY(-2px); }
.resource-card h3 { margin-bottom: 12px; }
.resource-card p { color: var(--text-light); flex: 1; margin-bottom: 16px; }
.dl-link { color: var(--accent); font-weight: 600; font-size: 0.9rem; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image { max-width: 400px; margin: 0 auto; aspect-ratio: 1/1; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .about-layout { grid-template-columns: 1fr; }
    .about-photo { max-width: 300px; }
    .trust-bar { gap: 24px; }
    .section { padding: 60px 20px; }
    .page-header { padding: 120px 20px 48px; }
}
