/*
Theme Name: Rajkumar Badole Official
Theme URI: https://rajkumarbadole.in/
Author: JB Digital
Description: Official WordPress theme for Rajkumar Badole
Version: 1.7.0
Text Domain: rajkumar-badole
*/

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

:root{
    --navy:#102d4a;
    --navy-dark:#071b2e;
    --navy-light:#173f65;
    --green:#168b3a;
    --green-dark:#0f7130;
    --orange:#f36c21;
    --orange-light:#ff9a5b;
    --white:#ffffff;
    --off-white:#f8fafc;
    --light:#f1f5f9;
    --border:#e2e8f0;
    --text:#334155;
    --muted:#64748b;
    --shadow:0 15px 40px rgba(15,45,74,.10);
    --radius:20px;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    background:#fff;
    color:var(--text);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Noto Sans Devanagari",
        "Nirmala UI",
        Arial,
        sans-serif;
    font-size:16px;
    line-height:1.7;
    overflow-x:hidden;
}

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

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

button{
    cursor:pointer;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin-top:0;
    color:var(--navy);
    line-height:1.2;
}

p{
    margin-top:0;
}

.container{
    width:min(1180px, calc(100% - 40px));
    margin-left:auto;
    margin-right:auto;
}

.section{
    position:relative;
    padding:85px 0;
}

.section.alt{
    background:#f5f7fa;
}

.section.dark{
    background:var(--navy-dark);
    color:#fff;
}

.section.dark h1,
.section.dark h2,
.section.dark h3{
    color:#fff;
}

.section.dark p{
    color:rgba(255,255,255,.72);
}


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

.site-header{
    position:relative;
    z-index:100;
    background:#fff;
    border-bottom:1px solid var(--border);
}

.header-inner{
    min-height:84px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.site-branding{
    display:flex;
    align-items:center;
}

.site-branding img,
.custom-logo{
    max-height:68px;
    width:auto;
}

.site-title{
    margin:0;
    font-size:24px;
    font-weight:900;
    color:var(--navy);
}

.site-title a{
    color:var(--navy);
}

.main-navigation ul,
.primary-menu{
    list-style:none;
    display:flex;
    align-items:center;
    gap:24px;
    padding:0;
    margin:0;
}

.main-navigation li{
    margin:0;
}

.main-navigation a{
    color:var(--navy);
    font-size:14px;
    font-weight:700;
    transition:.2s ease;
}

.main-navigation a:hover{
    color:var(--orange);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:44px;
    padding:10px 20px;
    border-radius:999px;
    border:1px solid transparent;
    font-size:14px;
    font-weight:800;
    line-height:1;
    text-decoration:none;
    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

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

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

.btn-primary:hover{
    background:#db5b16;
    color:#fff;
}

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

.btn-green:hover{
    background:var(--green-dark);
    color:#fff;
}

.btn-outline{
    background:transparent;
    border-color:var(--navy);
    color:var(--navy);
}

.btn-outline:hover{
    background:var(--navy);
    color:#fff;
}

.light-btn,
.dark .btn-outline{
    border-color:rgba(255,255,255,.7);
    color:#fff;
}

.light-btn:hover,
.dark .btn-outline:hover{
    background:#fff;
    color:var(--navy);
}


/* =========================================================
   EYEBROW / SECTION HEADING
========================================================= */

.eyebrow{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    color:var(--orange);
    font-size:12px;
    font-weight:900;
    letter-spacing:1.3px;
    text-transform:uppercase;
}

.eyebrow::before{
    content:"";
    width:32px;
    height:3px;
    border-radius:10px;
    background:var(--green);
}

.eyebrow.light{
    color:var(--orange-light);
}

.eyebrow.light::before{
    background:#fff;
}

.section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:38px;
}

.section-head > div{
    max-width:760px;
}

.section-head h1,
.section-head h2{
    margin:0 0 12px;
    font-size:clamp(32px,4vw,48px);
    font-weight:900;
}

.section-head p{
    margin:0;
    color:var(--muted);
    font-size:17px;
}


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

.hero{
    position:relative;
    min-height:670px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        radial-gradient(circle at 75% 20%,rgba(243,108,33,.09),transparent 30%),
        linear-gradient(135deg,#fff 0%,#f8fafc 100%);
}

.hero::after{
    display:none !important;
    content:none !important;
}

.hero-shape-two{
    display:none !important;
}

.hero-shape-one{
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    right:-180px;
    top:-180px;
    background:rgba(22,139,58,.06);
}

.hero-inner{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:40px;
}

.hero-copy{
    padding:70px 0;
}

.hero-copy h1{
    margin:0 0 12px;
    color:var(--navy);
    font-size:clamp(52px,7vw,86px);
    line-height:1;
    font-weight:950;
    letter-spacing:-2px;
}

.hero-copy h2{
    margin:0 0 18px;
    color:var(--green);
    font-size:clamp(22px,3vw,34px);
    font-weight:800;
}

.hero-copy p{
    max-width:650px;
    margin:0 0 28px;
    color:var(--muted);
    font-size:18px;
    line-height:1.8;
}

.actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-person{
    position:relative;
    align-self:end;
    display:flex;
    justify-content:center;
    align-items:flex-end;
}

.hero-person img{
    width:auto;
    max-width:100%;
    max-height:650px;
    object-fit:contain;
}


/* =========================================================
   NEWS
========================================================= */

.news-strip{
    background:var(--navy-dark);
}

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

.update-card{
    position:relative;
    overflow:hidden;
    min-width:0;
    background:#fff;
    color:var(--text);
    border-radius:var(--radius);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.update-card.featured{
    grid-row:span 2;
}

.update-card .card-media{
    height:280px;
    overflow:hidden;
    background:#e2e8f0;
}

.update-card .card-media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.update-card .card-body{
    padding:24px;
}

.update-card .tag{
    display:inline-block;
    margin-bottom:9px;
    color:var(--orange);
    font-size:11px;
    font-weight:900;
    letter-spacing:.8px;
}

.update-card h3{
    margin:0 0 12px;
    font-size:20px;
    line-height:1.4;
}

.update-card p{
    margin:0 0 12px;
    color:var(--muted) !important;
}

.update-card a{
    color:var(--navy);
}


/* =========================================================
   ABOUT / PROFILE
========================================================= */

.profile{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:65px;
    align-items:center;
}

.profile-photo{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    box-shadow:var(--shadow);
    background:#f1f5f9;
}

.profile-photo img{
    width:100%;
    min-height:500px;
    object-fit:cover;
}

.profile h2{
    margin-bottom:18px;
    font-size:clamp(34px,4vw,52px);
}

.profile p{
    color:var(--muted);
    font-size:17px;
}

.facts{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin:30px 0;
}

.fact{
    padding:18px;
    border:1px solid var(--border);
    border-radius:16px;
    background:#fff;
}

.fact strong{
    display:block;
    margin-bottom:4px;
    color:var(--navy);
    font-size:16px;
}

.fact span{
    color:var(--muted);
    font-size:13px;
}


/* =========================================================
   STATS
========================================================= */

.stats{
    background:var(--orange);
    color:#fff;
}

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

.stats-grid > div{
    min-height:150px;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border-right:1px solid rgba(255,255,255,.25);
}

.stats-grid > div:last-child{
    border-right:0;
}

.stats-grid strong{
    display:block;
    margin-bottom:4px;
    font-size:36px;
    line-height:1;
}

.stats-grid span{
    font-weight:700;
}


/* =========================================================
   WORK
========================================================= */

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

.work-item{
    position:relative;
    min-height:220px;
    padding:26px;
    display:flex;
    flex-direction:column;
    border:1px solid var(--border);
    border-radius:20px;
    background:#fff;
    transition:.25s ease;
}

.work-item:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
    border-color:transparent;
}

.work-icon{
    width:58px;
    height:58px;
    margin-bottom:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:16px;
    background:#edf5f0;
    color:var(--green);
    font-size:27px;
}

.work-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.work-item h3{
    margin:0 0 8px;
    font-size:19px;
}

.work-item span{
    color:var(--muted);
    font-size:14px;
}

.work-item i{
    position:absolute;
    right:22px;
    bottom:20px;
    color:var(--orange);
    font-style:normal;
    font-weight:900;
}

.stretched-link{
    position:absolute;
    inset:0;
    z-index:2;
}


/* =========================================================
   INITIATIVES
========================================================= */

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

.initiative{
    position:relative;
    min-height:390px;
    padding:28px;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    border-radius:22px;
    background:
        linear-gradient(180deg,rgba(9,43,69,.15),rgba(9,43,69,.95)),
        var(--navy);
    background-position:center;
    background-size:cover;
    color:#fff;
}

.initiative > div{
    position:relative;
    z-index:2;
}

.initiative small{
    display:block;
    margin-bottom:10px;
    color:var(--orange-light);
    font-size:14px;
    font-weight:900;
}

.initiative h3{
    margin:0 0 10px;
    color:#fff;
    font-size:24px;
}

.initiative p{
    color:rgba(255,255,255,.78);
}

.initiative a{
    color:#fff;
    font-weight:800;
}


/* =========================================================
   VOICE FORM
========================================================= */

.voice-section{
    background:linear-gradient(135deg,var(--navy-dark),var(--navy-light));
    color:#fff;
}

.voice{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:70px;
    align-items:start;
}

.voice-copy h2{
    color:#fff;
    font-size:clamp(34px,4vw,50px);
}

.voice-copy p{
    color:rgba(255,255,255,.75);
    font-size:17px;
}

.voice-form{
    padding:32px;
    border-radius:22px;
    background:#fff;
    color:var(--text);
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.field{
    margin-bottom:16px;
}

.field label{
    display:block;
    margin-bottom:7px;
    color:var(--navy);
    font-size:13px;
    font-weight:800;
}

.field input,
.field textarea{
    width:100%;
    border:1px solid #cbd5e1;
    border-radius:12px;
    background:#fff;
    color:var(--text);
    outline:none;
    padding:13px 15px;
}

.field input:focus,
.field textarea:focus{
    border-color:var(--green);
    box-shadow:0 0 0 3px rgba(22,139,58,.1);
}

.field textarea{
    min-height:140px;
    resize:vertical;
}

.form-success{
    margin-top:15px;
    color:var(--green);
    font-weight:800;
}

.form-error{
    margin-top:15px;
    color:#b91c1c;
    font-weight:800;
}


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

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

.video-card{
    overflow:hidden;
    border-radius:22px;
    background:#0b2035;
}

.video-thumb{
    position:relative;
    display:block;
    width:100%;
    aspect-ratio:16 / 9;
    overflow:hidden;
    background:#071a2b;
}

.video-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-play{
    position:absolute;
    left:20px;
    bottom:18px;
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    color:var(--navy);
    font-size:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

.video-body{
    padding:22px;
}

.video-body .tag{
    display:inline-block;
    margin-bottom:10px;
    color:var(--orange-light);
    font-size:12px;
    font-weight:900;
}

.video-body h3{
    margin:0 0 12px;
    color:#fff;
    font-size:20px;
    line-height:1.4;
}

.video-body h3 a{
    color:#fff;
}

.video-body p{
    color:rgba(255,255,255,.72);
}

.rb-watch-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
    padding:9px 16px;
    border:1px solid rgba(255,255,255,.5);
    border-radius:999px;
    color:#fff;
    font-size:13px;
    font-weight:800;
}

.rb-watch-button:hover{
    background:#fff;
    color:var(--navy);
}


/* VIDEO SHARE */

.rb-home-share,
.video-share{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
}

.rb-home-share a,
.rb-home-share button,
.share-btn{
    appearance:none;
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    width:auto !important;
    min-width:0 !important;
    height:38px;
    margin:0;
    padding:0 13px;
    border:0;
    border-radius:999px;
    font-family:inherit;
    font-size:12px;
    font-weight:800;
    line-height:1;
    text-decoration:none;
    cursor:pointer;
}

.rb-home-whatsapp,
.share-whatsapp{
    background:#25D366 !important;
    color:#fff !important;
}

.rb-home-facebook,
.share-facebook{
    background:#1877F2 !important;
    color:#fff !important;
}

.rb-home-copy,
.share-copy{
    background:#fff !important;
    color:var(--navy) !important;
}


/* =========================================================
   DYNAMIC GALLERY
========================================================= */

.rb-gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-template-rows:repeat(2,250px);
    gap:16px;
}

.rb-gallery-item{
    position:relative;
    display:block;
    min-height:250px;
    overflow:hidden;
    border-radius:20px;
    background:var(--navy);
}

.rb-gallery-item:first-child{
    grid-row:span 2;
}

.rb-gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.rb-gallery-item:hover img{
    transform:scale(1.05);
}

.rb-gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:65px 20px 20px;
    background:linear-gradient(
        to top,
        rgba(5,27,46,.97),
        rgba(5,27,46,0)
    );
}

.rb-gallery-label{
    display:inline-block;
    margin-bottom:7px;
    color:var(--orange-light);
    font-size:11px;
    font-weight:900;
}

.rb-gallery-title{
    margin:0;
    color:#fff;
    font-size:17px;
    line-height:1.4;
}

.rb-gallery-item:first-child .rb-gallery-title{
    font-size:24px;
}

.rb-gallery-arrow{
    position:absolute;
    z-index:2;
    top:16px;
    right:16px;
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.94);
    color:var(--navy);
    font-weight:900;
}

.rb-gallery-more{
    margin-top:25px;
    text-align:center;
}

.rb-gallery-more a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 20px;
    border:1px solid var(--navy);
    border-radius:999px;
    color:var(--navy);
    font-size:14px;
    font-weight:800;
}

.rb-gallery-more a:hover{
    background:var(--navy);
    color:#fff;
}

.rb-gallery-empty{
    padding:35px;
    border:1px dashed #cbd5e1;
    border-radius:18px;
    background:#f8fafc;
    color:var(--muted);
    text-align:center;
}


/* =========================================================
   OLD GALLERY FALLBACK
========================================================= */

.gallery{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
}

.gallery .g{
    min-height:220px;
    overflow:hidden;
    border-radius:16px;
    background:#f1f5f9;
}

.gallery .g img{
    width:100%;
    height:100%;
    object-fit:cover;
}


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

.contact-cta{
    background:#f5f7fa;
}

.contact-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:45px;
    border-radius:26px;
    background:#fff;
    box-shadow:var(--shadow);
}

.contact-cta h2{
    margin-bottom:10px;
    font-size:clamp(30px,4vw,44px);
}

.contact-cta p{
    margin:0;
    color:var(--muted);
}

.contact-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}


/* =========================================================
   QUOTE
========================================================= */

.quote{
    text-align:center;
    background:var(--navy);
    color:#fff;
}

.quote-inner{
    max-width:850px;
}

.quote-mark{
    height:70px;
    color:var(--orange);
    font-family:Georgia,serif;
    font-size:90px;
    line-height:1;
}

.quote blockquote{
    margin:0 auto 20px;
    color:#fff;
    font-size:clamp(25px,4vw,42px);
    font-weight:800;
    line-height:1.4;
}

.quote cite{
    color:rgba(255,255,255,.72);
    font-style:normal;
    font-weight:700;
}


/* =========================================================
   SINGLE NORMAL POST / NEWS ARTICLE
========================================================= */

.single-post .site-main,
.single .site-main{
    width:100%;
}

.single-article,
.news-article{
    max-width:900px;
    margin:0 auto;
}

.single-article h1,
.news-article h1,
.entry-title{
    color:var(--navy);
    font-size:clamp(32px,5vw,52px);
    line-height:1.25;
}

.entry-content{
    color:var(--text);
    font-size:18px;
    line-height:1.9;
}

.entry-content p{
    margin:0 0 22px;
}

.entry-content img{
    max-width:100%;
    height:auto;
    border-radius:16px;
}

.entry-content iframe{
    max-width:100%;
}


/* =========================================================
   SINGLE VIDEO PAGE
========================================================= */

.rb-single-video,
.single-video{
    max-width:1000px;
    margin:0 auto;
}

.rb-video-header{
    margin-bottom:30px;
}

.rb-video-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:12px;
    color:var(--orange);
    font-weight:800;
}

.rb-video-label::before{
    content:"";
    width:32px;
    height:3px;
    border-radius:10px;
    background:var(--green);
}

.rb-video-title{
    margin:0;
    color:var(--navy);
    font-size:clamp(30px,4vw,48px);
    line-height:1.2;
}

.rb-video-content,
.video-content{
    width:100%;
    color:var(--text);
    font-size:17px;
    line-height:1.8;
}

.rb-video-content .wp-block-embed,
.rb-video-content .wp-block-embed-youtube,
.video-content .wp-block-embed,
.video-content .wp-block-embed-youtube{
    width:100% !important;
    max-width:100% !important;
    margin:0 0 30px !important;
}

.rb-video-content .wp-block-embed__wrapper,
.video-content .wp-block-embed__wrapper{
    position:relative !important;
    width:100% !important;
    height:0 !important;
    padding-top:56.25% !important;
    overflow:hidden !important;
    border-radius:16px;
    background:#000;
}

.rb-video-content .wp-block-embed__wrapper iframe,
.video-content .wp-block-embed__wrapper iframe{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    border:0 !important;
}


/* Single video share */

.rb-video-share-area{
    margin-top:32px;
    padding-top:24px;
    border-top:1px solid var(--border);
}

.rb-share-title{
    display:block;
    margin-bottom:12px;
    color:var(--navy);
    font-size:15px;
    font-weight:800;
}

.rb-share-buttons{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
}

.rb-share-buttons a,
.rb-share-buttons button{
    appearance:none;
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    width:auto !important;
    min-width:0 !important;
    height:42px !important;
    padding:0 18px !important;
    margin:0 !important;
    border:0 !important;
    border-radius:999px !important;
    font-family:inherit;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
}

.rb-whatsapp{
    background:#25D366 !important;
    color:#fff !important;
}

.rb-facebook{
    background:#1877F2 !important;
    color:#fff !important;
}

.rb-copy{
    background:var(--navy) !important;
    color:#fff !important;
}

.rb-video-back{
    margin-top:24px;
}

.rb-video-back a{
    display:inline-flex;
    padding:10px 20px;
    border:1px solid var(--navy);
    border-radius:999px;
    color:var(--navy);
    font-weight:800;
}

.rb-video-back a:hover{
    background:var(--navy);
    color:#fff;
}


/* =========================================================
   ARCHIVES / GENERIC CARDS
========================================================= */

.archive .site-main{
    min-height:500px;
}

.pagination{
    margin-top:40px;
}

.nav-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
}

.page-numbers{
    min-width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 12px;
    border:1px solid var(--border);
    border-radius:999px;
    color:var(--navy);
    font-weight:700;
}

.page-numbers.current,
.page-numbers:hover{
    background:var(--navy);
    border-color:var(--navy);
    color:#fff;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer{
    background:#061727;
    color:rgba(255,255,255,.75);
}

.footer-inner{
    padding:55px 0;
}

.site-footer h2,
.site-footer h3,
.site-footer h4{
    color:#fff;
}

.site-footer a{
    color:rgba(255,255,255,.8);
}

.site-footer a:hover{
    color:#fff;
}

.footer-bottom{
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.1);
    color:rgba(255,255,255,.55);
    font-size:13px;
}


/* =========================================================
   WORDPRESS UTILITIES
========================================================= */

.alignwide{
    width:min(1100px,100%);
    margin-left:auto;
    margin-right:auto;
}

.alignfull{
    width:100%;
}

.screen-reader-text{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.wp-caption{
    max-width:100%;
}

.wp-caption-text{
    color:var(--muted);
    font-size:13px;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal{
    opacity:1;
    transform:none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width:1000px){

    .hero{
        min-height:auto;
    }

    .hero-inner{
        grid-template-columns:1fr 1fr;
    }

    .hero-copy h1{
        font-size:55px;
    }

    .updates{
        grid-template-columns:1fr 1fr;
    }

    .update-card.featured{
        grid-row:auto;
    }

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

    .initiatives{
        grid-template-columns:1fr 1fr;
    }

    .video-grid{
        grid-template-columns:1fr 1fr;
    }

    .rb-gallery-grid{
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto;
    }

    .rb-gallery-item,
    .rb-gallery-item:first-child{
        grid-row:auto;
        height:300px;
    }

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


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

@media (max-width:760px){

    .container{
        width:min(100% - 28px,1180px);
    }

    .section{
        padding:60px 0;
    }

    .section-head{
        align-items:flex-start;
        flex-direction:column;
        gap:18px;
        margin-bottom:28px;
    }

    .section-head h1,
    .section-head h2{
        font-size:34px;
    }

    .header-inner{
        min-height:72px;
    }

    .main-navigation ul,
    .primary-menu{
        gap:12px;
        flex-wrap:wrap;
    }

    .hero-inner{
        grid-template-columns:1fr;
        gap:0;
    }

    .hero-copy{
        padding:55px 0 15px;
    }

    .hero-copy h1{
        font-size:48px;
        letter-spacing:-1px;
    }

    .hero-copy h2{
        font-size:23px;
    }

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

    .hero-person{
        max-height:500px;
    }

    .hero-person img{
        max-height:500px;
    }

    .updates{
        grid-template-columns:1fr;
    }

    .profile{
        grid-template-columns:1fr;
        gap:35px;
    }

    .profile-photo img{
        min-height:380px;
    }

    .facts{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .stats-grid > div{
        min-height:120px;
        padding:22px;
        border-bottom:1px solid rgba(255,255,255,.2);
    }

    .work-grid{
        grid-template-columns:1fr;
    }

    .initiatives{
        grid-template-columns:1fr;
    }

    .initiative{
        min-height:330px;
    }

    .voice{
        grid-template-columns:1fr;
        gap:35px;
    }

    .voice-form{
        padding:22px;
    }

    .form-grid{
        grid-template-columns:1fr;
        gap:0;
    }

    .video-grid{
        grid-template-columns:1fr;
    }

    .rb-gallery-grid{
        grid-template-columns:1fr;
    }

    .rb-gallery-item,
    .rb-gallery-item:first-child{
        height:270px;
    }

    .rb-gallery-item:first-child .rb-gallery-title{
        font-size:20px;
    }

    .gallery{
        grid-template-columns:1fr 1fr;
    }

    .contact-cta-inner{
        align-items:flex-start;
        flex-direction:column;
        padding:30px;
    }

    .quote blockquote{
        font-size:27px;
    }

    .rb-video-title{
        font-size:28px;
    }

    .rb-video-content,
    .video-content{
        font-size:16px;
    }
}


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

@media (max-width:480px){

    .hero-copy h1{
        font-size:41px;
    }

    .actions{
        flex-direction:column;
        align-items:stretch;
    }

    .actions .btn{
        width:100%;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stats-grid > div{
        border-right:0;
    }

    .gallery{
        grid-template-columns:1fr;
    }

    .rb-home-share a,
    .rb-home-share button{
        height:36px;
        padding:0 11px;
        font-size:11px;
    }

    .rb-share-buttons a,
    .rb-share-buttons button{
        height:40px !important;
        padding:0 14px !important;
        font-size:13px;
    }
}

/* =========================================================
   HEADER MARKUP COMPATIBILITY — rbtheme_v15
   Matches header.php classes: .brand, .nav, .menu-toggle
========================================================= */
.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
}
.brand{
    display:flex;
    align-items:center;
    gap:10px;
    margin-right:auto;
}
.brand img{
    width:64px;
    height:64px;
    max-width:64px;
    object-fit:contain;
}
.brand-text strong{
    display:block;
    font-size:20px;
    line-height:1.1;
    color:var(--navy);
}
.brand-text span{
    display:block;
    font-size:12px;
    color:var(--muted);
}
.nav{
    display:flex;
    gap:20px;
    align-items:center;
    font-size:14px;
    font-weight:700;
}
.nav a{
    padding:26px 0;
    border-bottom:2px solid transparent;
}
.nav a:hover{
    color:var(--orange);
    border-color:var(--orange);
}
.menu-toggle{
    display:none;
    border:0;
    background:none;
    color:var(--navy);
    font-size:28px;
    line-height:1;
}
@media(max-width:1000px){
    .nav{display:none;}
    .menu-toggle{display:block;}
    .nav.open{
        display:flex;
        position:absolute;
        left:0;
        right:0;
        top:84px;
        background:#fff;
        padding:15px 4%;
        flex-direction:column;
        align-items:flex-start;
        box-shadow:var(--shadow);
    }
    .nav.open a{padding:8px 0;}
}
@media(max-width:650px){
    .header-inner{min-height:68px;}
    .brand img{width:54px;height:54px;max-width:54px;}
    .brand-text strong{font-size:17px;}
    .brand-text span{font-size:10px;}
    .nav.open{top:68px;}
}

/* =========================================================
   FOOTER MARKUP COMPATIBILITY — rbtheme_v15
   Matches footer.php classes
========================================================= */
.site-footer{
    background:#071b2d;
    color:#fff;
    padding:50px 0 25px;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
    gap:35px;
}
.footer-brand img{
    width:86px;
    height:86px;
    max-width:86px;
    object-fit:contain;
    background:#fff;
    border-radius:14px;
}
.site-footer h3{
    margin-top:0;
    color:#fff;
}
.site-footer p,
.site-footer li{
    color:#b8c6d3;
}
.site-footer ul{
    padding:0;
    margin:0;
    list-style:none;
    display:grid;
    gap:7px;
}
.social{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}
.social a{
    padding:10px 16px;
    border-radius:999px;
    background:#fff;
    color:var(--navy);
    font-weight:800;
}
.copyright{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:30px;
    padding-top:20px;
    color:#93a7ba;
    font-size:13px;
    display:flex;
    justify-content:space-between;
    gap:15px;
}
@media(max-width:1000px){
    .footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:650px){
    .footer-grid{grid-template-columns:1fr;}
    .copyright{display:block;}
    .copyright > *{margin:6px 0;}
}
