/* --- THE VERANDAH: ILLUSTRATIVE BOUTIQUE DESIGN --- */

:root {
    --espresso: #2D241E;   /* Deep text/text-shadow */
    --bone: #F5F2ED;       /* Warm main background */
    --clay: #B07D62;       /* Accent label color */
    --gully-sage: #5B5D42; /* The illustration color - Muted & Grounded */
    --white: #FFFFFF;
    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 5. SMOOTH SCROLLING (Criteria Fulfilled) */
html { scroll-behavior: smooth; font-size: 16px; }

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bone);
    color: var(--espresso);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Lora', serif; font-weight: 400; line-height: 1.2; }
em { font-style: italic; font-family: 'Lora', serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* Labels & Labels */
.eyebrow { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 4px; color: #aaa; display: block; margin-bottom: 1.5rem; }
.eyebrow.clay { color: var(--clay); opacity: 0.8; }
.section-header p { color: #888; margin-top: 1rem; max-width: 600px;}

/* ILLUSTRATION STYLING (The core differentiator) */
.organic-art-large {
    max-width: 100%;
    height: auto;
    opacity: 0.8; /* Mutes the illustration color slightly to feel organic */
    /* Mix-blend-mode will make the illustration feel transparent on the warm bg */
    mix-blend-mode: multiply; 
}

.organic-art-small {
    display: block;
    margin: 3rem auto 0;
    max-height: 150px; /* Small decorative sketches */
    mix-blend-mode: multiply;
}

/* --- NAVIGATION --- */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: var(--bone);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.logo { font-size: 1.1rem; letter-spacing: 5px; font-weight: 300; text-decoration: none; color: var(--espresso);}
.logo .bold { font-weight: 600; }

.nav-links { display: flex; gap: 3rem; align-items: center; list-style: none; }
.nav-links a {
    text-decoration: none;
    color: var(--espresso);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-cta {
    background: var(--espresso);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 2px;
}

/* --- HERO SECTION (Revision 1 style with Illustration) --- */
.hero-split {
    height: 90vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 0 5%;
    background-color: var(--bone);
    gap: 4rem;
}

.hero-content h1 { font-size: 4rem; margin-bottom: 2rem; }
.hero-content p { font-size: 1.3rem; max-width: 550px; color: #6b625b; margin-bottom: 3rem; font-weight: 300;}

/* 4. Clickable Scroll Indicator */
.scroll-indicator {
    display: block;
    margin-top: 4rem;
    text-decoration: none;
    color: var(--espresso);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}
.scroll-indicator:hover { color: var(--clay); transform: translateY(5px); }

.hero-illustration { text-align: center; }

/* --- OUR STORY (ABOUT) --- */
.about-card-section { padding: 10rem 0; background-color: var(--white); }
.about-card { padding: 0 5%; }
.about-card h2 { font-size: 3rem; margin-bottom: 2rem; }
.about-card p { font-size: 1.2rem; color: #6b625b; }

/* --- PHILOSOPHY (Revision 1 Stacked Grid) --- */
.values-grid-section { padding: 10rem 0; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 5rem; }

.value-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); border-color: var(--gully-sage); }

.value-card h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--espresso); }
.value-card .number { font-family: 'Lora', serif; color: var(--clay); display: block; margin-bottom: 1rem; font-style: italic;}
.value-card p { color: #6b625b; }

/* --- THE PATH SECTION --- */
.ndis-journey-section { 
    padding: 12rem 0; 
    background: var(--espresso); 
    color: var(--bone); 
}

.ndis-journey-section h2 { 
    font-size: 3.5rem; 
    margin-bottom: 1.5rem; 
    color: var(--white); 
}

.section-intro { 
    font-size: 1.1rem; 
    margin-bottom: 6rem; 
    opacity: 0.7; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto;
}

/* Vertical Roadmap Layout */
.steps-vertical {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.step-item {
    padding-bottom: 4rem;
    position: relative;
    border-left: 1px solid rgba(176, 125, 98, 0.3); /* The Clay color at low opacity */
    padding-left: 3rem;
    margin-left: 1rem;
}

/* Remove border from the last item so the line doesn't hang */
.step-item:last-child {
    border-left: 1px solid transparent;
    padding-bottom: 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.step-number {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--clay);
    border: 1px solid var(--clay);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--espresso);
    /* Position the circle over the line */
    position: absolute;
    left: -20px;
}

.step-header h3 {
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.step-content p {
    font-family: 'Inter', sans-serif; /* Keep content grounded/readable */
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--bone);
    opacity: 0.8;
    max-width: 100%;
    margin: 0;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .ndis-journey-section h2 { font-size: 2.5rem; }
    .step-item { padding-left: 2rem; }
}

/* --- FINAL CONTACT (Refined Design) --- */
.final-contact { 
    padding: 18rem 0; 
    position: relative;
    background-color: var(--bone);
    overflow: hidden; /* Prevents the large image from causing scroll issues */

    /* Background Image Layout: Larger, more transparent, and slightly "bleeding" off the right edge */
    background-image: url('Assets/Full\ bloom.png');
    background-repeat: no-repeat;
    background-position: 110% center; /* Partially off-screen for a modern look */
    background-size: 600px; 
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.invite-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Designing the "Ready" Text */
.contact-heading {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--espresso);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* Designing the "Welcome" Text */
.contact-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gully-sage); /* Using your branding color for a softer feel */
    margin-bottom: 5rem !important; /* Creates space for the email focal point */
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Email Focal Point */
.email-wrap {
    display: inline-block;
    position: relative;
}

.huge-button {
    font-family: 'Lora', serif; 
    font-size: 3.5rem;
    color: var(--espresso); 
    text-decoration: none;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(176, 125, 98, 0.3); /* Subtle clay underline */
    transition: var(--transition);
}

.huge-button:hover { 
    color: var(--clay);
    border-bottom: 1px solid var(--clay);
}

/* ABN Styling */
.final-contact .abn { 
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem; 
    margin-top: 2.5rem; 
    color: #999; 
    letter-spacing: 2px; 
    text-transform: uppercase;
}

/* --- SOCIAL LINKS --- */
.social-wrap {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 36, 30, 0.05); /* Very faint line to separate from ABN */
    display: inline-block;
}

.social-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.social-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gully-sage);
}

.social-arrow {
    font-size: 1.2rem;
    color: var(--clay);
    transition: transform 0.3s ease;
}

.social-link:hover .social-label {
    color: var(--espresso);
}

.social-link:hover .social-arrow {
    transform: translateX(5px);
}

/* Ensure background image doesn't overlap text on ultra-wide screens */
@media (min-width: 1600px) {
    .final-contact {
        background-position: 105% center;
        background-size: 700px;
    }
}

/* RESPONSIVE REFINEMENT */
@media (max-width: 1024px) {
    .final-contact { 
        padding: 10rem 0;
        background-position: center bottom -50px;
        background-size: 300px;
    }
    .contact-heading {
        font-size: 2.2rem;
    }
    .huge-button { 
        font-size: 1.6rem; 
    }
}

/* --- PREMIUM FOOTER --- */
.premium-footer {
    padding: 8rem 0 4rem;
    background-color: var(--white);
    border-top: 1px solid rgba(45, 36, 30, 0.05);
    color: var(--espresso);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clay);
    margin-bottom: 2rem;
}

.footer-tagline {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    opacity: 0.8;
}

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

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

.footer-links a {
    text-decoration: none;
    color: var(--espresso);
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--clay);
}

.footer-col p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

/* Footer Bottom Bar */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 36, 30, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
}

.footer-legal .separator {
    margin: 0 1rem;
    color: rgba(176, 125, 98, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-split { grid-template-columns: 1fr; height: auto; padding: 10rem 5%; text-align: center; }
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .values-grid { grid-template-columns: 1fr; }
    .about-card h2, .final-contact h2 { font-size: 2.2rem; }
    .huge-button { font-size: 1.8rem; }
}