/* ESSENTFLOW™ Global Styles
   Brand System — Visual Brand Analysis Update

   PALETTE:
   #1C1008 — Espresso (primary background, depth & groundedness)
   #3B0066 — Deep Royal Purple (authority, headers, gradients, accent bars)
   #4E3822 — Deep Walnut (warm credibility, mid-tone backgrounds)
   #A15E49 — Terracotta Clay (human warmth, section labels, accents)
   #CA895F — Toasted Almond (primary highlight, warmth anchor)
   #FDF5E6 — Warm Linen (primary text on dark, light backgrounds)

   TYPOGRAPHY:
   Rozha One — Wordmark and major headers (32px+ only)
   Cormorant Garamond — Elegant authority, sub-headers, emotional content
   Raleway — Body copy, navigation, labels (small caps with letter-spacing)

   DESIGN PHILOSOPHY:
   - Calm authority, unhurried, earned intelligence
   - Generous negative space = breathing room
   - Never more than 3 palette colors per visual
   - Almond appears on every visual as warmth anchor
*/

:root {
    /* Primary Colors */
    --espresso: #1C1008;
    --royal-purple: #3B0066;
    --deep-walnut: #4E3822;
    --terracotta: #A15E49;
    --toasted-almond: #CA895F;
    --warm-linen: #FDF5E6;
    --linen-dark: #F0E6CC;

    /* Semantic mappings */
    --primary-dark: #1C1008;
    --primary-accent: #3B0066;
    --primary-warm: #A15E49;
    --primary-gold: #CA895F;
    --primary-cream: #FDF5E6;

    /* Text Colors */
    --text-dark: #1C1008;
    --text-medium: #4E3822;
    --text-light: rgba(253, 245, 230, 0.75);
    --text-muted: rgba(253, 245, 230, 0.5);

    /* Utility */
    --shadow-light: 0 2px 10px rgba(28, 16, 8, 0.08);
    --shadow-medium: 0 8px 30px rgba(28, 16, 8, 0.15);
    --shadow-hover: 0 12px 40px rgba(59, 0, 102, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.7;
    background-color: var(--warm-linen);
}

h1, h2, h3, h4, h5 {
    font-family: 'Rozha One', Georgia, serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--royal-purple);
}

/* Cormorant Garamond for elegant subheadings */
.elegant-text,
.by-shae,
.phase-subtitle,
.highlight-quote,
blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll on mobile */
html, body {
    overflow-x: hidden;
}

/* ==================== NAVIGATION ==================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--warm-linen);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(59, 0, 102, 0.08);
}

.nav-logo {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-links a:hover {
    color: var(--royal-purple);
}

.nav-links a.active {
    color: var(--royal-purple);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--royal-purple), var(--terracotta));
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--royal-purple);
}

/* ==================== BUTTONS ==================== */
/* STANDARDIZED BUTTONS - Uniform styling across all pages */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Primary Button - Purple with light text */
.btn-primary {
    background: #3B0066;
    color: #FDF5E6;
    border-color: #3B0066;
}

.btn-primary:hover {
    background: #4a0d7a;
    border-color: #4a0d7a;
    transform: translateY(-2px);
}

/* Secondary Button - Outline style */
.btn-secondary {
    background: transparent;
    color: #FDF5E6;
    border: 2px solid #FDF5E6;
}

.btn-secondary:hover {
    background: #FDF5E6;
    color: #1C1008;
}

/* For light backgrounds - secondary becomes purple outline */
.bg-cream .btn-secondary,
.bg-white .btn-secondary {
    color: #3B0066;
    border-color: #3B0066;
    background: transparent;
}

.bg-cream .btn-secondary:hover,
.bg-white .btn-secondary:hover {
    background: #3B0066;
    color: #FDF5E6;
}

/* Secondary buttons INSIDE cards need to be visible on dark card backgrounds */
.card .btn-secondary {
    color: #FDF5E6;
    border-color: #FDF5E6;
    background: transparent;
}

.card .btn-secondary:hover {
    background: #FDF5E6;
    color: #1C1008;
}

/* Pink/Terracotta Button */
.btn-pink {
    background: #A15E49;
    color: #FDF5E6;
    border-color: #A15E49;
}

.btn-pink:hover {
    background: #b86a55;
    border-color: #b86a55;
    transform: translateY(-2px);
}

/* Gold/Almond Button */
.btn-gold {
    background: #CA895F;
    color: #1C1008;
    border-color: #CA895F;
}

.btn-gold:hover {
    background: #d9a06d;
    border-color: #d9a06d;
    transform: translateY(-2px);
}

/* ==================== SECTIONS ==================== */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--toasted-almond);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--toasted-almond), transparent);
    max-width: 120px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--royal-purple);
    line-height: 1.1;
}

.section-title em {
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--toasted-almond);
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Background Variants */
.bg-white { background: white; }
.bg-cream { background: var(--warm-linen); }
.bg-dark {
    background: var(--espresso);
    color: var(--warm-linen);
}
.bg-purple {
    background: linear-gradient(160deg, #2a0845 0%, var(--espresso) 50%, #1a0d08 100%);
    color: var(--warm-linen);
    position: relative;
    overflow: hidden;
}
.bg-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 25% 30%, rgba(59,0,102,0.6) 0%, transparent 50%),
                radial-gradient(ellipse at 75% 70%, rgba(78,56,34,0.4) 0%, transparent 45%);
    pointer-events: none;
}
.bg-walnut {
    background: linear-gradient(150deg, var(--deep-walnut) 0%, var(--espresso) 100%);
    color: var(--warm-linen);
}
/* Teal section now uses dark authority style */
.bg-teal {
    background: linear-gradient(160deg, #2a0845 0%, var(--espresso) 55%, #1a0d08 100%);
    color: var(--warm-linen);
    position: relative;
    overflow: hidden;
}
.bg-teal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 40%, rgba(59,0,102,0.5) 0%, transparent 45%),
                radial-gradient(ellipse at 80% 60%, rgba(78,56,34,0.35) 0%, transparent 40%);
    pointer-events: none;
}
.bg-teal .section-title,
.bg-teal h2,
.bg-teal h3 {
    color: #FDF5E6; /* Solid warm-linen */
}
/* Pink light for newsletter - now warm with subtle gradient */
.bg-pink-light {
    background: linear-gradient(160deg, #2a0845 0%, var(--espresso) 60%, var(--deep-walnut) 100%);
    color: var(--warm-linen);
    position: relative;
    overflow: hidden;
}
.bg-pink-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(59,0,102,0.4) 0%, transparent 60%);
    pointer-events: none;
}
.bg-pink-light .section-title {
    color: var(--warm-linen);
}
.bg-pink-light .section-subtitle {
    color: #D4C4A8; /* Solid muted linen */
}

/* Dark background section subtitles - solid colors */
.bg-dark .section-subtitle,
.bg-purple .section-subtitle,
.bg-teal .section-subtitle,
.bg-walnut .section-subtitle {
    color: #D4C4A8; /* Solid muted linen */
}

/* SOLID COLORS for dark background headings */
.bg-dark .section-title,
.bg-dark h2,
.bg-dark h3,
.bg-purple .section-title,
.bg-purple h2,
.bg-purple h3,
.bg-walnut .section-title,
.bg-walnut h2,
.bg-walnut h3 {
    color: #FDF5E6; /* Solid warm-linen */
}

.bg-dark .section-title em,
.bg-purple .section-title em,
.bg-walnut .section-title em,
.bg-teal .section-title em,
.bg-pink-light .section-title em {
    color: var(--toasted-almond);
}

.bg-dark h2 em,
.bg-purple h2 em,
.bg-walnut h2 em,
.bg-teal h2 em {
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--toasted-almond);
}

/* SOLID COLORS for dark background text */
.bg-dark p,
.bg-purple p,
.bg-walnut p {
    color: #E8DBC8; /* Solid lighter color for readability */
}

.bg-teal p {
    color: #E8DBC8; /* Solid lighter color */
}

.bg-pink-light p {
    color: #E8DBC8; /* Solid lighter color */
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(160deg, #2a0845 0%, var(--espresso) 50%, #1a0d08 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 25% 30%, rgba(59,0,102,0.6) 0%, transparent 50%),
                radial-gradient(ellipse at 75% 70%, rgba(78,56,34,0.4) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 50%, rgba(42,8,69,0.3) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-symbol {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.hero-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--toasted-almond);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    color: var(--warm-linen);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.hero h1 em {
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--toasted-almond);
    display: block;
}

.hero h1 .highlight {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    color: var(--toasted-almond);
}

.hero h1 .highlight-pink {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    color: var(--toasted-almond);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    color: rgba(253, 245, 230, 0.6);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero on light pages */
.hero-light {
    background: var(--warm-linen);
}

.hero-light::before {
    display: none;
}

.hero-light h1 {
    color: var(--royal-purple);
}

.hero-light .hero-subtitle {
    color: var(--text-medium);
}

.hero-light .hero-tagline {
    color: var(--terracotta);
}

/* ==================== CARDS ==================== */
.card {
    background: linear-gradient(145deg, rgba(42,8,69,0.6) 0%, rgba(28,16,8,0.8) 100%);
    border: 1px solid rgba(59,0,102,0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(253,245,230,0.05);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(59,0,102,0.3) 0%, transparent 50%);
    pointer-events: none;
    border-radius: 16px;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(202,137,95,0.5), transparent);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(59,0,102,0.5);
    box-shadow: 0 8px 40px rgba(59,0,102,0.3), inset 0 1px 0 rgba(253,245,230,0.08);
}

/* SOLID COLORS - No gradients on text for readability */
.card h3 {
    color: #FDF5E6; /* Solid warm-linen */
}

.card h4 {
    color: #CA895F; /* Solid toasted-almond */
}

.card p {
    color: #FDF5E6; /* Bright warm-linen for body text */
}

/* Light background cards */
.bg-cream .card,
.bg-white .card {
    background: linear-gradient(145deg, rgba(42,8,69,0.85) 0%, rgba(28,16,8,0.95) 100%);
    border: 1px solid rgba(59,0,102,0.25);
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.bg-cream .card::before,
.bg-white .card::before {
    background: radial-gradient(ellipse at 30% 0%, rgba(59,0,102,0.4) 0%, transparent 50%);
}

.bg-cream .card:hover,
.bg-white .card:hover {
    box-shadow: 0 12px 50px rgba(59,0,102,0.25);
}

/* SOLID COLORS for light background cards */
.bg-cream .card h3,
.bg-white .card h3 {
    color: #FDF5E6; /* Solid warm-linen */
}

.bg-cream .card h4,
.bg-white .card h4 {
    color: #CA895F; /* Solid toasted-almond */
}

.bg-cream .card p,
.bg-white .card p {
    color: #FDF5E6; /* Bright warm-linen */
}

.card-pink-border::before {
    background: linear-gradient(90deg, var(--terracotta), var(--toasted-almond));
}

.card-teal-border::before {
    background: linear-gradient(90deg, var(--royal-purple), var(--royal-purple));
}

.card-gold-border::before {
    background: linear-gradient(90deg, var(--toasted-almond), var(--terracotta));
}

/* ==================== GRID LAYOUTS ==================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* ==================== PHASE CARDS (Method) ==================== */
.phase-card {
    text-align: left;
    padding: 2.5rem 2rem;
}

.phase-card .phase-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(253,245,230,0.5);
    margin-bottom: 1.5rem;
    display: block;
}

.phase-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1rem;
    display: none;
}

.phase-1 .phase-number {
    color: var(--terracotta);
}

.phase-2 .phase-number {
    color: var(--toasted-almond);
}

.phase-3 .phase-number {
    color: var(--royal-purple);
}

.bg-dark .phase-1 .phase-number,
.bg-purple .phase-1 .phase-number {
    color: var(--terracotta);
}

.bg-dark .phase-2 .phase-number,
.bg-purple .phase-2 .phase-number {
    color: var(--toasted-almond);
}

.bg-dark .phase-3 .phase-number,
.bg-purple .phase-3 .phase-number {
    color: rgba(253, 245, 230, 0.3);
}

/* SOLID COLORS for phase cards */
.phase-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #FDF5E6; /* Solid warm-linen */
}

.phase-card .phase-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #CA895F; /* Solid toasted-almond */
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    display: block;
}

.phase-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #E8DBC8; /* Solid lighter color for readability */
}

.phase-card .phase-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #D4C4A8; /* Solid muted linen */
    margin-bottom: 1.5rem;
    display: block;
}

/* Card bottom info styling */
.phase-card .card-meta {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(253,245,230,0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.phase-card .card-author {
    font-size: 0.75rem;
    color: rgba(253,245,230,0.5);
}

.phase-card .card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--toasted-almond);
}

/* ==================== ABOUT SECTION ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    object-fit: cover;
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--toasted-almond);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.6;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--warm-linen);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: rgba(253,245,230,0.75);
}

.highlight-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--warm-linen);
    border-left: 3px solid var(--toasted-almond);
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.4;
}

.bg-dark .highlight-quote,
.bg-purple .highlight-quote,
.bg-teal .highlight-quote {
    color: var(--warm-linen);
    border-left-color: var(--toasted-almond);
}

.bg-cream .highlight-quote,
.bg-white .highlight-quote {
    color: var(--espresso);
    border-left-color: var(--terracotta);
}

/* ==================== OFFERINGS/PRICING ==================== */
.offering-card {
    text-align: center;
    position: relative;
}

.offering-card.featured {
    border: 1px solid rgba(202,137,95,0.4);
}

.offering-card.featured::after {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--toasted-almond);
    color: var(--espresso);
    padding: 0.35rem 1.25rem;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
}

.offering-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* SOLID COLORS for offering cards */
.offering-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #FDF5E6; /* Solid warm-linen */
}

.offering-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #CA895F; /* Solid toasted-almond */
    margin-bottom: 0.5rem;
}

.offering-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #D4C4A8; /* Solid muted linen */
}

.offering-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #E8DBC8; /* Solid lighter color */
}

/* ==================== BLOG CARDS ==================== */
.blog-card {
    overflow: hidden;
    padding: 0;
}

.blog-card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(145deg, rgba(42,8,69,0.8) 0%, rgba(28,16,8,0.9) 100%);
}

.blog-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(59,0,102,0.5) 0%, transparent 60%);
}

.blog-card-image img {
    width: 50px;
    height: auto;
    object-fit: contain;
    opacity: 0.4;
    position: relative;
    z-index: 1;
}

.blog-card-content {
    padding: 1.5rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.bg-cream .blog-card-content,
.bg-white .blog-card-content {
    background: transparent;
}

/* SOLID COLORS for blog cards */
.blog-card-date {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D4C4A8; /* Solid muted linen */
    margin-bottom: 0.75rem;
}

.blog-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    color: #FDF5E6; /* Solid warm-linen */
}

.blog-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #E8DBC8; /* Solid lighter color */
}

.blog-card a.read-more {
    color: #CA895F; /* Solid toasted-almond */
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.blog-card a.read-more:hover {
    color: #FDF5E6; /* Solid warm-linen */
}

/* ==================== FIT SECTION ==================== */
/* SOLID COLORS for fit cards */
.fit-card {
    padding: 2rem;
}

.fit-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #FDF5E6; /* Solid warm-linen */
}

.fit-card.yes h3 { color: #FDF5E6; }
.fit-card.no h3 { color: #D4C4A8; }

.bg-cream .fit-card.yes h3 { color: #FDF5E6; }
.bg-cream .fit-card.no h3 { color: #D4C4A8; }

.fit-card ul {
    list-style: none;
}

.fit-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.9rem;
    color: #E8DBC8; /* Solid lighter color */
}

.fit-card.yes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--toasted-almond);
    font-weight: bold;
}

.fit-card.no li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--terracotta);
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    text-align: center;
    padding: 5rem 2rem;
}

.newsletter-section .symbol {
    width: 50px;
    margin-bottom: 1.5rem;
}

.newsletter-embed {
    max-width: 500px;
    margin: 0 auto;
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--toasted-almond);
}

.bg-cream .form-group label,
.bg-white .form-group label {
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(253, 245, 230, 0.15);
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(253, 245, 230, 0.05);
    color: var(--warm-linen);
}

.bg-cream .form-group input,
.bg-cream .form-group textarea,
.bg-cream .form-group select,
.bg-white .form-group input,
.bg-white .form-group textarea,
.bg-white .form-group select {
    background: white;
    border: 2px solid rgba(78, 56, 34, 0.2);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--toasted-almond);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--espresso);
    color: var(--warm-linen);
    padding: 5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: 'ESSENTFLOW™';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 300;
    color: rgba(253, 245, 230, 0.03);
    white-space: nowrap;
    letter-spacing: 0.1em;
    user-select: none;
    pointer-events: none;
}

.footer-content {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(253, 245, 230, 0.6);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(253, 245, 230, 0.08);
    color: var(--warm-linen);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.social-links a:hover {
    background: var(--toasted-almond);
    color: var(--espresso);
}

.footer h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
    color: var(--toasted-almond);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(253, 245, 230, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--toasted-almond);
}

.footer-bottom {
    max-width: 960px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(253, 245, 230, 0.08);
    text-align: center;
    color: rgba(253, 245, 230, 0.35);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

/* ==================== PAGE HEADERS ==================== */
.page-header {
    padding: 12rem 2rem 5rem;
    text-align: center;
    background: linear-gradient(160deg, #2a0845 0%, var(--espresso) 55%, #1a0d08 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 25% 30%, rgba(59,0,102,0.6) 0%, transparent 50%),
                radial-gradient(ellipse at 75% 70%, rgba(78,56,34,0.4) 0%, transparent 45%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--warm-linen);
    position: relative;
    line-height: 1.05;
}

.page-header h1 em {
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--toasted-almond);
}

.page-header p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(253, 245, 230, 0.6);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Light page header variant */
.page-header-light {
    background: var(--warm-linen);
}

.page-header-light::before {
    display: none;
}

.page-header-light h1 {
    color: var(--royal-purple);
}

.page-header-light p {
    color: var(--text-medium);
}

/* ==================== DECORATIVE ELEMENTS ==================== */
.pink-accent {
    color: var(--terracotta);
}

.teal-accent {
    color: var(--royal-purple);
}

.gold-accent {
    color: var(--toasted-almond);
}

/* Trademark Symbol Styling */
.trademark {
    font-size: 0.55em;
    vertical-align: top;
    position: relative;
    top: 0.1em;
    line-height: 1;
}

.divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--toasted-almond), transparent);
    margin: 2rem auto;
}

.divider-left {
    margin-left: 0;
    background: linear-gradient(90deg, var(--toasted-almond), transparent);
}

/* Accent bar (left border) */
.accent-bar {
    position: relative;
}

.accent-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--royal-purple), var(--terracotta));
}

/* ==================== TRUTH BLOCK / QUOTE BLOCK ==================== */
.truth-block {
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
}

.truth-block::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 200px;
    color: rgba(202, 137, 95, 0.06);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.truth-block p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-style: italic;
    color: var(--warm-linen);
    line-height: 1.4;
    position: relative;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.bg-cream .truth-block p,
.bg-white .truth-block p {
    color: var(--royal-purple);
}

.truth-block span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--toasted-almond);
    text-transform: uppercase;
}

/* ==================== PRINCIPLES LIST ==================== */
.principles-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.principles-list li {
    padding: 1rem 1.5rem;
    background: rgba(253, 245, 230, 0.04);
    border-radius: 4px;
    border-left: 3px solid var(--terracotta);
    font-size: 0.95rem;
}

.bg-cream .principles-list li,
.bg-white .principles-list li {
    background: white;
    box-shadow: var(--shadow-light);
}

/* ==================== SHOP EMBED ==================== */
.shop-embed-container {
    background: rgba(253, 245, 230, 0.04);
    border: 1px solid rgba(253, 245, 230, 0.08);
    border-radius: 12px;
    padding: 2rem;
}

.bg-cream .shop-embed-container,
.bg-white .shop-embed-container {
    background: white;
    border: none;
    box-shadow: var(--shadow-light);
}

/* ==================== LEGAL PAGES ==================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--royal-purple);
}

.legal-content p,
.legal-content li {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ==================== BLOG POST STYLES ==================== */
.blog-post-content {
    max-width: 750px;
    margin: 0 auto;
}

.blog-post-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--royal-purple);
    margin: 3rem 0 1.25rem;
    line-height: 1.2;
}

.blog-post-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--royal-purple);
    margin: 2.5rem 0 1rem;
}

.blog-post-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-post-content p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.blog-post-content ul,
.blog-post-content ol {
    color: var(--text-medium);
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.blog-post-content blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--royal-purple);
    border-left: 4px solid var(--terracotta);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    line-height: 1.5;
}

/* ==================== INSIGHT CARDS ==================== */
.insight-card {
    position: relative;
    padding: 2rem;
}

.insight-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(253, 245, 230, 0.06);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    user-select: none;
}

.bg-cream .insight-num,
.bg-white .insight-num {
    color: rgba(59, 0, 102, 0.06);
}

.insight-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--toasted-almond);
}

.bg-cream .insight-card h3,
.bg-white .insight-card h3 {
    color: var(--royal-purple);
}

.insight-card p {
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ==================== PILL TAGS ==================== */
.pill {
    display: inline-block;
    background: rgba(59, 0, 102, 0.3);
    border: 1px solid rgba(59, 0, 102, 0.5);
    color: var(--toasted-almond);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin: 0.25rem;
}

.pill.warm {
    background: rgba(161, 94, 73, 0.2);
    border-color: rgba(161, 94, 73, 0.4);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--warm-linen);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-medium);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 > * {
        grid-column: auto !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .principles-list {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer::before {
        font-size: 60px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .page-header {
        padding: 8rem 1.5rem 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Shop iframe responsive */
    .shop-embed-container {
        padding: 1rem;
        min-height: 500px !important;
    }

    .shop-embed-container iframe {
        height: 600px;
    }

    /* Form mobile adjustments */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    /* Card spacing on mobile */
    .card {
        padding: 1.5rem;
    }

    /* Blog card mobile */
    .blog-card-content {
        padding: 1.25rem;
    }

    /* Footer mobile spacing */
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer h4 {
        margin-top: 1.5rem;
    }

    .truth-block::before {
        font-size: 100px;
    }

    .truth-block p {
        font-size: 1.25rem;
    }
}
