/* IDENTITY RESET - Global Styles */

:root {
    --bg: #F8F5EF;
    --text: #2E2E2E;
    --gold: #B89A5B;
    --teal: #486A6C;
    --text-muted: #5a5a5a;
    --border: #e5e5e5;
    --max-width: 1150px;
    --section-padding: 85px;
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section base */
.section {
    padding: var(--section-padding) 0;
}

/* PHASE 1: HERO */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
}

.hero-headline {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtext {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    filter: grayscale(30%);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.btn-primary:hover {
    background-color: #a68b4f;
    border-color: #a68b4f;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text);
    border-color: var(--text);
}

.btn-secondary:hover {
    background-color: var(--text);
    color: var(--bg);
}

.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.btn-gold:hover {
    background-color: #a68b4f;
}

.btn-teal {
    background-color: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.btn-teal:hover {
    background-color: #3d5859;
}

/* PHASE 2: STATEMENT */
.statement {
    background-color: var(--bg);
    padding: 100px 0;
    text-align: center;
}

.statement-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.statement-accent {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--text);
    font-style: italic;
}

/* PHASE 3: SHIFT */
.shift {
    background: linear-gradient(to bottom, var(--bg) 0%, #f4f1eb 100%);
}

.shift-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.shift-content {
    font-size: 1.05rem;
    line-height: 2;
}

.shift-content p {
    margin-bottom: 24px;
}

.shift-content p:last-child {
    margin-bottom: 0;
}

.shift-quote {
    background: #fff;
    padding: 48px;
    border-radius: 2px;
    border-left: 4px solid var(--gold);
}

.shift-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    color: var(--text);
}

/* PHASE 4: TWO PATHS */
.paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.path-card {
    background: #fff;
    padding: 48px;
    border-radius: 2px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.path-card h3 {
    font-size: 1.9rem;
    margin-bottom: 16px;
}

.path-card > p:first-of-type {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.path-card ul {
    list-style: none;
    margin-bottom: auto;
}

.path-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.path-card li::before {
    content: "/";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 500;
}

.path-card .btn {
    margin-top: 24px;
}

.path-sessions {
    border-top: 4px solid var(--gold);
}

.path-retreat {
    border-top: 4px solid var(--teal);
}

/* PHASE 5: VALUES */
.values {
    background: linear-gradient(to bottom, #f4f1eb 0%, var(--bg) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* PHASE 6: ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 24px;
}

/* PHASE 7: CTA */
.cta {
    background: #fff;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.cta-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta .btn {
    min-width: 200px;
}

/* FOOTER */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.6);
    padding: 48px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer a:hover {
    color: var(--gold);
}

.footer p {
    margin-bottom: 8px;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    .shift-grid {
        gap: 60px;
    }
    .paths-grid {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .shift-grid,
    .paths-grid,
    .about-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
        padding-right: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: 1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .shift-quote {
        margin-top: 40px;
    }
    
    .path-card {
        min-height: auto;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .values-grid {
        gap: 40px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .shift-quote {
        padding: 32px;
    }
    
    .shift-quote blockquote {
        font-size: 1.4rem;
    }
    
    .path-card {
        padding: 32px;
    }
    
    .about-image img {
        height: 320px;
    }
    
    .value-item {
        text-align: left;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }
    
    .value-icon {
        margin: 0;
        flex-shrink: 0;
    }
}
