:root {
    --bg-page: #faf6ec;
    --bg-card: #ffffff;
    --navy: #1a3a5c;
    --navy-dark: #10263f;
    --gold: #b8862e;
    --gold-light: #e8c987;
    --text-main: #232323;
    --text-muted: #565656;
    --border: #e3dcc9;
    --radius-lg: 14px;
    --radius-md: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-size: 19px;
    line-height: 1.75;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    color: var(--navy-dark);
}

a { color: var(--navy); }

/* --- NAVIGATION --- */
header {
    background: var(--navy-dark);
    padding: 1.1rem 1.5rem;
    border-bottom: 4px solid var(--gold);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-badge {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--navy-dark);
    font-size: 1.3rem;
}

.logo-text {
    font-size: 1.4rem;
    color: #fff;
}

.logo-text span { color: var(--gold-light); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #f0ead9;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
    text-decoration: underline;
}

/* --- HERO (HOME) --- */
.hero-section {
    padding: 4rem 1.5rem 3.5rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: var(--navy);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.hero-section h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.hero-section h1 span { color: var(--gold); }

.hero-section > p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 2rem auto;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 800;
    font-size: 1.15rem;
    padding: 1rem 2.25rem;
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
}

.btn-primary:hover { background: var(--gold-light); }

/* --- WARNING SIGN TEASER GRID --- */
.content-section {
    padding: 3.5rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 3px solid var(--border);
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 2.75rem auto;
}

.section-header h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); font-size: 1.15rem; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-muted); font-size: 1.05rem; }

/* --- OPT-IN CARD --- */
.optin-section {
    padding: 0 1.5rem 4rem 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.optin-card {
    background: var(--navy-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    border-top: 6px solid var(--gold);
}

.optin-card h2 { color: #fff; font-size: 1.7rem; margin-bottom: 0.75rem; }
.optin-card > p { color: #d9d2bd; font-size: 1.1rem; margin-bottom: 1.75rem; }

.sendy-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
    font-size: 0.95rem;
    color: #d9d2bd;
    font-weight: 700;
}

.sendy-form input[type="email"],
.sendy-form input[type="text"] {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    background: #fff;
    color: var(--text-main);
}

.btn-submit {
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    margin-top: 0.4rem;
}

.btn-submit:hover { background: var(--gold-light); }

.privacy-note {
    font-size: 0.9rem;
    color: #bdb494;
    margin-top: 1.1rem;
    text-align: center;
}

/* --- FOOTER --- */
footer {
    border-top: 4px solid var(--gold);
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: #f0ead9;
    background: var(--navy-dark);
    font-size: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    margin-bottom: 1.25rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a { color: #f0ead9; text-decoration: none; font-weight: 600; }
.footer-links a:hover, .footer-links a.active { color: var(--gold-light); text-decoration: underline; }

/* --- INNER PAGE HERO --- */
.page-hero {
    padding: 3.5rem 1.5rem 2.5rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { color: var(--text-muted); font-size: 1.2rem; }

/* --- WARNING SIGNS PAGE --- */
.warning-list {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.warning-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-left: 8px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.warning-card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.warning-card p { color: var(--text-muted); font-size: 1.08rem; margin-bottom: 0.6rem; }
.warning-card .warning-tip { color: var(--navy); font-weight: 700; }

/* --- COURSE PAGE --- */
.course-overview {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1.5rem 2.5rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.15rem;
}

.course-modules {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.course-module {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.module-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.course-module h4 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.course-module p { color: var(--text-muted); font-size: 1.02rem; }

.course-cta {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem 1.5rem;
    text-align: center;
}

.course-price-card {
    background: var(--navy-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border-top: 6px solid var(--gold);
}

.course-price-card h2 { color: #fff; margin-bottom: 0.75rem; }
.course-price-card .price { font-size: 2rem; color: var(--gold-light); font-weight: 800; margin: 1rem 0; }
.course-price-card p { color: #d9d2bd; margin-bottom: 1rem; }

/* --- ABOUT / LEGAL PAGES --- */
.prose-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem 1.5rem;
}

.prose-content h2 { font-size: 1.5rem; margin: 2.25rem 0 0.85rem 0; }
.prose-content h2:first-child { margin-top: 0; }
.prose-content p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem; }

.disclaimer-note, .builder-note {
    max-width: 780px;
    margin: 0 auto 2.5rem auto;
    padding: 1.25rem 1.5rem;
    text-align: left;
    background: #fff6e0;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    color: #5c4a1c;
    font-size: 1rem;
}

.last-updated { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.75rem; }

/* --- CONTACT PAGE --- */
.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem 1.5rem;
}

.contact-wrapper .optin-card { text-align: left; }
.contact-wrapper .optin-card h2 { text-align: center; }

.contact-methods {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.contact-method-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.contact-method-card h4 { margin-bottom: 0.4rem; }
.contact-method-card p { color: var(--text-muted); }

/* --- RESPONSIVE --- */
@media (max-width: 800px) {
    .nav-links { gap: 1rem; justify-content: center; width: 100%; }
    body { font-size: 18px; }
}
