/* ═══════════════════════════════════════════════════════════
   Worthy Woman Financial Concepts — design system v0
   Direction locked 2026-05-05: Option 3 (Warm & Approachable)
   Palette: peach / navy / cream / sage
   Type:    Pinyon Script (logo), Lora (headings), Inter (body)
   ═══════════════════════════════════════════════════════════ */

:root {
    /* PALETTE */
    --peach:        #E8956A;   /* primary accent */
    --peach-soft:   #F4C9A8;   /* hover/surface */
    --peach-deep:   #C97350;   /* hover-active, links */
    --navy:         #1B2845;   /* headings, depth */
    --navy-deep:    #0F1A2E;   /* hero ink, dark sections */
    --navy-soft:    #3A4A6E;   /* secondary text */
    --cream:        #FAF5EC;   /* primary background */
    --cream-warm:   #F4ECDB;   /* surface, alt sections */
    --sage:         #9DAA92;   /* secondary accent */
    --sage-soft:    #C4CCBA;   /* surface accent */
    --ink:          #2A2A2A;   /* body text */
    --ink-muted:    #6E6E6E;   /* meta text */
    --border:       #E8E0D2;   /* divider */
    --border-soft:  rgba(27, 40, 69, 0.08);
    --shadow-soft:  0 4px 24px rgba(27, 40, 69, 0.06);
    --shadow-hover: 0 8px 32px rgba(27, 40, 69, 0.10);

    /* TYPE SCALE */
    --t-hero:       clamp(2.5rem, 5.5vw, 4.25rem);
    --t-h1:         clamp(2rem, 3.5vw, 2.75rem);
    --t-h2:         clamp(1.5rem, 2.5vw, 2rem);
    --t-h3:         1.25rem;
    --t-body:       1.0625rem;
    --t-small:      0.95rem;
    --t-meta:       0.78rem;

    /* SPACING */
    --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 1rem;
    --space-4: 1.5rem; --space-5: 2.5rem; --space-6: 4rem; --space-7: 6rem;

    /* LAYOUT */
    --max-content: 1100px;
    --max-prose:   680px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: var(--t-body);
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* TYPOGRAPHY ═══════════════════════════ */
h1, h2, h3, h4, h5 {
    font-family: 'Lora', Georgia, serif;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
}
h1 { font-size: var(--t-h1); margin-bottom: var(--space-4); }
h2 { font-size: var(--t-h2); margin-bottom: var(--space-3); }
h3 { font-size: var(--t-h3); margin-bottom: var(--space-2); }

a { color: var(--peach-deep); text-decoration: underline; text-underline-offset: 3px; transition: color 0.15s; }
a:hover { color: var(--peach); }

p { margin-bottom: var(--space-3); max-width: var(--max-prose); }

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: var(--t-meta);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--peach-deep);
    margin-bottom: var(--space-3);
    display: inline-block;
}
.script {
    font-family: 'Pinyon Script', cursive;
    font-weight: 400;
}

/* LAYOUT PRIMITIVES ════════════════════ */
.container { max-width: var(--max-content); margin: 0 auto; padding: 0 var(--space-4); }
.prose { max-width: var(--max-prose); }
.center-text { text-align: center; }
.center-text p { margin-left: auto; margin-right: auto; }

/* NAV ══════════════════════════════════ */
nav.site-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250, 245, 236, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: var(--space-3) 0;
}
nav.site-nav .container { display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); }
nav.site-nav .brand {
    font-family: 'Pinyon Script', cursive;
    font-size: 2rem;
    color: var(--navy);
    text-decoration: none;
    line-height: 1;
    padding-top: 0.15em;
    transition: color 0.15s;
}
nav.site-nav .brand:hover { color: var(--peach-deep); }
nav.site-nav .brand .heart { color: var(--peach); margin-left: 0.2em; font-size: 0.85em; }
nav.site-nav .links { display: flex; gap: var(--space-4); align-items: center; }
nav.site-nav .links a:not(.btn) {
    color: var(--navy);
    text-decoration: none;
    font-size: var(--t-small);
    font-weight: 500;
    padding: 0.4em 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s, color 0.15s;
}
nav.site-nav .links a:not(.btn):hover { color: var(--peach-deep); border-bottom-color: var(--peach); }
nav.site-nav .links a.current { color: var(--peach-deep); border-bottom-color: var(--peach); }

/* BUTTONS ══════════════════════════════ */
.btn {
    display: inline-block;
    padding: 0.85em 1.5em;
    font-family: 'Inter', sans-serif;
    font-size: var(--t-small);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.1s, box-shadow 0.15s;
}
.btn-primary { background: var(--peach); color: var(--navy); }
.btn-primary:hover { background: var(--peach-deep); color: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-secondary { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--peach-deep); padding: 0.4em 0.6em; border-radius: 0; }
.btn-ghost:hover { color: var(--peach); }
.btn-ghost::after { content: ' →'; }

/* HERO ═════════════════════════════════ */
.hero {
    padding: var(--space-7) 0 var(--space-6);
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
    position: relative;
}
.hero h1 {
    font-size: var(--t-hero);
    font-weight: 500;
    color: var(--navy-deep);
    line-height: 1.08;
    max-width: 18ch;
    margin-bottom: var(--space-4);
}
.hero h1 em { font-family: 'Pinyon Script', cursive; font-style: normal; color: var(--peach-deep); font-weight: 400; padding: 0 0.05em; }
.hero p.lead {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--navy-soft);
    max-width: 38ch;
    margin-bottom: var(--space-4);
}
.hero .cta-row { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-4); }

/* SECTIONS ═════════════════════════════ */
section { padding: var(--space-6) 0; }
section.alt { background: var(--cream-warm); }
section.deep { background: var(--navy-deep); color: var(--cream); }
section.deep h1, section.deep h2, section.deep h3 { color: var(--cream); }
section.deep .eyebrow { color: var(--peach); }
section.deep p { color: rgba(250, 245, 236, 0.85); }

/* PILLARS ══════════════════════════════ */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-5);
}
.pillar {
    padding: var(--space-4);
    background: var(--cream-warm);
    border-left: 3px solid var(--peach);
    border-radius: 0 8px 8px 0;
    transition: transform 0.15s, box-shadow 0.15s;
}
.pillar:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.pillar h3 { font-family: 'Lora', serif; color: var(--navy); margin-bottom: var(--space-2); font-size: 1.15rem; }
.pillar p { font-size: var(--t-small); color: var(--ink-muted); margin: 0; }

/* CARDS ════════════════════════════════ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-4);
}
.card {
    background: var(--cream);
    padding: var(--space-4);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.card:hover { border-color: var(--peach); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.card .card-eyebrow { font-size: var(--t-meta); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--peach-deep); margin-bottom: var(--space-2); }
.card h3 { color: var(--navy); margin-bottom: var(--space-2); font-size: 1.2rem; }
.card p { color: var(--ink-muted); font-size: var(--t-small); margin: 0; }

/* FLAGSHIP STRIP (First Steps spotlight) ═ */
.flagship {
    background: var(--navy-deep);
    color: var(--cream);
    padding: var(--space-6) 0;
    position: relative;
    overflow: hidden;
}
.flagship::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(232, 149, 106, 0.12) 0%, transparent 50%);
    pointer-events: none;
}
.flagship .container { position: relative; }
.flagship h2 { color: var(--cream); max-width: 22ch; }
.flagship p.lead { color: rgba(250, 245, 236, 0.85); font-size: 1.15rem; max-width: 56ch; }
.flagship .eyebrow { color: var(--peach); }

/* FORMS ════════════════════════════════ */
form { display: grid; gap: var(--space-3); max-width: var(--max-prose); }
input, textarea, select {
    font-family: inherit;
    font-size: var(--t-small);
    padding: 0.85em 1em;
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: 4px;
    color: var(--ink);
    width: 100%;
    transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--peach); box-shadow: 0 0 0 3px rgba(232, 149, 106, 0.18); }
textarea { resize: vertical; min-height: 120px; }
label {
    display: block;
    font-size: var(--t-meta);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy-soft);
    margin-bottom: var(--space-2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* PROSE BLOCKS ═════════════════════════ */
.prose-block { max-width: var(--max-prose); }
.prose-block p { font-size: 1.0625rem; line-height: 1.7; margin-bottom: var(--space-3); }
.prose-block h2, .prose-block h3 { margin-top: var(--space-5); }
.prose-block ul, .prose-block ol { padding-left: var(--space-4); margin-bottom: var(--space-3); }
.prose-block li { margin-bottom: var(--space-2); line-height: 1.6; }
.prose-block blockquote {
    border-left: 3px solid var(--peach);
    padding-left: var(--space-4);
    font-style: italic;
    color: var(--navy-soft);
    margin: var(--space-4) 0;
    font-size: 1.15rem;
    line-height: 1.5;
}

/* CREDENTIAL BAR ══════════════════════ */
.credential-bar {
    padding: var(--space-3) 0;
    background: var(--cream-warm);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
    font-family: 'Lora', serif;
    font-size: var(--t-small);
    color: var(--navy-soft);
    font-style: italic;
}
.credential-bar strong { color: var(--navy); font-style: normal; font-weight: 600; }

/* TIMELINE / MONTH-BY-MONTH ═══════════ */
.timeline-list { display: grid; gap: var(--space-3); margin-top: var(--space-4); list-style: none; padding: 0; }
.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 6px;
    align-items: start;
}
.timeline-month {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--peach-deep);
    background: var(--cream-warm);
    padding: 0.3em 0.7em;
    border-radius: 4px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    min-width: 7ch;
    text-align: center;
}
.timeline-body h4 { font-family: 'Lora', serif; color: var(--navy); margin-bottom: var(--space-1); font-size: 1.05rem; }
.timeline-body p { font-size: var(--t-small); color: var(--ink-muted); margin: 0; line-height: 1.5; }

/* FOOTER ═══════════════════════════════ */
footer.site-footer {
    background: var(--navy-deep);
    color: var(--cream);
    padding: var(--space-6) 0 var(--space-5);
    margin-top: var(--space-7);
}
footer.site-footer .container { display: grid; grid-template-columns: 2fr repeat(2, 1fr); gap: var(--space-5); }
@media (max-width: 720px) { footer.site-footer .container { grid-template-columns: 1fr; } }
footer.site-footer h4 { color: var(--peach); font-family: 'Inter', sans-serif; font-size: var(--t-meta); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: var(--space-3); }
footer.site-footer a { color: var(--cream); opacity: 0.85; text-decoration: none; display: block; margin-bottom: var(--space-2); font-size: var(--t-small); }
footer.site-footer a:hover { opacity: 1; color: var(--peach); }
footer.site-footer p { color: rgba(250, 245, 236, 0.7); font-size: var(--t-small); margin: 0; }
footer.site-footer .meta { font-size: var(--t-meta); opacity: 0.55; margin-top: var(--space-4); border-top: 1px solid rgba(250, 245, 236, 0.1); padding-top: var(--space-3); grid-column: 1 / -1; text-align: center; letter-spacing: 0.05em; }

/* RESPONSIVE ═══════════════════════════ */
@media (max-width: 720px) {
    nav.site-nav .links { gap: var(--space-3); }
    nav.site-nav .links a:not(.btn) { display: none; }
    .hero { padding: var(--space-6) 0 var(--space-5); }
    .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
    section { padding: var(--space-5) 0; }
}

/* HERO DECORATIVE ACCENT ═══════════════ */
.hero { position: relative; overflow: hidden; }
.hero::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -140px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, var(--peach-soft) 0%, transparent 65%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* PILLAR ICONS ═════════════════════════ */
.pillar-icon {
    width: 38px;
    height: 38px;
    color: var(--peach-deep);
    margin-bottom: var(--space-3);
    display: block;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* THOUGHT OF THE WEEK ═════════════════ */
.thought-of-week {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
    padding: var(--space-7) 0 !important;
    text-align: center;
}
.thought-of-week .eyebrow { margin-bottom: var(--space-4); }
.thought-of-week .thought-quote {
    position: relative;
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--navy);
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    line-height: 1.5;
    max-width: 760px;
    margin: var(--space-4) auto 0;
    padding: 0 var(--space-5);
    border: none;
}
.thought-of-week .thought-quote::before {
    content: '"';
    position: absolute;
    top: -3.5rem;
    left: -0.5rem;
    font-family: 'Lora', serif;
    font-size: 7rem;
    color: var(--peach);
    line-height: 1;
    opacity: 0.55;
    font-style: normal;
}
.thought-of-week .thought-attrib {
    display: block;
    margin-top: var(--space-4);
    font-style: normal;
    font-size: 0.9rem;
    color: var(--ink-muted);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* INSTAGRAM ICON + PREVIEW ═══════════════════ */
.ig-icon {
    width: 20px;
    height: 20px;
    vertical-align: -4px;
    margin-right: 0.5em;
    color: currentColor;
}
.ig-icon-hero {
    width: 56px;
    height: 56px;
    color: var(--peach-deep);
    display: block;
    margin: 0 auto var(--space-3);
}
.ig-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 600px;
    margin: var(--space-4) auto var(--space-5);
}
.ig-tile {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    padding: var(--space-3);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--navy);
    font-family: 'Lora', serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}
.ig-tile.peach { background: linear-gradient(135deg, var(--peach-soft) 0%, var(--peach) 100%); color: var(--navy); }
.ig-tile.sage  { background: linear-gradient(135deg, var(--sage-soft) 0%, var(--sage) 100%); color: var(--cream); }
.ig-tile.cream { background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%); color: var(--navy); }
.ig-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(255,255,255,0.25), transparent 50%);
    pointer-events: none;
}

/* 18 TO 80 — DECADE ARC ═══════════════ */
.eighteen-to-eighty .container { position: relative; }
.decade-arc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: var(--space-5) auto var(--space-3);
    padding: var(--space-4) 0;
    max-width: 560px;
    position: relative;
}
.decade-arc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--peach-soft) 0%, var(--peach) 50%, var(--peach-soft) 100%);
    z-index: 0;
    transform: translateY(-50%);
}
.decade-arc span {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: var(--peach-deep);
    font-size: 1.15rem;
    background: var(--cream-warm);
    padding: 0.35em 0.65em;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    min-width: 2.5ch;
    text-align: center;
}
.eighteen-to-eighty .arc-caption {
    text-align: center;
    margin: 0 auto;
    font-style: italic;
    color: var(--ink-muted);
    max-width: 56ch;
}

/* PORTRAIT (placeholder + future real photo) ═══ */
.portrait-wrap {
    float: right;
    width: 220px;
    margin: 0 0 var(--space-3) var(--space-4);
}
.portrait-placeholder {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--peach-soft) 0%, var(--cream-warm) 55%, var(--sage-soft) 100%);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border-soft);
}
.portrait-placeholder .ph-script {
    font-family: 'Pinyon Script', cursive;
    font-size: 5rem;
    line-height: 1;
    color: var(--peach-deep);
    margin-bottom: var(--space-2);
}
.portrait-placeholder .ph-meta {
    font-family: 'Inter', sans-serif;
    font-size: var(--t-meta);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy-soft);
}
@media (max-width: 600px) {
    .portrait-wrap { float: none; width: 200px; margin: 0 auto var(--space-4); display: block; }
}

/* ACCESSIBILITY ════════════════════════ */
:focus-visible { outline: 3px solid var(--peach); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
