/* ===== BASE RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', Georgia, serif;
    background: #fef9f5;
    color: #2a3a4a;
    overflow-x: hidden;
    position: relative;
}

/* Color reference: #b4cce8 #b4e8c8 #f5e4b4 #e8b4c0 #4a2d3a #2a3a4a #fef9f5 */

/* ===== WATERCOLOR PARALLAX LAYERS ===== */
.watercolor-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

#wc-layer-0 {
    background:
        radial-gradient(ellipse 60% 40% at 15% 20%, rgba(232,180,192,0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 70%, rgba(180,204,232,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 70% 30% at 50% 90%, rgba(180,232,200,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 90% 10%, rgba(245,228,180,0.22) 0%, transparent 55%);
}

#wc-layer-1 {
    background:
        radial-gradient(ellipse 45% 55% at 70% 30%, rgba(232,180,192,0.2) 0%, transparent 65%),
        radial-gradient(ellipse 55% 35% at 20% 80%, rgba(180,232,200,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 40% 50%, rgba(180,204,232,0.18) 0%, transparent 70%);
}

#wc-layer-2 {
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(245,228,180,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 30% 70% at 10% 60%, rgba(232,180,192,0.12) 0%, transparent 55%);
}

/* ===== NAVIGATION ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(254,249,245,0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(74,45,58,0.08);
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a2d3a;
    letter-spacing: 0.02em;
}

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

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: #2a3a4a;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a2d3a;
}

/* ===== SPLIT SCREEN SECTIONS ===== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.split-section--short {
    min-height: 60vh;
}

.split-left,
.split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 4rem;
    position: relative;
    overflow: hidden;
}

/* ===== WATERCOLOR WASH BACKGROUNDS ===== */
.wash-rose {
    background:
        radial-gradient(ellipse 70% 60% at 30% 40%, rgba(232,180,192,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(232,180,192,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 80%, rgba(245,228,180,0.15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 10% 70%, rgba(180,204,232,0.1) 0%, transparent 55%),
        linear-gradient(135deg, rgba(254,249,245,0.9), rgba(232,180,192,0.15));
}

.wash-blue {
    background:
        radial-gradient(ellipse 65% 55% at 60% 30%, rgba(180,204,232,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 50% 70% at 20% 70%, rgba(180,204,232,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 80% 80%, rgba(180,232,200,0.15) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 40% 10%, rgba(245,228,180,0.12) 0%, transparent 55%),
        linear-gradient(225deg, rgba(254,249,245,0.9), rgba(180,204,232,0.15));
}

.wash-mint {
    background:
        radial-gradient(ellipse 60% 50% at 40% 50%, rgba(180,232,200,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 50% 65% at 75% 25%, rgba(180,232,200,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 70% 35% at 20% 80%, rgba(180,204,232,0.12) 0%, transparent 55%),
        radial-gradient(ellipse 45% 55% at 90% 60%, rgba(232,180,192,0.1) 0%, transparent 55%),
        linear-gradient(180deg, rgba(254,249,245,0.9), rgba(180,232,200,0.12));
}

.wash-cream {
    background:
        radial-gradient(ellipse 70% 50% at 50% 40%, rgba(245,228,180,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 45% 60% at 15% 75%, rgba(245,228,180,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 55% 40% at 85% 20%, rgba(232,180,192,0.12) 0%, transparent 55%),
        linear-gradient(315deg, rgba(254,249,245,0.9), rgba(245,228,180,0.15));
}

/* ===== PANEL CONTENT ===== */
.panel-content {
    max-width: 520px;
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #4a2d3a;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-variation-settings: 'wght' 500;
    transition: font-variation-settings 0.4s ease;
}

h1:hover, h2:hover {
    font-variation-settings: 'wght' 800;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #4a2d3a;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: 'Lora', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    color: #2a3a4a;
    opacity: 0.85;
}

.body-text {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #2a3a4a;
    margin-bottom: 1rem;
}

.accent-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #4a2d3a;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #4a2d3a;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #2a3a4a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== COLLAGE ITEMS ===== */
.collage-item {
    transform: rotate(var(--rot, 0deg));
    background: rgba(254,249,245,0.6);
    border: 1px solid rgba(254,249,245,0.8);
    box-shadow: 0 2px 12px rgba(74,45,58,0.06);
    padding: 1.5rem;
    margin-bottom: 1rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collage-item:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 4px 20px rgba(74,45,58,0.1);
}

/* ===== PRINCIPLE LIST ===== */
.principle-list {
    list-style: none;
}

.principle-list .collage-item {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2a3a4a;
}

/* ===== PULL QUOTE ===== */
.pull-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: #4a2d3a;
    line-height: 1.5;
    border-left: 3px solid #e8b4c0;
    padding-left: 1.5rem;
    margin: 2rem 0 0.75rem;
}

.quote-attribution {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #2a3a4a;
    opacity: 0.7;
    padding-left: 1.5rem;
}

/* ===== RETRO PATTERN ===== */
.retro-pattern-block {
    width: 100%;
    height: 200px;
    opacity: 0.5;
}

.retro-pattern {
    width: 100%;
    height: 100%;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fef9f5;
    background: #4a2d3a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: none;
    margin-top: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.cta-button:hover {
    background: #2a3a4a;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #2a3a4a;
    opacity: 0.5;
    margin-top: 2rem;
}

/* ===== SCROLL REVEAL ===== */
.panel-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.panel-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-left,
    .split-right {
        padding: 4rem 2rem;
    }

    .site-nav {
        padding: 0.75rem 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.75rem;
    }
}
