/* =========================================================
   LIFE SERVICES — LANDING PAGE
   ========================================================= */

:root{
    --navy:#17384d;
    --ocean:#7cbfd8;
    --sky:#dff3fa;
    --sage:#a9cbb7;
    --sand:#f5f1ea;
    --gold:#d4af7a;
    --white:#ffffff;
    --ink:#27343c;
    --muted:#5d6970;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",Arial,sans-serif;
    color:var(--ink);
    background:var(--white);
    overflow-x:hidden;
}

img,
video{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
}

/* HERO */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    color:var(--white);
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg,rgba(8,26,39,.08),rgba(8,26,39,.26)),
        linear-gradient(90deg,rgba(8,26,39,.44),rgba(8,26,39,.08));
}

/* HEADER */

.site-nav{
    position:absolute;
    top:24px;
    left:50%;
    transform:translateX(-50%);
    z-index:20;

    width:calc(100% - 52px);
    max-width:1440px;
    min-height:112px;
    padding:16px 24px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;

    background:rgba(255,255,255,.93);
    border:1px solid rgba(255,255,255,.98);
    border-radius:34px;

    box-shadow:0 20px 50px rgba(8,29,43,.16);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
}

.brand{
    flex:0 1 410px;
    min-width:300px;
    display:flex;
    align-items:center;
    text-decoration:none;
    overflow:hidden;
}

.brand img{
    width:100%;
    height:auto;
    object-fit:contain;
}

.nav-links{
    flex:0 1 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:26px;
    list-style:none;
    min-width:0;
}

.nav-links a{
    position:relative;
    display:block;
    text-decoration:none;
    color:var(--navy);
    font-size:16px;
    font-weight:500;
    padding:10px 0;
    white-space:nowrap;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#4b839c;
    transition:width .25s ease;
}

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

.nav-cta{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:16px;
    min-width:220px;
    padding:17px 24px;
    border-radius:999px;
    text-decoration:none;
    background:var(--navy);
    color:var(--white);
    font-size:15px;
    font-weight:700;
    white-space:nowrap;
    box-shadow:0 10px 22px rgba(23,56,77,.18);
    transition:transform .25s ease;
}

.nav-cta:hover{
    transform:translateY(-2px);
}

.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:0;
    background:transparent;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:var(--navy);
}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:10;
    width:min(92%,1040px);
    margin-top:150px;
    text-align:center;
}

.eyebrow{
    margin-bottom:24px;
    font-size:14px;
    font-weight:700;
    letter-spacing:4.5px;
    text-transform:uppercase;
}

.eyebrow span{
    color:var(--gold);
    padding:0 8px;
}

.hero-content h1{
    margin:0 auto;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(72px,7.5vw,116px);
    line-height:.9;
    font-weight:600;
    letter-spacing:-2.2px;
    color:var(--white);
    text-shadow:0 5px 28px rgba(0,0,0,.22);
}

.hero-divider{
    margin:34px auto 24px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
}

.hero-divider span{
    width:125px;
    height:1px;
    background:var(--gold);
}

.hero-divider i{
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--gold);
    display:block;
}

.hero-copy{
    max-width:780px;
    margin:0 auto 34px;
    font-size:clamp(18px,2vw,22px);
    line-height:1.65;
    color:rgba(255,255,255,.96);
}

.hero-actions{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
}

.button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    min-width:300px;
    padding:18px 32px;
    border-radius:999px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:transform .25s ease,background .25s ease,color .25s ease;
}

.button:hover{
    transform:translateY(-3px);
}

.button-primary{
    background:var(--sky);
    color:var(--navy);
}

.button-secondary{
    background:rgba(255,255,255,.08);
    color:var(--white);
    border:1px solid rgba(255,255,255,.9);
    backdrop-filter:blur(9px);
}

.button-secondary:hover{
    background:var(--white);
    color:var(--navy);
}

/* SERVICES PREVIEW */

.services-preview{
    position:relative;
    z-index:5;
    width:100%;
    margin-top:-1px;
    padding:70px min(7vw,110px) 88px;

    display:grid;
    grid-template-columns:minmax(310px,.9fr) minmax(0,2fr);
    gap:64px;
    align-items:start;

    background:var(--sand);
    border-radius:48px 48px 0 0;
}

.services-intro{
    padding-top:16px;
}

.services-intro h2{
    max-width:430px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(48px,5vw,70px);
    line-height:1.02;
    font-weight:600;
    color:#30363a;
}

.section-line{
    display:block;
    width:48px;
    height:2px;
    margin:22px 0;
    background:var(--gold);
}

.services-intro p{
    max-width:440px;
    font-size:17px;
    line-height:1.8;
    color:#4e5a61;
}

.service-cards{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.service-card{
    position:relative;
    overflow:hidden;
    background:var(--white);
    border-radius:22px;
    box-shadow:0 18px 38px rgba(23,56,77,.10);
}

.service-image{
    height:205px;
    background-size:cover;
    background-position:center;
}

.service-image-wellbeing{
    background-image:url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1000&q=85");
}

.service-image-fitness{
    background-image:url("https://images.unsplash.com/photo-1506629082955-511b1aa562c8?auto=format&fit=crop&w=1000&q=85");
}

.service-image-nutrition{
    background-image:url("https://images.unsplash.com/photo-1543362906-acfc16c67564?auto=format&fit=crop&w=1000&q=85");
}

.service-icon{
    position:relative;
    z-index:2;
    width:64px;
    height:64px;
    margin:-32px auto 0;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--ocean);
    color:var(--white);
    font-size:28px;
    border:5px solid var(--white);
}

.service-card:nth-child(2) .service-icon{
    background:var(--sage);
}

.service-card:nth-child(3) .service-icon{
    background:#6da7c2;
}

.service-body{
    padding:15px 24px 28px;
    text-align:center;
}

.service-body h3{
    margin-bottom:9px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:29px;
    color:var(--navy);
}

.service-body p{
    min-height:76px;
    font-size:14px;
    line-height:1.65;
    color:var(--muted);
}

/* APPROACH SECTION */

.approach-section{
    padding:110px min(7vw,110px);
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
    gap:80px;
    align-items:center;
    background:var(--white);
}

.approach-image-wrap{
    position:relative;
    min-height:650px;
}

.approach-image{
    position:absolute;
    inset:0 54px 0 0;
    border-radius:34px;
    background:
        linear-gradient(180deg,rgba(17,48,65,.05),rgba(17,48,65,.16)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=88")
        center/cover no-repeat;
    box-shadow:0 28px 60px rgba(23,56,77,.14);
}

.approach-badge{
    position:absolute;
    right:0;
    bottom:54px;
    width:260px;
    padding:26px 28px;
    border-radius:22px;
    background:rgba(223,243,250,.95);
    box-shadow:0 18px 40px rgba(23,56,77,.14);
    backdrop-filter:blur(12px);
}

.approach-badge strong{
    display:block;
    margin-bottom:7px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:31px;
    line-height:1;
    color:var(--navy);
}

.approach-badge span{
    font-size:14px;
    line-height:1.5;
    color:#4d626d;
}

.section-kicker{
    margin-bottom:18px;
    color:#5d92aa;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.approach-content h2{
    max-width:650px;
    margin-bottom:26px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(50px,5vw,72px);
    line-height:1;
    color:var(--navy);
}

.approach-lead{
    max-width:650px;
    margin-bottom:36px;
    font-size:17px;
    line-height:1.8;
    color:#55656d;
}

.approach-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
    margin-bottom:34px;
}

.approach-item{
    display:grid;
    grid-template-columns:46px 1fr;
    gap:14px;
    padding:20px 0;
    border-top:1px solid rgba(23,56,77,.14);
}

.approach-item>span{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:28px;
    color:var(--gold);
}

.approach-item h3{
    margin-bottom:6px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:26px;
    color:var(--navy);
}

.approach-item p{
    font-size:14px;
    line-height:1.65;
    color:#637179;
}

.text-link{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding-bottom:6px;
    border-bottom:1px solid var(--gold);
    color:var(--navy);
    text-decoration:none;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:1280px){
    .site-nav{
        width:calc(100% - 36px);
        padding:14px 18px;
        gap:14px;
    }

    .brand{
        flex-basis:350px;
        min-width:280px;
    }

    .nav-links{
        gap:20px;
    }

    .nav-links a{
        font-size:15px;
    }

    .nav-cta{
        min-width:200px;
        padding:15px 20px;
        font-size:14px;
    }

    .approach-section{
        gap:54px;
    }
}

@media(max-width:1080px){
    .site-nav{
        min-height:94px;
    }

    .brand{
        flex-basis:320px;
        min-width:250px;
    }

    .nav-links{
        display:none;
    }

    .menu-toggle{
        display:flex;
        margin-left:auto;
    }

    .nav-links.open{
        position:absolute;
        top:calc(100% + 10px);
        left:0;
        width:100%;
        padding:18px;

        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:4px;

        background:rgba(255,255,255,.98);
        border-radius:22px;
        box-shadow:0 18px 40px rgba(8,29,43,.18);
    }

    .nav-links.open a{
        display:block;
        padding:12px;
        border-radius:12px;
    }

    .services-preview{
        grid-template-columns:1fr;
    }

    .approach-section{
        grid-template-columns:1fr;
    }

    .approach-image-wrap{
        min-height:560px;
    }
}

@media(max-width:760px){
    .site-nav{
        top:12px;
        width:calc(100% - 20px);
        min-height:76px;
        padding:10px 12px;
        border-radius:22px;
    }

    .brand{
        flex-basis:230px;
        min-width:190px;
    }

    .nav-cta{
        display:none;
    }

    .hero-content{
        margin-top:115px;
    }

    .hero-content h1{
        font-size:clamp(58px,17vw,80px);
    }

    .eyebrow{
        font-size:11px;
        line-height:1.6;
    }

    .hero-divider span{
        width:72px;
    }

    .hero-copy{
        font-size:16px;
    }

    .button{
        width:100%;
        max-width:330px;
        min-width:0;
    }

    .services-preview{
        padding:64px 22px 72px;
        border-radius:32px 32px 0 0;
    }

    .service-cards{
        grid-template-columns:1fr;
    }

    .service-image{
        height:230px;
    }

    .approach-section{
        padding:78px 22px;
        gap:46px;
    }

    .approach-image-wrap{
        min-height:440px;
    }

    .approach-image{
        inset:0 0 50px 0;
        border-radius:26px;
    }

    .approach-badge{
        right:18px;
        bottom:0;
        width:230px;
    }

    .approach-grid{
        grid-template-columns:1fr;
        gap:8px;
    }
}


/* =========================================================
   SERVICES PAGE
   ========================================================= */

.inner-page-hero{
    position:relative;
    min-height:720px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--white);
}

.inner-page-background{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
}

.services-page-background{
    background-image:url("https://images.unsplash.com/photo-1476673160081-cf065607f449?auto=format&fit=crop&w=1900&q=88");
}

.inner-page-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg,rgba(8,26,39,.12),rgba(8,26,39,.52)),
        linear-gradient(90deg,rgba(8,26,39,.55),rgba(8,26,39,.12));
}

.inner-hero-content{
    position:relative;
    z-index:5;
    width:min(90%,940px);
    margin-top:150px;
    text-align:center;
}

.inner-hero-content h1{
    margin-bottom:24px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(68px,7vw,108px);
    line-height:.92;
    font-weight:600;
    color:var(--white);
    text-shadow:0 5px 28px rgba(0,0,0,.22);
}

.inner-hero-content>p:last-child{
    max-width:780px;
    margin:auto;
    font-size:clamp(18px,2vw,22px);
    line-height:1.7;
    color:rgba(255,255,255,.95);
}

.services-introduction{
    padding:100px min(8vw,130px);
    display:grid;
    grid-template-columns:minmax(320px,.9fr) minmax(0,1fr);
    gap:90px;
    align-items:end;
    background:var(--sand);
}

.services-introduction h2{
    max-width:620px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

.services-introduction>p{
    max-width:650px;
    font-size:18px;
    line-height:1.8;
    color:#52616a;
}

.service-list{
    padding:30px min(7vw,110px) 120px;
    background:var(--sand);
}

.service-feature{
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);
    gap:80px;
    align-items:center;
    padding:75px 0;
    border-top:1px solid rgba(23,56,77,.13);
}

.service-feature-reverse .service-feature-image{
    order:2;
}

.service-feature-reverse .service-feature-content{
    order:1;
}

.service-feature-image{
    min-height:520px;
    border-radius:30px;
    background-size:cover;
    background-position:center;
    box-shadow:0 24px 55px rgba(23,56,77,.14);
}

.wellbeing-feature-image{
    background-image:url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1400&q=88");
}

.coaching-feature-image{
    background-image:url("https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1400&q=88");
}

.fitness-feature-image{
    background-image:url("https://images.unsplash.com/photo-1538805060514-97d9cc17730c?auto=format&fit=crop&w=1400&q=88");
}

.nutrition-feature-image{
    background-image:url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&w=1400&q=88");
}

.ndis-feature-image{
    background-image:url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1400&q=88");
}

.getaway-feature-image{
    background-image:url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=88");
}

.service-feature-content{
    max-width:610px;
}

.service-number{
    margin-bottom:12px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:30px;
    color:var(--gold);
}

.service-feature-content h2{
    margin-bottom:22px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(48px,4.4vw,68px);
    line-height:1;
    color:var(--navy);
}

.service-feature-content>p:not(.service-number):not(.section-kicker){
    margin-bottom:24px;
    font-size:17px;
    line-height:1.8;
    color:#53636b;
}

.feature-list{
    margin:0 0 30px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:13px 26px;
    list-style:none;
}

.feature-list li{
    position:relative;
    padding-left:23px;
    font-size:14px;
    line-height:1.5;
    color:#344851;
}

.feature-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:.55em;
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--ocean);
}

.service-link{
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding-bottom:7px;
    border-bottom:1px solid var(--gold);
    text-decoration:none;
    color:var(--navy);
    font-weight:700;
}

.service-process{
    padding:110px min(7vw,110px);
    background:var(--white);
}

.service-process-heading{
    max-width:780px;
    margin:0 auto 55px;
    text-align:center;
}

.service-process-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

.process-steps{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
}

.process-steps article{
    min-height:275px;
    padding:32px 28px;
    border-radius:22px;
    background:linear-gradient(145deg,var(--sky),#ffffff);
    box-shadow:0 16px 35px rgba(23,56,77,.08);
}

.process-steps span{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:28px;
    color:var(--gold);
}

.process-steps h3{
    margin:30px 0 12px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:34px;
    color:var(--navy);
}

.process-steps p{
    font-size:14px;
    line-height:1.7;
    color:#586870;
}

.page-cta{
    padding:115px 24px;
    text-align:center;
    color:var(--white);
    background:
        linear-gradient(rgba(16,49,68,.84),rgba(16,49,68,.84)),
        url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1900&q=88")
        center/cover no-repeat;
}

.page-cta h2{
    max-width:850px;
    margin:0 auto 22px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--white);
}

.page-cta>p:not(.section-kicker){
    max-width:690px;
    margin:0 auto 34px;
    font-size:17px;
    line-height:1.8;
    color:rgba(255,255,255,.9);
}

.site-footer{
    padding:36px min(7vw,110px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    background:#102f42;
    color:rgba(255,255,255,.84);
}

.site-footer div{
    display:flex;
    flex-direction:column;
    gap:6px;
}

.site-footer strong{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:28px;
    color:var(--white);
}

.site-footer span,
.site-footer p{
    font-size:12px;
    letter-spacing:.8px;
}

@media(max-width:980px){
    .services-introduction{
        grid-template-columns:1fr;
        gap:28px;
    }

    .service-feature,
    .service-feature-reverse{
        grid-template-columns:1fr;
        gap:40px;
    }

    .service-feature-reverse .service-feature-image,
    .service-feature-reverse .service-feature-content{
        order:initial;
    }

    .service-feature-image{
        min-height:460px;
    }

    .process-steps{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:650px){
    .inner-page-hero{
        min-height:650px;
    }

    .inner-hero-content{
        margin-top:115px;
    }

    .inner-hero-content h1{
        font-size:clamp(56px,15vw,76px);
    }

    .services-introduction,
    .service-list,
    .service-process{
        padding-left:22px;
        padding-right:22px;
    }

    .service-feature{
        padding:55px 0;
    }

    .service-feature-image{
        min-height:340px;
        border-radius:24px;
    }

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

    .process-steps{
        grid-template-columns:1fr;
    }

    .site-footer{
        flex-direction:column;
        align-items:flex-start;
    }
}


/* =========================================================
   NDIS PAGE
   ========================================================= */

.ndis-page-background{
    background-image:url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1900&q=88");
    background-position:center 42%;
}

.ndis-intro{
    padding:105px min(8vw,130px);
    display:grid;
    grid-template-columns:minmax(320px,.9fr) minmax(0,1fr);
    gap:90px;
    align-items:start;
    background:var(--sand);
}

.ndis-intro h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(54px,5vw,78px);
    line-height:1;
    color:var(--navy);
}

.ndis-intro-text{
    display:grid;
    gap:20px;
}

.ndis-intro-text p{
    font-size:18px;
    line-height:1.8;
    color:#53636b;
}

.ndis-supports{
    padding:110px min(7vw,110px);
    background:var(--white);
}

.ndis-supports-heading{
    max-width:760px;
    margin:0 auto 55px;
    text-align:center;
}

.ndis-supports-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

.ndis-support-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.ndis-support-card{
    position:relative;
    min-height:330px;
    padding:32px 30px;
    border-radius:24px;
    overflow:hidden;
    background:linear-gradient(145deg,#ffffff,var(--sky));
    box-shadow:0 18px 40px rgba(23,56,77,.09);
}

.ndis-support-card:nth-child(even){
    background:linear-gradient(145deg,#ffffff,#edf5ef);
}

.ndis-card-number{
    position:absolute;
    top:22px;
    right:24px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:25px;
    color:rgba(23,56,77,.35);
}

.ndis-card-icon{
    width:60px;
    height:60px;
    margin-bottom:30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--navy);
    color:var(--white);
    font-size:26px;
}

.ndis-support-card:nth-child(even) .ndis-card-icon{
    background:#6f9a80;
}

.ndis-support-card h3{
    margin-bottom:13px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:32px;
    line-height:1.05;
    color:var(--navy);
}

.ndis-support-card p{
    font-size:15px;
    line-height:1.75;
    color:#596970;
}

.ndis-journey{
    padding:110px min(7vw,110px);
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(390px,.9fr);
    gap:78px;
    align-items:center;
    background:var(--sand);
}

.ndis-journey-image{
    min-height:650px;
    border-radius:32px;
    background:
        linear-gradient(180deg,rgba(14,44,61,.05),rgba(14,44,61,.18)),
        url("https://images.unsplash.com/photo-1475503572774-15a45e5d60b9?auto=format&fit=crop&w=1400&q=88")
        center/cover no-repeat;
    box-shadow:0 26px 58px rgba(23,56,77,.14);
}

.ndis-journey-content h2{
    margin-bottom:32px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(50px,5vw,72px);
    line-height:1;
    color:var(--navy);
}

.ndis-journey-steps{
    display:grid;
    gap:4px;
}

.ndis-journey-steps article{
    display:grid;
    grid-template-columns:54px 1fr;
    gap:17px;
    padding:22px 0;
    border-top:1px solid rgba(23,56,77,.14);
}

.ndis-journey-steps article>span{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:28px;
    color:var(--gold);
}

.ndis-journey-steps h3{
    margin-bottom:6px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:27px;
    color:var(--navy);
}

.ndis-journey-steps p{
    font-size:14px;
    line-height:1.65;
    color:#5d6d75;
}

.ndis-management{
    padding:105px min(7vw,110px);
    display:grid;
    grid-template-columns:minmax(320px,.9fr) minmax(0,1.25fr);
    gap:75px;
    align-items:center;
    background:var(--white);
}

.ndis-management-copy h2{
    margin-bottom:22px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(50px,5vw,72px);
    line-height:1;
    color:var(--navy);
}

.ndis-management-copy>p:last-child{
    font-size:17px;
    line-height:1.8;
    color:#53636b;
}

.ndis-management-cards{
    display:grid;
    gap:16px;
}

.ndis-management-cards article{
    padding:26px 28px;
    border-radius:20px;
    border:1px solid rgba(23,56,77,.11);
    background:var(--sand);
}

.ndis-management-cards span{
    display:block;
    margin-bottom:8px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:28px;
    font-weight:600;
    color:var(--navy);
}

.ndis-management-cards p{
    font-size:14px;
    line-height:1.7;
    color:#5d6b72;
}

.ndis-faq{
    padding:105px min(7vw,110px);
    display:grid;
    grid-template-columns:minmax(300px,.8fr) minmax(0,1.2fr);
    gap:85px;
    background:var(--sky);
}

.ndis-faq-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(50px,5vw,72px);
    line-height:1;
    color:var(--navy);
}

.faq-list{
    display:grid;
    gap:14px;
}

.faq-list details{
    padding:22px 24px;
    border-radius:18px;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(23,56,77,.08);
}

.faq-list summary{
    cursor:pointer;
    list-style:none;
    padding-right:32px;
    position:relative;
    font-weight:700;
    color:var(--navy);
}

.faq-list summary::-webkit-details-marker{
    display:none;
}

.faq-list summary::after{
    content:"+";
    position:absolute;
    right:0;
    top:-5px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:28px;
    color:#4d839a;
}

.faq-list details[open] summary::after{
    content:"−";
}

.faq-list details p{
    padding-top:16px;
    font-size:14px;
    line-height:1.7;
    color:#5a6a72;
}

.ndis-page-cta{
    background:
        linear-gradient(rgba(16,49,68,.86),rgba(16,49,68,.86)),
        url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1900&q=88")
        center/cover no-repeat;
}

@media(max-width:980px){
    .ndis-intro,
    .ndis-journey,
    .ndis-management,
    .ndis-faq{
        grid-template-columns:1fr;
        gap:42px;
    }

    .ndis-support-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .ndis-journey-image{
        min-height:520px;
    }
}

@media(max-width:650px){
    .ndis-intro,
    .ndis-supports,
    .ndis-journey,
    .ndis-management,
    .ndis-faq{
        padding-left:22px;
        padding-right:22px;
    }

    .ndis-support-grid{
        grid-template-columns:1fr;
    }

    .ndis-journey-image{
        min-height:390px;
    }

    .ndis-support-card{
        min-height:0;
    }
}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-page-background{
    background-image:url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1900&q=88");
    background-position:center 44%;
}

.about-story{
    padding:110px min(7vw,110px);
    display:grid;
    grid-template-columns:minmax(0,1.02fr) minmax(390px,.98fr);
    gap:82px;
    align-items:center;
    background:var(--sand);
}

.about-story-image{
    min-height:660px;
    border-radius:34px;
    background:
        linear-gradient(180deg,rgba(16,49,68,.02),rgba(16,49,68,.10)),
        url("../images/about-reyhan-clean.jpg")
        center 12%/cover no-repeat;
    box-shadow:0 28px 60px rgba(23,56,77,.14);
}

.about-story-content h2{
    margin-bottom:26px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

.about-story-content>p:not(.section-kicker){
    margin-bottom:18px;
    font-size:17px;
    line-height:1.8;
    color:#53636b;
}

.about-story-content .text-link{
    margin-top:12px;
}

.about-philosophy{
    padding:110px min(7vw,110px);
    background:var(--white);
}

.about-philosophy-heading{
    max-width:850px;
    margin:0 auto 56px;
    text-align:center;
}

.about-philosophy-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

.philosophy-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
}

.philosophy-grid article{
    min-height:300px;
    padding:32px 28px;
    border-radius:24px;
    background:linear-gradient(145deg,var(--sky),#ffffff);
    box-shadow:0 16px 36px rgba(23,56,77,.08);
}

.philosophy-grid article:nth-child(even){
    background:linear-gradient(145deg,#edf5ef,#ffffff);
}

.philosophy-grid span{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:28px;
    color:var(--gold);
}

.philosophy-grid h3{
    margin:34px 0 12px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:36px;
    color:var(--navy);
}

.philosophy-grid p{
    font-size:14px;
    line-height:1.75;
    color:#586970;
}

.about-experience{
    padding:110px min(7vw,110px);
    display:grid;
    grid-template-columns:minmax(320px,.85fr) minmax(0,1.25fr);
    gap:78px;
    align-items:start;
    background:var(--sand);
}

.about-experience-copy h2{
    margin-bottom:24px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(50px,5vw,72px);
    line-height:1;
    color:var(--navy);
}

.about-experience-copy>p:last-child{
    font-size:17px;
    line-height:1.8;
    color:#53636b;
}

.qualification-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.qualification-grid article{
    padding:28px;
    border-radius:22px;
    background:var(--white);
    box-shadow:0 16px 34px rgba(23,56,77,.08);
}

.qualification-grid span{
    display:block;
    margin-bottom:20px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:46px;
    line-height:1;
    color:#5d92aa;
}

.qualification-grid h3{
    margin-bottom:9px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:29px;
    color:var(--navy);
}

.qualification-grid p{
    font-size:14px;
    line-height:1.7;
    color:#5d6b72;
}

.about-values{
    padding:110px min(7vw,110px);
    background:var(--white);
}

.about-values-heading{
    max-width:760px;
    margin:0 auto 54px;
    text-align:center;
}

.about-values-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:18px;
}

.values-grid article{
    padding:28px 24px;
    border-radius:22px;
    border:1px solid rgba(23,56,77,.10);
    background:#fbfcfc;
    text-align:center;
}

.value-icon{
    width:58px;
    height:58px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--navy);
    color:var(--white);
    font-size:25px;
}

.values-grid article:nth-child(even) .value-icon{
    background:#6f9a80;
}

.values-grid h3{
    margin-bottom:10px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:29px;
    color:var(--navy);
}

.values-grid p{
    font-size:13px;
    line-height:1.7;
    color:#5e6d74;
}

.about-journey{
    padding:110px min(7vw,110px);
    display:grid;
    grid-template-columns:minmax(380px,.92fr) minmax(0,1.08fr);
    gap:80px;
    align-items:center;
    background:var(--sky);
}

.about-journey-content h2{
    margin-bottom:32px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(50px,5vw,72px);
    line-height:1;
    color:var(--navy);
}

.about-journey-steps{
    display:grid;
    gap:4px;
}

.about-journey-steps article{
    display:grid;
    grid-template-columns:52px 1fr;
    gap:16px;
    padding:21px 0;
    border-top:1px solid rgba(23,56,77,.14);
}

.about-journey-steps article>span{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:28px;
    color:var(--gold);
}

.about-journey-steps h3{
    margin-bottom:6px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:27px;
    color:var(--navy);
}

.about-journey-steps p{
    font-size:14px;
    line-height:1.65;
    color:#5b6b73;
}

.about-journey-image{
    min-height:650px;
    border-radius:32px;
    background:
        linear-gradient(180deg,rgba(16,49,68,.04),rgba(16,49,68,.17)),
        url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1400&q=88")
        center/cover no-repeat;
    box-shadow:0 26px 58px rgba(23,56,77,.14);
}

.about-page-cta{
    background:
        linear-gradient(rgba(16,49,68,.86),rgba(16,49,68,.86)),
        url("https://images.unsplash.com/photo-1470252649378-9c29740c9fa8?auto=format&fit=crop&w=1900&q=88")
        center/cover no-repeat;
}

@media(max-width:1100px){
    .values-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media(max-width:980px){
    .about-story,
    .about-experience,
    .about-journey{
        grid-template-columns:1fr;
        gap:44px;
    }

    .philosophy-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .about-story-image,
    .about-journey-image{
        min-height:520px;
    }
}

@media(max-width:650px){
    .about-story,
    .about-philosophy,
    .about-experience,
    .about-values,
    .about-journey{
        padding-left:22px;
        padding-right:22px;
    }

    .philosophy-grid,
    .qualification-grid,
    .values-grid{
        grid-template-columns:1fr;
    }

    .about-story-image,
    .about-journey-image{
        min-height:380px;
    }

    .values-grid article{
        text-align:left;
    }

    .value-icon{
        margin-left:0;
    }
}


/* =========================================================
   ABOUT PAGE — EDUCATION & QUALIFICATIONS UPGRADE
   ========================================================= */

.five-pillars{
    grid-template-columns:repeat(5,minmax(0,1fr));
}

.education-section{
    padding:110px min(7vw,110px);
    background:var(--sand);
}

.education-heading{
    max-width:850px;
    margin:0 auto 54px;
    text-align:center;
}

.education-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

.education-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
    max-width:1180px;
    margin:0 auto;
}

.education-card{
    padding:42px;
    border-radius:26px;
    background:linear-gradient(145deg,#ffffff,var(--sky));
    box-shadow:0 20px 44px rgba(23,56,77,.10);
}

.education-card:nth-child(2){
    background:linear-gradient(145deg,#ffffff,#edf5ef);
}

.education-icon{
    width:68px;
    height:68px;
    margin-bottom:26px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--navy);
    font-size:30px;
}

.education-card:nth-child(2) .education-icon{
    background:#6f9a80;
}

.education-label{
    margin-bottom:12px;
    font-size:12px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#5d92aa;
}

.education-card h3{
    margin-bottom:18px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(36px,3.4vw,50px);
    line-height:1.05;
    color:var(--navy);
}

.education-card>p:last-child{
    font-size:15px;
    line-height:1.8;
    color:#596970;
}

.professional-qualifications{
    padding:110px min(7vw,110px);
    background:var(--white);
}

.professional-heading{
    max-width:850px;
    margin:0 auto 54px;
    text-align:center;
}

.professional-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

.professional-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:18px;
}

.professional-grid article{
    min-height:285px;
    padding:28px 24px;
    border-radius:22px;
    border:1px solid rgba(23,56,77,.10);
    background:#fbfcfc;
}

.qualification-badge{
    width:64px;
    height:64px;
    margin-bottom:24px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--navy);
    color:var(--white);
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:23px;
    font-weight:700;
}

.professional-grid article:nth-child(even) .qualification-badge{
    background:#6f9a80;
}

.professional-grid h3{
    margin-bottom:10px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:27px;
    line-height:1.05;
    color:var(--navy);
}

.professional-grid p{
    font-size:13px;
    line-height:1.7;
    color:#5e6d74;
}

.expertise-section{
    padding:105px min(7vw,110px);
    background:var(--sky);
}

.expertise-heading{
    max-width:820px;
    margin:0 auto 46px;
    text-align:center;
}

.expertise-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(50px,5vw,72px);
    line-height:1;
    color:var(--navy);
}

.expertise-tags{
    max-width:1180px;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.expertise-tags span{
    padding:13px 20px;
    border-radius:999px;
    background:rgba(255,255,255,.86);
    border:1px solid rgba(23,56,77,.10);
    color:var(--navy);
    font-size:14px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(23,56,77,.05);
}

.trusted-experience{
    padding:52px min(7vw,110px);
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    background:var(--navy);
}

.trusted-card{
    padding:26px 18px;
    text-align:center;
    border-right:1px solid rgba(255,255,255,.16);
}

.trusted-card:last-child{
    border-right:0;
}

.trusted-card strong{
    display:block;
    margin-bottom:8px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:52px;
    line-height:1;
    color:var(--white);
}

.trusted-card span{
    font-size:13px;
    letter-spacing:.8px;
    color:rgba(255,255,255,.78);
}

.why-choose-section{
    padding:110px min(7vw,110px);
    background:var(--sand);
}

.why-choose-heading{
    max-width:820px;
    margin:0 auto 54px;
    text-align:center;
}

.why-choose-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

.why-choose-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
}

.why-choose-grid article{
    padding:32px 28px;
    border-radius:24px;
    background:var(--white);
    text-align:center;
    box-shadow:0 16px 36px rgba(23,56,77,.08);
}

.why-icon{
    width:62px;
    height:62px;
    margin:0 auto 22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--ocean);
    color:var(--white);
    font-size:27px;
}

.why-choose-grid article:nth-child(even) .why-icon{
    background:var(--sage);
}

.why-choose-grid h3{
    margin-bottom:11px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:31px;
    color:var(--navy);
}

.why-choose-grid p{
    font-size:14px;
    line-height:1.7;
    color:#5e6d74;
}

.five-steps article{
    padding:18px 0;
}

@media(max-width:1200px){
    .five-pillars{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }

    .professional-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media(max-width:900px){
    .education-grid{
        grid-template-columns:1fr;
    }

    .why-choose-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .trusted-experience{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .trusted-card:nth-child(2){
        border-right:0;
    }
}

@media(max-width:650px){
    .education-section,
    .professional-qualifications,
    .expertise-section,
    .why-choose-section{
        padding-left:22px;
        padding-right:22px;
    }

    .five-pillars,
    .professional-grid,
    .why-choose-grid,
    .trusted-experience{
        grid-template-columns:1fr;
    }

    .education-card{
        padding:30px 24px;
    }

    .trusted-card{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.16);
    }

    .trusted-card:last-child{
        border-bottom:0;
    }

    .why-choose-grid article{
        text-align:left;
    }

    .why-icon{
        margin-left:0;
    }
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page-background{
    background-image:url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1900&q=88");
    background-position:center 48%;
}

.contact-main{
    padding:110px min(7vw,110px);
    display:grid;
    grid-template-columns:minmax(340px,.85fr) minmax(0,1.15fr);
    gap:80px;
    align-items:start;
    background:var(--sand);
}

.contact-copy h2,
.form-heading h2{
    margin-bottom:22px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(50px,5vw,72px);
    line-height:1;
    color:var(--navy);
}

.contact-copy>p:not(.section-kicker){
    max-width:570px;
    margin-bottom:34px;
    font-size:17px;
    line-height:1.8;
    color:#53636b;
}

.contact-details{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    margin-bottom:24px;
}

.contact-details article{
    display:grid;
    grid-template-columns:48px minmax(0,1fr);
    gap:14px;
    padding:20px;
    border-radius:18px;
    background:rgba(255,255,255,.76);
    border:1px solid rgba(23,56,77,.08);
}

.contact-detail-icon{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--navy);
    color:var(--white);
    font-size:20px;
}

.contact-details h3{
    margin-bottom:5px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:24px;
    color:var(--navy);
}

.contact-details p{
    min-width:0;
    max-width:100%;
    font-size:13px;
    line-height:1.5;
    color:#5b6970;
    overflow-wrap:anywhere;
    word-break:break-word;
}

.contact-note{
    padding:22px 24px;
    border-radius:18px;
    background:var(--sky);
    border-left:4px solid var(--gold);
}

.contact-note strong{
    display:block;
    margin-bottom:7px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:25px;
    color:var(--navy);
}

.contact-note p{
    font-size:13px;
    line-height:1.7;
    color:#586970;
}

.contact-form{
    padding:38px;
    border-radius:28px;
    background:var(--white);
    box-shadow:0 22px 50px rgba(23,56,77,.12);
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.form-grid label{
    display:grid;
    gap:8px;
}

.form-grid label>span{
    font-size:13px;
    font-weight:700;
    color:var(--navy);
}

.form-full{
    grid-column:1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    border:1px solid rgba(23,56,77,.16);
    border-radius:14px;
    background:#fbfcfc;
    color:var(--ink);
    font-family:"Inter",Arial,sans-serif;
    font-size:15px;
    outline:none;
    transition:border-color .2s ease,box-shadow .2s ease;
}

.contact-form input,
.contact-form select{
    min-height:52px;
    padding:0 15px;
}

.contact-form textarea{
    padding:15px;
    resize:vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:var(--ocean);
    box-shadow:0 0 0 4px rgba(124,191,216,.16);
}

.checkbox-field{
    grid-template-columns:22px 1fr;
    align-items:start;
}

.checkbox-field input{
    width:18px;
    min-height:18px;
    margin-top:2px;
}

.checkbox-field span{
    font-weight:500!important;
    line-height:1.6;
    color:#5d6970!important;
}

.form-submit{
    margin-top:24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    min-width:220px;
    padding:17px 26px;
    border:0;
    border-radius:999px;
    background:var(--navy);
    color:var(--white);
    font-family:"Inter",Arial,sans-serif;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:transform .25s ease;
}

.form-submit:hover{
    transform:translateY(-2px);
}

.form-disclaimer{
    margin-top:18px;
    font-size:12px;
    line-height:1.6;
    color:#748087;
}

.contact-expectations{
    padding:105px min(7vw,110px);
    background:var(--white);
}

.contact-expectations-heading{
    max-width:760px;
    margin:0 auto 52px;
    text-align:center;
}

.contact-expectations-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

.expectation-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.expectation-grid article{
    padding:32px 28px;
    border-radius:22px;
    background:linear-gradient(145deg,var(--sky),#ffffff);
    box-shadow:0 16px 36px rgba(23,56,77,.08);
}

.expectation-grid article:nth-child(2){
    background:linear-gradient(145deg,#edf5ef,#ffffff);
}

.expectation-grid span{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:30px;
    color:var(--gold);
}

.expectation-grid h3{
    margin:30px 0 11px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:31px;
    color:var(--navy);
}

.expectation-grid p{
    font-size:14px;
    line-height:1.7;
    color:#5e6d74;
}

.contact-service-area{
    padding:110px min(7vw,110px);
    display:grid;
    grid-template-columns:minmax(360px,.9fr) minmax(0,1.1fr);
    gap:80px;
    align-items:center;
    background:var(--sky);
}

.contact-service-area-copy h2{
    margin-bottom:24px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(50px,5vw,72px);
    line-height:1;
    color:var(--navy);
}

.contact-service-area-copy>p:not(.section-kicker){
    margin-bottom:26px;
    font-size:17px;
    line-height:1.8;
    color:#53636b;
}

.contact-service-area-image{
    min-height:570px;
    border-radius:30px;
    background:
        linear-gradient(180deg,rgba(16,49,68,.04),rgba(16,49,68,.14)),
        url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1400&q=88")
        center/cover no-repeat;
    box-shadow:0 24px 55px rgba(23,56,77,.14);
}

.contact-faq{
    padding:105px min(7vw,110px);
    display:grid;
    grid-template-columns:minmax(300px,.8fr) minmax(0,1.2fr);
    gap:85px;
    background:var(--sand);
}

.contact-faq-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(50px,5vw,72px);
    line-height:1;
    color:var(--navy);
}

@media(max-width:980px){
    .contact-main,
    .contact-service-area,
    .contact-faq{
        grid-template-columns:1fr;
        gap:44px;
    }

    .contact-service-area-image{
        min-height:500px;
    }
}

@media(max-width:720px){
    .contact-main,
    .contact-expectations,
    .contact-service-area,
    .contact-faq{
        padding-left:22px;
        padding-right:22px;
    }

    .contact-details,
    .form-grid,
    .expectation-grid{
        grid-template-columns:1fr;
    }

    .form-full{
        grid-column:auto;
    }

    .contact-form{
        padding:28px 22px;
    }

    .contact-service-area-image{
        min-height:360px;
    }
}


/* =========================================================
   BOOKING PAGE
   ========================================================= */

.booking-page-background{
    background-image:url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1900&q=88");
    background-position:center 45%;
}

.booking-intro{
    padding:100px min(8vw,130px);
    display:grid;
    grid-template-columns:minmax(320px,.9fr) minmax(0,1fr);
    gap:85px;
    align-items:end;
    background:var(--sand);
}

.booking-intro h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

.booking-intro>p{
    font-size:18px;
    line-height:1.8;
    color:#53636b;
}

.booking-layout{
    padding:105px min(7vw,110px);
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(390px,.95fr);
    gap:65px;
    align-items:start;
    background:var(--white);
}

.booking-options h2{
    margin-bottom:35px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(50px,5vw,72px);
    line-height:1;
    color:var(--navy);
}

.booking-option-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.booking-option-grid article{
    min-height:220px;
    padding:26px 24px;
    border-radius:22px;
    background:linear-gradient(145deg,var(--sky),#ffffff);
    box-shadow:0 14px 32px rgba(23,56,77,.08);
}

.booking-option-grid article:nth-child(even){
    background:linear-gradient(145deg,#edf5ef,#ffffff);
}

.booking-option-grid span{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:26px;
    color:var(--gold);
}

.booking-option-grid h3{
    margin:24px 0 10px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:29px;
    color:var(--navy);
}

.booking-option-grid p{
    font-size:14px;
    line-height:1.7;
    color:#5d6c74;
}

.booking-form{
    position:sticky;
    top:25px;
    padding:36px;
    border-radius:28px;
    background:var(--sand);
    box-shadow:0 22px 50px rgba(23,56,77,.12);
}

.booking-form .form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.booking-form label{
    display:grid;
    gap:8px;
}

.booking-form label>span{
    font-size:13px;
    font-weight:700;
    color:var(--navy);
}

.booking-form input,
.booking-form select,
.booking-form textarea{
    width:100%;
    border:1px solid rgba(23,56,77,.16);
    border-radius:14px;
    background:var(--white);
    color:var(--ink);
    font-family:"Inter",Arial,sans-serif;
    font-size:15px;
    outline:none;
}

.booking-form input,
.booking-form select{
    min-height:52px;
    padding:0 15px;
}

.booking-form textarea{
    padding:15px;
    resize:vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus{
    border-color:var(--ocean);
    box-shadow:0 0 0 4px rgba(124,191,216,.16);
}

.booking-steps{
    padding:105px min(7vw,110px);
    background:var(--sky);
}

.booking-steps-heading{
    max-width:780px;
    margin:0 auto 52px;
    text-align:center;
}

.booking-steps-heading h2{
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:clamp(52px,5vw,76px);
    line-height:1;
    color:var(--navy);
}

@media(max-width:980px){
    .booking-intro,
    .booking-layout{
        grid-template-columns:1fr;
        gap:42px;
    }

    .booking-form{
        position:static;
    }
}

@media(max-width:650px){
    .booking-intro,
    .booking-layout,
    .booking-steps{
        padding-left:22px;
        padding-right:22px;
    }

    .booking-option-grid,
    .booking-form .form-grid{
        grid-template-columns:1fr;
    }

    .booking-form{
        padding:28px 22px;
    }
}


/* =========================================================
   FINAL SITE POLISH
   ========================================================= */

.reveal-section{
    opacity:0;
    transform:translateY(34px);
    transition:opacity .75s ease,transform .75s ease;
}

.reveal-section.is-visible{
    opacity:1;
    transform:translateY(0);
}

.premium-footer{
    padding:72px min(7vw,110px) 24px;
    display:block;
    background:#102f42;
    color:rgba(255,255,255,.82);
}

.footer-grid{
    display:grid;
    grid-template-columns:minmax(280px,1.25fr) .65fr .8fr minmax(260px,1fr);
    gap:52px;
    padding-bottom:54px;
    border-bottom:1px solid rgba(255,255,255,.13);
}

.footer-logo{
    display:block;
    width:min(100%,340px);
    margin-bottom:22px;
    padding:12px 16px;
    border-radius:18px;
    background:rgba(255,255,255,.96);
}

.footer-logo img{
    width:100%;
    height:auto;
}

.footer-brand>p{
    max-width:430px;
    margin-bottom:22px;
    font-size:14px;
    line-height:1.75;
    color:rgba(255,255,255,.72);
}

.footer-contact{
    display:grid;
    gap:8px;
}

.footer-contact a{
    width:max-content;
    max-width:100%;
    color:var(--white);
    text-decoration:none;
    font-weight:600;
    overflow-wrap:anywhere;
}

.footer-column{
    display:grid;
    align-content:start;
    gap:12px;
}

.footer-column h3,
.footer-booking h3{
    margin-bottom:8px;
    font-family:"Cormorant Garamond",Georgia,serif;
    font-size:28px;
    line-height:1.05;
    color:var(--white);
}

.footer-column a{
    width:max-content;
    color:rgba(255,255,255,.72);
    text-decoration:none;
    font-size:14px;
    transition:color .2s ease;
}

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

.footer-kicker{
    margin-bottom:12px;
    color:var(--gold);
    font-size:11px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.footer-booking h3{
    max-width:320px;
    margin-bottom:22px;
    font-size:34px;
}

.footer-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    padding:15px 22px;
    border-radius:999px;
    background:var(--sky);
    color:var(--navy);
    text-decoration:none;
    font-size:14px;
    font-weight:700;
}

.footer-bottom{
    padding-top:24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span{
    font-size:12px;
    color:rgba(255,255,255,.60);
}

.footer-bottom-links{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.footer-bottom a{
    text-decoration:none;
}

.back-to-top{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:100;
    width:48px;
    height:48px;
    border:0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--navy);
    color:var(--white);
    font-size:20px;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(8,29,43,.22);
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:.25s ease;
}

.back-to-top.visible{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

@media(max-width:1050px){
    .footer-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:650px){
    .premium-footer{
        padding:60px 22px 22px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:36px;
    }

    .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
    }

    .back-to-top{
        right:16px;
        bottom:16px;
    }
}

@media(prefers-reduced-motion:reduce){
    .reveal-section,
    .back-to-top{
        transition:none;
    }
}
