html{
    scroll-behavior: smooth;
}

/* ==========================
   RESET
========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#F8F6F2;
    color:#2d2d2d;
    line-height:1.7;
}

/* ==========================
   COMMON
========================== */

.container{
    width:min(1180px,92%);
    margin:auto;
}

section{
    padding:100px 0;
}

h1,h2,h3{
    font-family:'Playfair Display',serif;
    font-weight:700;
}

.button{
    display:inline-block;
    padding:16px 36px;
    background:#B58B35;
    color:#fff;
    text-decoration:none;
    border-radius:20px;
    font-weight:600;
    transition:.3s;
    transition:all .3s ease;
}

.button:hover{
    background:#9B7429;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

/* ==========================
   HEADER
========================== */

header{
    position:relative;
    top:0;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    z-index:1000;
    border-bottom:1px solid rgba(0,0,0,.06);
    box-shadow:0 8px 30px rgba(0,0,0,.04);
}

.navigation{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    height:88px;
}

nav{
    margin-right:20px;
}

.logo{
    position:absolute;
   top:-45px;
    left:20px;
}

.logo img{
    height:275px;  
    width:auto;
    display:block;
}

.logo img:hover{

    transform:scale(1.02);

}

.logo a{

    text-decoration:none;
    color:inherit;

}

.logo a:hover{

    color:#B58B35;

}

nav ul{
    list-style:none;
    display:flex;
    gap:42px;
    align-items:center;
}

nav a{

    text-decoration:none;
    color:#2d2d2d;
    font-weight:500;
    font-size:15px;
    letter-spacing:.2px;
    transition:all .25s ease;

}

nav a:hover{

    color:#B58B35;

}

nav a:hover{
    color:#B58B35;
}

nav a.active{

    color:#B58B35;
    font-weight:600;
    position:relative;

}

nav a.active::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:2px;
    background:#B58B35;

}

/* Hide hamburger on desktop */
.menu-toggle{
    display:none;
}

.mobile-header{
    display:none;
}

/* ==========================
   HERO
========================== */

.hero{
    padding:75px 0 130px;
    min-height:calc(100vh - 78px);
    display:flex;
    align-items:center;
}

.hero-grid{
    display:grid;
    grid-template-columns:50% 50%;
    align-items:center;
    gap:0;
}

.hero-role{
    color:#B58B35;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:17px;
    line-height:1.6;
    margin-bottom:4px;
}

.hero-subrole{
    color:#B58B35;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:17px;
    line-height:1.6;
    margin-bottom:24px;
}

.hero h1{
    font-size:75px;
    line-height:1.08;
    letter-spacing:-1.5px;
    max-width:650px;
    margin:0 0 34px;
}

.hero-text{
    font-size:24px;
    line-height:1.75;
    color:#555;
    max-width:540px;
    margin-bottom:38px;
}

.hero-image{
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
}

.hero-image img{
    width:520px;
    height:700px;
    object-fit:cover;
    object-position:center top;
    border-radius:0;
    display:block;
}

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

/* ==========================
   HOW I CREATE IMPACT
========================== */

.impact{
    background:#F8F6F2;
    padding:90px 0;
}

.impact h2{
    font-family:'Playfair Display', serif;
    font-size:54px;
    line-height:1.08;
    letter-spacing:-1px;
    max-width:850px;
    margin:0 auto 28px;
    text-align:center;
}

.impact-intro{
    max-width:760px;
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin:0 auto 55px;
    text-align:center;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.impact-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    border:1px solid #ECE5D8;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
    transition:all .3s ease;
}

.impact-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 35px rgba(0,0,0,.10);
}

.impact-card h3{
    font-size:28px;
    margin-bottom:14px;
    color:#1F1F1F;
}

.impact-card p{
    font-size:16px;
    line-height:1.75;
    color:#666;
}

/* ==========================
   MY JOURNEY
========================== */

.journey{
    background:#F8F6F2;
    padding:100px 0;
}

.journey-content{
    max-width:760px;
    margin:auto;
}

.journey h2{
    font-family:'Playfair Display', serif;
    font-size:54px;
    line-height:1.08;
    letter-spacing:-1px;
    max-width:780px;
    margin-bottom:30px;
}

.journey p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:24px;
}

.journey blockquote{
    font-family:'Playfair Display', serif;
    font-size:38px;
    line-height:1.35;
    color:#1F1F1F;
    margin:55px 0 45px;
    padding-left:35px;
    border-left:3px solid #B58B35;
    font-style:italic;
}

.journey .button{
    margin-top:25px;
}

/* ==========================
   UPCOMING WORKSHOPS
========================== */

.workshops{
    background:#F3F0EA;
    padding:100px 0;
    text-align:center;
}

.workshops h2{
    font-family:'Playfair Display', serif;
    font-size:54px;
    line-height:1.08;
    letter-spacing:-1px;
    max-width:850px;
    margin:0 auto 55px;
}

.workshop-empty{

    max-width:820px;
    margin:auto;

    background:#ffffff;

    padding:70px;

    border-radius:24px;

    border:1px solid #ECE5D8;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

/* ==========================
   WORKSHOP CARDS
========================== */

.workshop-list{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.workshop-card{
    background:#ffffff;
    border:1px solid #ECE5D8;
    border-radius:24px;
    padding:45px 50px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.workshop-card h3{
    font-family:'Playfair Display',serif;
    font-size:32px;
    color:#1F1F1F;
    margin:0 0 18px;
}

.workshop-card p{
    font-size:17px;
    line-height:1.7;
    color:#555;
    margin:8px 0;
}

.workshop-card .gold-button{
    display:inline-block;
    margin-top:22px;
}

@media (max-width:768px){

    .workshop-card{
        padding:35px 25px;
    }

    .workshop-card h3{
        font-size:27px;
    }

    .workshop-card p{
        font-size:16px;
    }

}

.workshop-empty h3{

    font-size:34px;
    margin-bottom:25px;
    color:#1F1F1F;

}

.workshop-empty p{

    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:22px;

}

.workshop-empty .button{

    margin-top:18px;

}

/* ==========================
   CONVERSATIONS FROM THE DRIVER'S SEAT
========================== */

.drivers-seat{

    background:#1B1B1B;

    color:#ffffff;

    padding:110px 0;

    text-align:center;

}

.drivers-seat .section-label{

    color:#C49A3A;

}

.drivers-seat h2{

    font-family:'Playfair Display', serif;

    font-size:56px;

    line-height:1.12;

    letter-spacing:-1px;

    max-width:920px;

    margin:0 auto 35px;

    color:#ffffff;

}

.drivers-intro{

    max-width:820px;

    margin:0 auto 70px;

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,.78);

}

.video-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-bottom:60px;

}

.video-card{

    background:#262626;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    text-align:left;

}

.video-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.35);

}

.video-thumb{

    aspect-ratio:16/9;

    background:#3A3A3A;

}

.video-card h3{

    padding:28px 28px 12px;

    color:#fff;

    font-size:24px;

    line-height:1.35;

}

.video-card a{

    display:inline-block;

    padding:0 28px 30px;

    color:#C49A3A;

    text-decoration:none;

    font-weight:600;

}

.drivers-seat .button{

    margin-top:10px;

}

/* ==========================
   INSIGHTS
========================== */

.insights{
    background:#F8F6F2;
    padding:100px 0;
    text-align:center;
}

.insights .container{
    max-width:1200px;
}

.insights h2{
    font-family:'Playfair Display', serif;
    font-size:54px;
    line-height:1.08;
    letter-spacing:-1px;
    max-width:760px;
    margin:0 auto 30px;
}

.insights-intro{
    max-width:780px;
    margin:0 auto 65px;
    font-size:18px;
    line-height:1.9;
    color:#666;
}

.insights-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.insight-card{

    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    text-align:left;

    border:1px solid #ECE5D8;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.35s;

    display:flex;
    flex-direction:column;

}

.insight-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.insight-image{

    aspect-ratio:16/9;

    background:#D9D9D9;

}

.insight-card h3{

    font-size:24px;

    line-height:1.35;

    margin:28px 28px 16px;

    color:#1F1F1F;

}

.insight-card p{

    font-size:16px;

    line-height:1.75;

    color:#666;

    margin:0 28px 24px;

}

.insight-card a{

    display:inline-block;

    margin:0 28px 30px;

    text-decoration:none;

    color:#B58B35;

    font-weight:600;

}

.section-button{

    margin-top:60px;
    text-align:center;

}

.section-button .button{

    display:inline-block;

}

/* ==========================
   CREDIBILITY
========================== */

.credibility{
    background:#ffffff;
    padding:140px 0;
}

.credibility .container{
    width:min(1200px,92%);
}

.credibility h2{
font-size:50px;
line-height:1.2;
margin-bottom:30px;
}

.credibility-text{
    max-width:760px;
    font-size:20px;
    color:#666;
    margin-bottom:80px;
}

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

.stat-card{
    background:#F8F6F2;
    border-radius:20px;
    padding:60px 30px;
    text-align:center;
    transition:.3s;
    min-height:220px;
}

.stat-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stat-card h3{
    font-size:80px;
    line-height:0.95;
    font-weight:700;
    margin-bottom:20px;
}

.stat-card p{
    font-size:16px;
    line-height:1.6;
    color:#5B5B5B;
}

/* ==========================
   TESTIMONIALS
========================== */

.testimonials{
    background:#F8F6F2;
}

.testimonials .testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    align-items:stretch;
    margin-top:50px;
}

.testimonials .testimonial-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:360px;
    padding:38px 36px;
    background:#ffffff;
    border:1px solid rgba(181,139,53,.10);
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
    text-decoration:none;
    color:inherit;
    overflow:hidden;
    transition:transform .3s ease,box-shadow .3s ease;
}

.testimonials .testimonial-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 35px rgba(0,0,0,.07);
}

.testimonials .testimonial-card::after{
    content:"“";
    position:absolute;
    right:20px;
    bottom:-28px;
    font-family:"Playfair Display",serif;
    font-size:170px;
    line-height:1;
    color:rgba(181,139,53,.07);
    pointer-events:none;
}

.testimonials .stars{
    position:relative;
    z-index:1;
    color:#B58B35;
    font-size:17px;
    letter-spacing:2px;
    margin:0 0 24px;
}

.testimonials .testimonial-text{
    position:relative;
    z-index:1;
    font-family:"Playfair Display",serif;
    font-size:20px;
    line-height:1.7;
    color:#3F3F3F;
    margin:0 0 30px;
    font-style:italic;
}

.testimonials .testimonial-card h4{
    position:relative;
    z-index:1;
    margin-top:auto;
    margin-bottom:6px;
    font-size:18px;
    font-weight:600;
    color:#222;
}

.testimonials .testimonial-card span{
    position:relative;
    z-index:1;
    color:#777;
    font-size:14px;
    line-height:1.5;
}


/* READ ALL TESTIMONIALS */

.testimonials .testimonial-more{
    justify-content:center;
    align-items:center;
    text-align:center;
    background:#B58B35;
    border-color:#B58B35;
    color:#ffffff;
}

.testimonials .testimonial-more:hover{
    background:#9B7429;
    border-color:#9B7429;
}

.testimonials .testimonial-more::after{
    color:rgba(255,255,255,.08);
}

.testimonials .testimonial-more-content{
    position:relative;
    z-index:1;
    width:100%;
}

.testimonials .testimonial-more h3{
    font-family:"Playfair Display",serif;
    font-size:28px;
    color:#ffffff;
    margin:0 0 16px;
}

.testimonials .testimonial-more p{
    max-width:260px;
    margin:0 auto 25px;
    color:rgba(255,255,255,.88);
    font-size:16px;
    line-height:1.7;
}

.testimonials .testimonial-more span{
    color:#ffffff;
    font-size:15px;
    font-weight:600;
}


/* TESTIMONIALS PAGE */

.testimonials-page{
    background:#F8F6F2;
    min-height:100vh;
    padding:100px 0;
}

.testimonials-page h1{
    font-family:"Playfair Display",serif;
    font-size:56px;
    line-height:1.2;
    text-align:center;
    margin-bottom:20px;
    color:#2B2B2B;
}

.testimonials-page .testimonials-intro{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
    font-size:20px;
    line-height:1.7;
    color:#666;
}

.testimonials-page .testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonials-page .testimonial-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-height:360px;
    padding:38px;
    background:#ffffff;
    border-radius:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
    overflow:hidden;
}

.testimonials-page .stars{
    position:relative;
    z-index:1;
    color:#B58B35;
    font-size:20px;
    letter-spacing:2px;
    margin-bottom:20px;
    text-align:center;
}

.testimonials-page .testimonial-text{
    position:relative;
    z-index:1;
    font-family:"Playfair Display",serif;
    font-size:18px;
    line-height:1.7;
    color:#444;
    margin-bottom:30px;
    font-style:italic;
    text-align:center;
}

.testimonials-page .testimonial-card h4{
    position:relative;
    z-index:1;
    font-family:"Inter",sans-serif;
    font-size:20px;
    margin-top:auto;
    margin-bottom:6px;
    text-align:center;
    color:#2B2B2B;
}

.testimonials-page .testimonial-card > span{
    position:relative;
    z-index:1;
    color:#777;
    font-size:14px;
    line-height:1.5;
    text-align:center;
}


/* TESTIMONIALS RESPONSIVE */

@media (max-width:992px){

    .testimonials .testimonial-grid,
    .testimonials-page .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .testimonials .testimonial-grid,
    .testimonials-page .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonials .testimonial-card,
    .testimonials-page .testimonial-card{
        min-height:320px;
        padding:30px 26px;
    }

    .testimonials-page h1{
        font-size:42px;
    }

    .testimonials-page .testimonials-intro{
        font-size:18px;
    }

}

/* ==========================
   FEATURED IN
========================== */

.featured{

    background:#F8F6F2;

}

.featured .container{

    max-width:1000px;

}

.featured h2{

  font-size:50px;
line-height:1.2;
margin-bottom:30px;

}

.featured-card{

    display:flex;
    align-items:center;
    gap:50px;

    background:#fff;
    border-radius:20px;
    padding:45px;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

}

.featured-logo{

    min-width:220px;
    font-size:34px;
    font-weight:700;
    color:#B58B35;
    text-align:center;

}

.featured-content h3{

    font-size:30px;
    margin-bottom:18px;

}

.featured-content p{

    font-size:18px;
    color:#666;
    margin-bottom:24px;

}

.featured-content a{

    color:#B58B35;
    text-decoration:none;
    font-weight:600;

}



/* ==========================
   UPCOMING LEARNING
========================== */

.upcoming{

    background:#F8F6F2;
    text-align:center;

}

.upcoming .container{

    max-width:900px;

}

.upcoming h2{

   font-size:50px;
line-height:1.2;
margin-bottom:30px;

}

.upcoming-text{

    font-size:20px;
    color:#666;
    margin-bottom:24px;

}

.upcoming .button{

    margin-top:30px;

}





/* ==========================
   CONNECT
========================== */

#connect{
    background:#0f0f0f;
    color:#fff;
    padding:70px 0 20px;
}

.footer-main{
    display:grid;
    grid-template-columns:1fr auto;
    justify-content:space-between;
    align-items:start;
    margin-bottom:45px;
}

.footer-left h2{
    font-size:2.5rem;
    font-weight:300;
    margin-bottom:20px;
}

.footer-left p{
    color:rgba(255,255,255,.72);
    line-height:1.8;
    max-width:520px;
}

.footer-right{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
}

.footer-right a,
.footer-right span{
    color:#B58B35;
    text-decoration:none;
    font-size:1.05rem;
    transition:.3s;
}

.footer-right a:hover{
    color:#B58B35;
}

.footer-location{
    color:#B58B35;
    opacity:.8;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:35px;
    margin-bottom:25px;
}

.footer-social a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    font-size:.9rem;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.footer-right a:hover{
    opacity:.75;
}

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:18px;
    color:rgba(255,255,255,.45);
    font-size:.85rem;
}

/* ==========================
   FOR INDIVIDUALS
========================== */

.individuals{
    background:#ffffff;
}

.individuals .container{
    max-width:1000px;
}

.individuals h2{
    font-size:50px;
    line-height:1.2;
    max-width:850px;
    margin:0 auto 30px;
    text-align:center;
}

.individuals-intro{
    font-size:20px;
    line-height:1.8;
    color:#666;
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.individual-card{
    background:#F8F6F2;
    border-radius:20px;
    padding:60px;
    transition:.3s;
    text-align:center;
}

.individual-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.individual-card h3{
    font-size:36px;
    margin-bottom:24px;
}

.individual-card p{
    font-size:19px;
    line-height:1.8;
    color:#555;
    margin-bottom:40px;
}

/* ==========================
   AUDIENCE
========================== */

.audience{
    background:#ffffff;
    padding:120px 0;
}

.audience .container{
    max-width:1200px;
}

.audience h2{
    font-size:50px;
    line-height:1.2;
    margin-bottom:25px;
}

.audience .section-label{
    margin-bottom:20px;
}

.audience-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-top:60px;
}

.audience-item{
    background:#F8F6F2;
    padding:40px;
    border-radius:20px;
    transition:.3s;
}

.audience-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.audience-item h3{
    font-family:"Playfair Display",serif;
    font-size:30px;
    margin-bottom:18px;
    color:#222;
}

.audience-item p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin:0;
}

/* ==========================
   THE PROBLEM
========================== */

.problem{
    background:#F8F6F2;
}

.problem .container{
    max-width:1200px;
}

.problem h2{
   font-size: 44px;
max-width: 900px;
    margin-bottom:60px;
}

.problem-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.problem-card{
    background:#ffffff;
    padding:35px 40px;
    border-radius:20px;
    font-size:22px;
    line-height:1.6;
    color:#333;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.problem-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

/* ==========================
   COACHING EXPERIENCE
========================== */

.experience{
    background:#ffffff;
}

.experience .container{
    max-width:1150px;
}

.experience h2{
    font-size:46px;
    line-height:1.2;
    margin-bottom:28px;
}

.experience-intro{
    max-width:850px;
    font-size:20px;
    line-height:1.8;
    color:#666;
    margin-bottom:60px;
}

.experience-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.experience-card{
    background:#F8F6F2;
    padding:38px;
    border-radius:20px;
    transition:.3s;
}

.experience-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.experience-card h3{
    font-size:30px;
    margin-bottom:18px;
}

.experience-card p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

/* ==========================
   CTA
========================== */

.cta{
    background:#1f1f1f;
    color:#fff;
    text-align:center;
}

.cta .container{
    max-width:900px;
}

.cta h2{
    font-size:52px;
    line-height:1.2;
    margin-bottom:30px;
    color:#fff;
}

.cta-text{
    font-size:21px;
    line-height:1.9;
    color:#d4d4d4;
    margin-bottom:50px;
}

.story-section{

    background:#fff;

}

.narrow{

    max-width:950px;

}

.story-section h2{

    font-size:52px;
    line-height:1.25;
    margin-bottom:35px;

}

.story-section p{

    font-size:21px;
    line-height:1.9;
    color:#555;

}

.story-section.light{

    background:#F8F6F2;

}

/* ==========================
   Statistics
========================== */

.stat{

    padding:30px 15px;

}

.stat h2{

    font-size:72px;
    line-height:1;
    margin-bottom:18px;

}

.stat p{

    font-size:17px;
    line-height:1.5;
    max-width:180px;
    margin:0 auto;
    color:#666;

}

.stat{

    transition:.3s;

}

.stat:hover{

    transform:translateY(-6px);

}

/* ==========================
   FEATURED ARTICLE
========================== */

.featured-article{

    background:#ffffff;

}

.article-card{

    display:grid;
    grid-template-columns:42% 58%;
    gap:50px;
    align-items:center;

}

.article-image img{

    width:100%;
    border-radius:20px;
    display:block;

}

.article-category{

    color:#B58B35;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;

}

.article-content h2{

    font-size:46px;
    line-height:1.2;
    margin-bottom:25px;

}

.article-content p{

    font-size:20px;
    line-height:1.8;
    color:#666;
    margin-bottom:35px;

}

/* ==========================
   INSIGHT CATEGORIES
========================== */

.categories{

    background:#ffffff;

}

.categories-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;

}

.category-card{

    background:#F8F6F2;
    border-radius:20px;
    padding:40px;
    text-align:center;

    font-family:"Playfair Display", serif;
    font-size:30px;

    transition:.3s;

}

.category-card:hover{

    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/* ==========================
   ARTICLES
========================== */

.articles{

    background:#F8F6F2;

}

.articles h2{

    font-size:50px;
    line-height:1.2;
    margin-bottom:50px;

}

.articles-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.article-item{

    background:#ffffff;
    border-radius:20px;
    padding:40px;
    transition:.3s;

}

.article-item:hover{

    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.article-item h3{

    font-size:30px;
    margin-bottom:20px;

}

.article-item p{

    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;

}

.article-item a{

    color:#B58B35;
    text-decoration:none;
    font-weight:600;

}

/* ==========================
   MOBILE
========================== */

@media (max-width: 992px){

    .hero-grid,
    .impact-grid,
    .experience-grid,
    .problem-grid,
    .testimonial-grid,
    .articles-grid,
    .video-grid,
    .trusted-grid,
    .categories-grid,
    .stats-grid,
    .footer-grid{

        grid-template-columns:1fr;

    }

    .hero{

        padding:60px 0;

    }

    .hero-image{

        order:-1;
        text-align:center;

    }

    .hero-image img{

        max-width:380px;

    }

    .hero h1{

    font-size:36px;
    line-height:1.15;
    text-align:center;

}

    h2{

        font-size:38px !important;

    }

    nav ul{

        flex-wrap:wrap;
        justify-content:center;
        gap:18px;

    }

    .navigation{

        flex-direction:column;
        height:auto;
        padding:20px 0;

    }

    .logo{

        margin-bottom:20px;

    }

}

/*====================================================
MY PHILOSOPHY
====================================================*/

.philosophy{
    display:grid;
    grid-template-columns:50% 50%;
    min-height:640px;
    background:#F8F6F2;
}

.philosophy-left{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding:45px 55px 20px;
}

.philosophy-content{
    max-width:560px;
}

.section-tag{
    display:block;
    font-size:15px;
    letter-spacing:4px;
    color:#B58B35;
    text-transform:uppercase;
    margin-bottom:18px;
    font-weight:600;
}

.gold-line{
    width:55px;
    height:2px;
    background:#B58B35;
    margin-bottom:25px;
}

.philosophy h2{
    font-family:'Playfair Display', serif;
    font-size:54px;
    line-height:0.95;
    letter-spacing:-1px;
    font-weight:600;
    margin-bottom:22px;
    color:#1f1f1f;
}

.philosophy h2 span{
    display:block;
    margin-top:8px;
    color:#B58B35;
    font-style:italic;
    font-weight:500;
}

.philosophy-content>p{
    font-size:16px;
    line-height:1.75;
    color:#666;
    margin-bottom:28px;
    max-width:500px;
}

.philosophy-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.feature{
    text-align:center;
    padding:0 8px;
}

.feature-icon{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#EFE4CF;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 12px;
    font-size:22px;
}

.feature h3{
    font-size:16px;
    margin-bottom:6px;
}

.feature p{
    font-size:13px;
    line-height:1.5;
    color:#666;
}

.philosophy-right{
    position:relative;
    overflow:hidden;
}

.philosophy-right img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 10%;
    display:block;
}

.quote-box{
    position:absolute;
    right:28px;
    bottom:28px;
    width:320px;
    background:#1F1F1F;
    color:#fff;
    padding:28px;
    border-radius:16px;
    border:2px solid #B58B35;
    box-shadow:0 18px 35px rgba(0,0,0,.28);
}

.quote-mark{
    font-size:70px;
    color:#B58B35;
    line-height:1;
}

.quote-box p{
    font-size:18px;
    line-height:1.6;
    color:#fff;
    margin:15px 0 25px;
}

.quote-box span{
    color:#B58B35;
    font-style:italic;
}

.quote-name{
    color:#B58B35;
    font-size:12px;
    letter-spacing:.5px;
}

.section-label{
    text-align:center;
    display:block;
    width:100%;
}

/* ==========================
   GLOBAL CENTRE ALIGNMENT
========================== */

.journey-content,
.featured-content,
.testimonials-content,
.audience-content,
.individuals .container{
    text-align:center;
}

.journey-content h2,
.featured-content h2,
.testimonials-content h2,
.audience-content h2,
.individuals h2{
    margin-left:auto;
    margin-right:auto;
}

.journey-content p,
.featured-content p,
.testimonials-content p,
.audience-content p,
.individuals-intro{
    margin-left:auto;
    margin-right:auto;
}

/* ======================================
   CENTRE ALL SECTION HEADINGS
====================================== */

.story-section .container,
.impact .container,
.individuals .container,
.journey .container,
.workshops .container,
.drivers-seat .container,
.insights .container,
.featured .container,
.testimonials .container,
.audience .container{
    text-align:center;
}

.story-section h2,
.impact h2,
.individuals h2,
.journey h2,
.workshops h2,
.drivers-seat h2,
.insights h2,
.featured h2,
.testimonials h2,
.audience h2{
    margin-left:auto;
    margin-right:auto;
}

.story-section p,
.impact-intro,
.individuals-intro,
.journey p,
.workshops p,
.drivers-intro,
.insights-intro,
.testimonials .section-intro{
    margin-left:auto;
    margin-right:auto;
}

.story-section p{
    text-align:center;
}

.story-section blockquote{
    text-align:center;
}

/* ==========================
   YOUTUBE VIDEOS
========================== */

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.video-card{
    display:block;
    background:#F8F6F2;
    border-radius:20px;
    overflow:hidden;
    text-decoration:none;
    color:#222;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.video-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.video-card img{
    width:100%;
    display:block;
}

.video-info{
    padding:24px;
}

.video-info h3{
    font-size:22px;
    line-height:1.4;
    color:#222;
    margin-bottom:16px;
    min-height:3.2em;
    overflow:hidden;
}

.video-info span{
    color:#B8892D;
    font-weight:600;
}

/* Hero Buttons */

.hero-buttons{
    display:flex;
    gap:18px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    margin-top:40px;
}

.button-outline{
    background:transparent;
    color:#222;
    border:1.5px solid #B58B35;
}

.button-outline:hover{
    background:#B58B35;
    color:#fff;
}

.journey-quote{
    display:block;
    width:100%;
    margin:90px auto 0;
    text-align:center;

    font-family:"Playfair Display", serif;
    font-size:46px;
    font-style:italic;
    font-weight:600;
    line-height:1.25;
    letter-spacing:-0.5px;

    color:#B58B35;
}

/*==========================
 EXPERIENCE CARDS
==========================*/

.stats-section{
    padding:70px 0 30px;
    background:transparent;
}

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

.stat-card{

    background:#F8F4EC;
    border:1px solid #E6D8BE;
    border-radius:18px;
    padding:40px 25px;
    text-align:center;
    transition:.3s ease;
}

.stat-card:hover{

    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.stat-card h2{

    font-family:"Playfair Display",serif;
    font-size:58px;
    color:#B58B35;
    margin-bottom:12px;
    line-height:1;

}

.stat-card p{

    font-size:18px;
    line-height:1.5;
    color:#444;
    font-weight:500;
    margin:0;

}

/*====================================================
  SPEAK WITHOUT FEAR CARD
====================================================*/

.individual-hero{
    position:relative;
}

.swf-card{

    max-width:980px;

    margin:-170px auto 0;

    background:#fff;

    border-radius:28px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    display:grid;

    grid-template-columns:90px 1fr 240px;

    gap:28px;

    align-items:center;

    padding:35px 40px;

    position:relative;

    z-index:10;
}

.swf-icon{

    display:flex;

    justify-content:center;

    align-items:center;

    border-right:1px solid #ddd;

    height:120px;
}

.quote-circle{

    width:58px;

    height:58px;

    border:2px solid #B8872B;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#B8872B;
}

.swf-content h2{

    font-size:32px;

    margin-bottom:12px;

    font-family:'Playfair Display', serif;

    color:#111;
}

.swf-content p{

    font-size:17px;

    line-height:1.8;

    color:#555;

    max-width:520px;
}

.swf-button{

    display:flex;

    justify-content:flex-end;

    align-items:center;
}

.gold-button{

    background:#B8872B;

    color:#fff;

    text-decoration:none;

    padding:16px 24px;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:10px;
}

.gold-button:hover{

    transform:translateY(-3px);

    background:#a87923;
}

.trusted{

    padding-top:130px;
}

.training-contact{

    margin-top:55px;

}

.training-contact h3{

    font-family:'Playfair Display', serif;

    font-size:40px;

    font-weight:700;

    color:#111;

    margin:0 0 28px;

}

.training-contact .contact-options{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.training-contact .contact-option{

    width:170px;

    height:62px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#B88A2D;

    color:#fff;

    text-decoration:none;

    border-radius:12px;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.training-contact .contact-option:hover{

    background:#9E7729;

    transform:translateY(-4px);

}

/*==========================================
TRAINING AREAS
==========================================*/

.experience-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

    margin-top:60px;

}

.experience-card{

    background:#FAF8F4;

    border:1px solid #EEE6D8;

    border-radius:18px;

    padding:26px 22px;

    min-height:200px;

    transition:.3s;

}

.experience-card:hover{

    transform:translateY(-6px);

    box-shadow:0 16px 35px rgba(0,0,0,.06);

}

.experience-card h3{

    font-family:'Playfair Display', serif;

    font-size:26px;

    line-height:1.2;

    color:#111;

    margin:0 0 14px;

}

.experience-card p{

    font-size:16px;

    line-height:1.65;

    color:#666;

    margin:0;

}

.experience .section-label{

    text-align:center;

}

.experience h2{

    text-align:center;

    max-width:900px;

    margin:0 auto 28px;

}

.experience-intro{

    max-width:850px;

    margin:0 auto 60px;

    text-align:center;

}

.mobile-header,
.mobile-menu,
.menu-overlay{

    display:none;

}

/* ==========================================
   UNIVERSAL MOBILE DESIGN SYSTEM
   (Place at the TOP of @media)
========================================== */

html{
    font-size:16px;
}

body{
    font-size:16px;
    line-height:1.65;
    -webkit-text-size-adjust:100%;
}

/* ---------- Universal Section Spacing ---------- */

section{
    padding:60px 0 !important;
}

.container{
    padding-left:24px;
    padding-right:24px;
}

/* ---------- Headings ---------- */

h1{
    font-size:2.6rem !important;
    line-height:1.15 !important;
    letter-spacing:-0.5px;
    margin-bottom:18px;
}

h2{
    font-size:2.1rem !important;
    line-height:1.2 !important;
    letter-spacing:-0.3px;
    margin-bottom:18px;
}

h3{
    font-size:1.45rem !important;
    line-height:1.3 !important;
    margin-bottom:12px;
}

.section-label{
    font-size:.78rem;
    letter-spacing:2px;
    margin-bottom:12px;
}

/* ---------- Paragraphs ---------- */

p{
    font-size:1rem !important;
    line-height:1.7 !important;
    margin-bottom:18px;
}

/* ---------- Cards ---------- */

.stat-card,
.impact-card,
.audience-item,
.featured-card{
    padding:24px !important;
    border-radius:16px;
}

/* ---------- Grid Spacing ---------- */

.stats-grid,
.impact-grid,
.audience-grid{
    gap:18px !important;
    margin-top:36px !important;
}

/* ---------- Buttons ---------- */

.button{
    padding:14px 28px;
    font-size:.95rem;
}

/* ---------- Images ---------- */

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

/* ---------- Last Paragraph ---------- */

p:last-child{
    margin-bottom:0;
}



/*==========================================
MOBILE (768px and below)
==========================================*/

@media (max-width:768px){

/* HERO */

header{
    background:#fff;
    padding:0;
}

.navigation{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:72px;
    position:relative;
}

.container.navigation{
    padding-left:20px;
    padding-right:20px;
}

.logo{
    position:static !important;
    left:auto !important;
    top:auto !important;
    display:flex;
    align-items:left;
    flex:1;
}

.logo img{
    width:190px !important;
    height:auto !important;
    max-height:60px !important;
    max-width:none !important;
    display:block;
}

.menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:48px;
    font-size:32px;
    line-height:1;
    margin-left:auto;
    color:#2d2d2d;
}

nav ul{
    display:none;
}

.hero{
    min-height:auto;
    padding:60px 0 60px;
}

.hero-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.hero-content{
    text-align:center;
    margin:0 auto;
}

.hero-role,
.hero-subrole,
.hero-text{
    text-align:center;
}

.hero-content{
    order:2;
    text-align:center;
}

.hero-image{
    order:1;
    justify-content:center;
}

.hero h1{
    font-size:48px;
    line-height:1.1;
    letter-spacing:-0.5px;
    margin:20px 0;
}

.hero-image{
    justify-content:center;
    order:2;
}

.hero-image img{
    width:100%;
    max-width:320px;
    height:auto;
    display:block;
    margin:0 auto;
}

.desktop-header{
    display:none;
}

.mobile-header{
    display:block;
    background:#fff;
    border-bottom:1px solid #eee;
    overflow:visible;
}

.mobile-navigation{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    overflow:visible;
}

.mobile-logo{
    display:flex;
    align-items:center;
    margin-left:-30px;
}

.mobile-logo img{
    width:150px;
    max-width:none;
    height:auto;
    display:block;
}

.mobile-menu-toggle{
    border:none;
    background:none;
    font-size:34px;
    line-height:1;
    cursor:pointer;
    color:#2d2d2d;
    padding:0;
}

/*==========================================
PHILOSOPHY
==========================================*/

.philosophy{
    display:flex;
    flex-direction:column;
    min-height:auto;
}

.philosophy-left{
    width:100%;
    padding:60px 28px 40px;
    order:1;
}

.philosophy-right{
    width:100%;
    height:480px;
    order:2;
}

/*==========================================
IMPACT STATS
==========================================*/
.stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.stat-card{
    padding:28px 18px;
    min-height:180px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.stat-card h2{
    font-size:38px;
}

.stat-card p{
    font-size:15px;
}

.featured-card{
    flex-direction:column;
    gap:30px;
    padding:30px 24px;
    text-align:center;
}

.featured-logo{
    min-width:100%;
}

.featured-content{
    width:100%;
}

.featured h2{
    font-size:36px;
}

.audience-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-top:40px;
}

.audience-item{
    padding:24px 18px;
}

#connect{
    padding:60px 0 20px;
}

.footer-main{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.footer-left h2{
    font-size:2.2rem;
    margin-bottom:16px;
}

.footer-left p{
    max-width:100%;
    margin:0 auto;
}

.footer-right{
    align-items:center;
    gap:14px;
}

.footer-social{
    flex-wrap:wrap;
    gap:24px;
}

.copyright{
    font-size:.8rem;
}

/* ==========================
   MOBILE MENU
========================== */

/* ==========================
   MOBILE SLIDE MENU
========================== */

.mobile-menu{

    position:fixed;

    top:76px;
    right:-100vw;

    width:100%;
    max-width:320px;

    background:#fff;

    display:flex;
    flex-direction:column;

    padding:30px;

    gap:22px;

    border-radius:0 0 0 22px;

    box-shadow:-10px 12px 35px rgba(0,0,0,.12);

    transition:right .35s ease;

    z-index:9999;

}

.mobile-menu.open{

    right:0;

}

.mobile-menu a{

    text-decoration:none;
    color:#222;

    font-size:18px;
    font-weight:500;

    padding:8px 0;

    transition:.25s;

}

.mobile-menu a:hover{

    color:#B58B35;

}
/* ==========================
   MENU OVERLAY
========================== */

.menu-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.35);

    opacity:0;
    visibility:hidden;

    transition:.3s ease;

    z-index:9998;

}

.menu-overlay.show{

    opacity:1;
    visibility:visible;

}

}

/* FLOATING HOME BUTTON */

.floating-home{
    position:fixed;
    left:24px;
    bottom:30px;
    z-index:9998;
    padding:12px 20px;
    background:#ffffff;
    color:#222;
    border:1px solid #B58B35;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.floating-workshops{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:9998;
    width:58px;
    height:210px;
    background:#B58B35;
    color:#ffffff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    writing-mode:vertical-rl;
    font-size:22px;
    font-weight:600;
    letter-spacing:2px;
    border-radius:8px 0 0 8px;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

/* ==========================
   FLOATING WORKSHOP BUTTON
========================== */

.floating-workshop{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;
}

.floating-workshop-button{
    width:64px;
    height:190px;

    border:none;
    background:#B58B35;
    color:#ffffff;

    font-family:'Inter',sans-serif;
    font-size:26px;
    font-weight:600;
    letter-spacing:1.5px;

    cursor:pointer;

    border-radius:10px 0 0 10px;

    box-shadow:0 8px 25px rgba(0,0,0,.20);

    writing-mode:vertical-rl;
    transform:rotate(180deg);

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

    transition:all .25s ease;
}

.floating-workshop-button:hover{
    width:72px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.floating-workshop-menu{
    display:none;
    position:absolute;
    right:75px;
    top:50%;
    transform:translateY(-50%);

    width:280px;

    background:#ffffff;
    border:1px solid #ECE5D8;
    border-radius:14px;

    box-shadow:0 12px 35px rgba(0,0,0,.15);

    overflow:hidden;
}

.floating-workshop-menu.show{
    display:block;
}

.floating-workshop-item{
    display:block;
    padding:18px 20px;
    text-decoration:none;
    border-bottom:1px solid #eee8dd;
}

.floating-workshop-item:last-child{
    border-bottom:none;
}

.floating-workshop-item strong{
    display:block;
    font-family:'Playfair Display',serif;
    font-size:17px;
    color:#1F1F1F;
    margin-bottom:6px;
}

.floating-workshop-item span{
    display:block;
    font-family:'Inter',sans-serif;
    font-size:12px;
    color:#666;
}

.floating-workshop-item:hover{
    background:#FAF7F1;
}

@media (max-width:768px){

    .floating-workshop-button{
        width:52px;
        height:150px;
        font-size:13px;
    }

    .floating-workshop-menu{
        right:62px;
        width:250px;
    }

}

/* ==========================================
   FLOATING WORKSHOPS BUTTON
========================================== */

.floating-workshops {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);

    width: 68px;
    height: 202px;

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

    background: #B58B35;
    color: #ffffff;

    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;

    text-decoration: none;

    writing-mode: vertical-rl;
    text-orientation: mixed;

    border-radius: 10px 0 0 10px;

    box-shadow: 0 6px 20px rgba(0,0,0,.12);

    z-index: 9999;

    transition: all .25s ease;
}

.floating-workshops:hover {
    background: #A67C2F;
    color: #ffffff;
}