/* ===== CSS VARIABLES ===== */
:root{
    --gold:#C9962A;
    --gold2:#F0C84A;
    --maroon:#7A1020;
    --deep:#0D0A02;
    --cream:#FDF8EE;
    --ivory:#F5EDD8;
    --rust:#B84820;
    --teal:#0A3535;
    --text:#2A1A08;
    --muted:#7A6040;
}

/* ===== RESET & BASE ===== */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Nunito',sans-serif;background:var(--cream);color:var(--text);overflow-x:hidden}

img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ===== NAVIGATION ===== */
#nav{
    position:fixed;top:0;left:0;right:0;z-index:1000;
    background:rgba(13,10,2,0.97);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(201,150,42,0.2);
    transition:all .3s;
}
.nav-inner{
    max-width:1280px;margin:0 auto;
    display:flex;justify-content:space-between;align-items:center;
    padding:.9rem 2.5rem;
}
.nav-logo{
    font-family:'Cinzel',serif;color:var(--gold);
    font-size:1.1rem;letter-spacing:.08em;line-height:1.2;
}
.nav-logo span{display:block;font-size:.6rem;color:rgba(240,200,74,.6);letter-spacing:.25em;text-transform:uppercase;margin-top:.1rem}
.nav-links{display:flex;gap:.2rem;list-style:none}
.nav-links a{
    font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
    color:rgba(245,237,216,.7);text-decoration:none;
    padding:.45rem .8rem;border-radius:2px;
    transition:all .25s;font-weight:500;
}
.nav-links a:hover,.nav-links a.active{color:var(--gold2);background:rgba(201,150,42,.1)}
.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.nav-hamburger span{width:24px;height:2px;background:var(--gold);transition:all .3s}

/* Mobile Menu */
.mobile-menu{
    display:none;position:fixed;top:68px;left:0;right:0;
    background:rgba(13,10,2,0.98);z-index:999;
    padding:1rem 2rem 2rem;
    border-bottom:1px solid rgba(201,150,42,0.2);
}
.mobile-menu.active{display:block}
.mobile-menu ul{list-style:none}
.mobile-menu a{
    display:block;padding:.8rem 0;
    color:rgba(245,237,216,.8);font-size:.9rem;
    border-bottom:1px solid rgba(201,150,42,.1);
    transition:color .25s;
}
.mobile-menu a:hover,.mobile-menu a.active{color:var(--gold2)}

/* ===== HERO SECTION ===== */
#hero{
    position:relative;min-height:100vh;
    background:linear-gradient(160deg,#0D0A02 0%,#1a0808 40%,#0a1a10 100%);
    display:flex;align-items:center;overflow:hidden;
}
.hero-bg-art{
    position:absolute;inset:0;
    background:
        radial-gradient(ellipse at 20% 50%,rgba(122,16,32,.25) 0%,transparent 55%),
        radial-gradient(ellipse at 80% 20%,rgba(201,150,42,.12) 0%,transparent 50%),
        radial-gradient(ellipse at 60% 80%,rgba(10,53,53,.3) 0%,transparent 50%);
}
.hero-ring{
    position:absolute;right:-100px;top:50%;transform:translateY(-50%);
    width:700px;height:700px;border-radius:50%;
    border:1px solid rgba(201,150,42,.08);
    animation:spin 60s linear infinite;
}
.hero-ring::before{content:'';position:absolute;inset:40px;border-radius:50%;border:1px solid rgba(201,150,42,.05)}
.hero-ring::after{content:'';position:absolute;inset:120px;border-radius:50%;border:1px solid rgba(201,150,42,.04)}
@keyframes spin{from{transform:translateY(-50%) rotate(0)}to{transform:translateY(-50%) rotate(360deg)}}

.hero-content{
    position:relative;z-index:2;
    max-width:1280px;margin:0 auto;padding:0 2.5rem 2rem;
    display:grid;grid-template-columns:1fr 420px;gap:4rem;align-items:center;
    width:100%;
}
.hero-text{}
.hero-eyebrow{
    font-size:.68rem;letter-spacing:.5em;text-transform:uppercase;
    color:var(--gold);margin-bottom:1.5rem;
    display:flex;align-items:center;gap:.8rem;
}
.hero-eyebrow::before{content:'';width:40px;height:1px;background:var(--gold)}
.hero-name{
    font-family:'Playfair Display',serif;
    font-size:clamp(3rem,7vw,6rem);
    font-weight:700;color:#F5EDD8;line-height:1.05;
    margin-bottom:.5rem;
}
.hero-name em{
    font-style:italic;color:var(--gold2);
    display:block;font-weight:400;font-size:.7em;
}
.hero-title-line{
    display:flex;align-items:center;gap:1rem;margin:1.8rem 0;
}
.hero-title-line::before,.hero-title-line::after{
    content:'';flex:1;height:1px;
    background:linear-gradient(to right,rgba(201,150,42,.5),transparent);
}
.hero-title-line::after{background:linear-gradient(to left,rgba(201,150,42,.5),transparent)}
.hero-diamond{width:7px;height:7px;background:var(--gold);transform:rotate(45deg);flex-shrink:0}
.hero-desc{
    font-size:1.05rem;line-height:1.85;
    color:rgba(245,237,216,.65);margin-bottom:2.5rem;
    max-width:560px;
}
.hero-roles{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:3rem}
.role-pill{
    font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;
    border:1px solid rgba(201,150,42,.35);
    color:rgba(240,200,74,.8);padding:.35rem .9rem;border-radius:1px;
}
.hero-cta{display:flex;gap:1rem;flex-wrap:wrap}
.btn-primary{
    display:inline-flex;align-items:center;gap:.5rem;
    background:var(--gold);color:var(--deep);
    padding:.85rem 2rem;font-size:.75rem;letter-spacing:.2em;
    text-transform:uppercase;font-weight:700;cursor:pointer;
    border:none;border-radius:1px;transition:all .3s;
    font-family:'Nunito',sans-serif;
}
.btn-primary:hover{background:var(--gold2);transform:translateY(-2px)}
.btn-outline{
    display:inline-flex;align-items:center;gap:.5rem;
    background:transparent;color:var(--gold);
    border:1px solid var(--gold);
    padding:.85rem 2rem;font-size:.75rem;letter-spacing:.2em;
    text-transform:uppercase;font-weight:600;cursor:pointer;
    border-radius:1px;transition:all .3s;
    font-family:'Nunito',sans-serif;
}
.btn-outline:hover{background:rgba(201,150,42,.1);transform:translateY(-2px)}

.hero-photo{position:relative}
.hero-photo-frame{
    position:relative;aspect-ratio:3/4;overflow:hidden;
    border:1px solid rgba(201,150,42,.25);
}
.hero-photo-frame img{width:100%;height:100%;object-fit:cover;object-position:top center}
.hero-photo-frame::before{
    content:'';position:absolute;inset:0;z-index:1;
    background:linear-gradient(to bottom,transparent 60%,rgba(13,10,2,.8) 100%);
}
.hero-photo-corner{
    position:absolute;width:28px;height:28px;border-color:var(--gold);border-style:solid;opacity:.5;z-index:2;
}
.corner-tl{top:-8px;left:-8px;border-width:2px 0 0 2px}
.corner-tr{top:-8px;right:-8px;border-width:2px 2px 0 0}
.corner-bl{bottom:-8px;left:-8px;border-width:0 0 2px 2px}
.corner-br{bottom:-8px;right:-8px;border-width:0 2px 2px 0}
.hero-badge{
    position:absolute;bottom:1.5rem;left:1.5rem;z-index:3;
    background:rgba(13,10,2,.9);border:1px solid rgba(201,150,42,.3);
    padding:.8rem 1rem;
}
.hero-badge-text{font-family:'Playfair Display',serif;font-size:.85rem;color:var(--ivory);font-style:italic}
.hero-badge-sub{font-size:.6rem;letter-spacing:.2em;color:var(--gold);text-transform:uppercase;margin-top:.2rem}

.hero-stats{
    position:relative;z-index:2;
    display:flex;gap:2.5rem;margin:2.5rem 2.5rem 0;
    padding-top:2rem;border-top:1px solid rgba(201,150,42,.1);
    max-width:1280px;margin-left:auto;margin-right:auto;
}
.hero-stat{}
.hero-stat-num{
    font-family:'Playfair Display',serif;font-size:2.2rem;
    color:var(--gold2);font-weight:700;line-height:1;
}
.hero-stat-label{font-size:.68rem;color:rgba(245,237,216,.45);text-transform:uppercase;letter-spacing:.15em;margin-top:.2rem}

/* ===== SECTION COMMONS ===== */
.section{padding:7rem 0}
.container{max-width:1280px;margin:0 auto;padding:0 2.5rem}
.sec-label{
    font-size:.62rem;letter-spacing:.5em;text-transform:uppercase;
    color:var(--gold);margin-bottom:.8rem;
    display:flex;align-items:center;gap:.6rem;
}
.sec-label::before{content:'';width:30px;height:1px;background:var(--gold)}
.sec-title{
    font-family:'Playfair Display',serif;
    font-size:clamp(2rem,4vw,3.5rem);font-weight:700;
    line-height:1.15;margin-bottom:1.5rem;color:var(--text);
}
.sec-title em{color:var(--maroon);font-style:italic}
.sec-title.light{color:var(--ivory)}
.sec-title.light em{color:var(--gold2)}
.gold-rule{width:50px;height:2px;background:var(--gold);margin-bottom:2.5rem}

/* ===== FEATURED SECTION ===== */
.featured-section{background:var(--cream)}
.featured-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;
}
.featured-card{
    background:white;border:1px solid rgba(201,150,42,.15);
    overflow:hidden;transition:all .3s;
}
.featured-card:hover{border-color:rgba(201,150,42,.3);transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.08)}
.featured-img{aspect-ratio:4/3;overflow:hidden}
.featured-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.featured-card:hover .featured-img img{transform:scale(1.05)}
.featured-content{padding:1.5rem}
.perf-tag{
    display:inline-block;font-size:.58rem;letter-spacing:.3em;
    text-transform:uppercase;color:var(--gold);
    border:1px solid rgba(201,150,42,.4);padding:.2rem .6rem;margin-bottom:.6rem;
}
.featured-content h3{
    font-family:'Playfair Display',serif;font-size:1.15rem;
    color:var(--text);margin-bottom:.6rem;
}
.featured-content p{font-size:.88rem;color:var(--muted);line-height:1.7;margin-bottom:1rem}
.read-more{font-size:.75rem;color:var(--gold);letter-spacing:.1em;transition:color .25s}
.read-more:hover{color:var(--gold2)}

/* ===== ABOUT PREVIEW ===== */
.about-preview{}
.about-preview-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;
}
.about-preview-img img{width:100%;border:1px solid rgba(201,150,42,.2)}
.about-preview-text p{color:var(--muted);line-height:1.85;margin-bottom:1rem}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview-grid{
    display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem;
}
.gallery-preview-item{overflow:hidden;aspect-ratio:1;}
.gallery-preview-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.gallery-preview-item:hover img{transform:scale(1.06)}

/* ===== AKS PREVIEW ===== */
.aks-preview{
    background:linear-gradient(135deg,var(--teal) 0%,#0a1a0a 50%,var(--deep) 100%);
    text-align:center;
}
.aks-preview-content{padding:2rem 0}

/* ===== CONTACT CTA ===== */
.contact-cta{background:var(--ivory);text-align:center;}
.contact-cta-content{max-width:600px;margin:0 auto}
.contact-cta h2{
    font-family:'Playfair Display',serif;font-size:2.5rem;
    color:var(--maroon);margin-bottom:1rem;
}
.contact-cta p{color:var(--muted);margin-bottom:2rem;line-height:1.7}

/* ===== FOOTER ===== */
#footer{
    background:var(--deep);padding:4rem 0 2rem;
    border-top:1px solid rgba(201,150,42,.1);
}
.footer-grid{
    display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;
    margin-bottom:3rem;
}
.footer-col h4{
    font-family:'Cinzel',serif;color:var(--gold);font-size:.9rem;
    letter-spacing:.1em;margin-bottom:1rem;
}
.footer-col p{color:rgba(245,237,216,.5);font-size:.85rem;line-height:1.7;margin-bottom:.5rem}
.footer-col ul li{margin-bottom:.5rem}
.footer-col ul a{color:rgba(245,237,216,.6);font-size:.85rem;transition:color .25s}
.footer-col ul a:hover{color:var(--gold2)}
.social-links{display:flex;gap:1rem}
.social-links a{
    font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;
    color:rgba(245,237,216,.5);padding:.4rem .8rem;
    border:1px solid rgba(201,150,42,.3);transition:all .25s;
}
.social-links a:hover{color:var(--gold2);border-color:var(--gold2)}
.footer-bottom{
    border-top:1px solid rgba(201,150,42,.1);padding-top:2rem;
    text-align:center;
}
.footer-bottom p{color:rgba(245,237,216,.3);font-size:.75rem}

/* ===== PAGE HEROES ===== */
.page-hero{
    padding-top:120px;padding-bottom:4rem;
    background:linear-gradient(135deg,var(--deep) 0%,#1a0808 50%,#0a1a10 100%);
    position:relative;overflow:hidden;
}
.page-hero::before{
    content:'';position:absolute;right:0;top:0;bottom:0;width:50%;
    background:radial-gradient(ellipse at right,rgba(201,150,42,.06),transparent 70%);
}
.page-hero .container{position:relative;z-index:2}
.page-hero h1{
    font-family:'Playfair Display',serif;
    font-size:clamp(2.5rem,5vw,4rem);font-weight:700;
    color:var(--ivory);line-height:1.1;margin-bottom:1.5rem;
}
.page-hero h1 em{color:var(--gold2);font-style:italic}
.page-hero p{color:rgba(245,237,216,.7);line-height:1.85;max-width:700px;font-size:1.05rem}

/* ===== ABOUT PAGE ===== */
.about-stats-row{
    display:grid;grid-template-columns:repeat(4,1fr);gap:0;
}
.astat{
    padding:2.5rem 1.5rem;text-align:center;
    border-right:1px solid rgba(13,10,2,.15);
}
.astat:last-child{border-right:none}
.astat-num{
    font-family:'Playfair Display',serif;font-size:2.5rem;
    color:var(--gold2);font-weight:700;
}
.astat-label{font-size:.65rem;color:rgba(245,237,216,.6);text-transform:uppercase;letter-spacing:.15em;margin-top:.3rem}

.about-bio{padding:5rem 0;background:var(--cream)}
.about-bio-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.bio-block h3{
    font-family:'Playfair Display',serif;font-size:1.6rem;
    color:var(--maroon);margin-bottom:1rem;
}
.bio-block p{line-height:1.85;color:var(--muted);margin-bottom:1rem;font-size:.95rem}
.bio-block p strong{color:var(--text)}
.bio-block ul{list-style:none;display:flex;flex-direction:column;gap:.6rem}
.bio-block ul li{
    display:flex;gap:.8rem;align-items:flex-start;
    font-size:.9rem;color:var(--muted);line-height:1.6;
}
.bio-block ul li::before{content:"◆";color:var(--gold);font-size:.5rem;margin-top:.4rem;flex-shrink:0}

.expertise-section{padding:5rem 0;background:var(--ivory)}
.expertise-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px;
    background:rgba(201,150,42,.15);border:1px solid rgba(201,150,42,.15);
}
.exp-card{
    background:var(--cream);padding:2.5rem 2rem;
    transition:background .3s;position:relative;overflow:hidden;
}
.exp-card::after{
    content:'';position:absolute;bottom:0;left:0;right:0;
    height:2px;background:var(--gold);transform:scaleX(0);transition:transform .4s;
}
.exp-card:hover{background:#FFF8EE}
.exp-card:hover::after{transform:scaleX(1)}
.exp-icon{font-size:2rem;margin-bottom:1rem}
.exp-title{
    font-family:'Playfair Display',serif;font-size:1.1rem;
    color:var(--maroon);margin-bottom:.75rem;
}
.exp-desc{font-size:.88rem;color:var(--muted);line-height:1.75}

/* ===== PERFORMANCES PAGE ===== */
.performances-section{padding:5rem 0;background:var(--cream)}
.perf-intro{
    font-family:'Playfair Display',serif;font-style:italic;
    font-size:1.3rem;color:rgba(245,237,216,.6);line-height:1.8;
    max-width:700px;margin-bottom:3.5rem;
}
.perf-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:3px;
}
.perf-card{
    position:relative;overflow:hidden;cursor:pointer;
    min-height:280px;display:flex;flex-direction:column;justify-content:flex-end;
}
.perf-card img{
    position:absolute;inset:0;width:100%;height:100%;
    object-fit:cover;transition:transform .5s;
}
.perf-card:hover img{transform:scale(1.06)}
.perf-card-overlay{
    position:absolute;inset:0;
    background:linear-gradient(to top,rgba(13,10,2,.92) 0%,rgba(13,10,2,.1) 60%,transparent 100%);
}
.perf-card-content{position:relative;z-index:2;padding:1.5rem}
.perf-title{font-family:'Playfair Display',serif;font-size:1.1rem;color:var(--ivory);font-weight:600}
.perf-meta{font-size:.72rem;color:rgba(245,237,216,.45);margin-top:.3rem;letter-spacing:.05em}
.perf-card.tall{grid-row:span 2}

.perf-list{
    display:grid;grid-template-columns:1fr 1fr;gap:0;
    border-top:1px solid rgba(201,150,42,.1);margin-top:5rem;
}
.perf-list-item{
    padding:2rem 2.5rem;
    border-bottom:1px solid rgba(201,150,42,.08);
    border-right:1px solid rgba(201,150,42,.08);
    transition:background .25s;
}
.perf-list-item:nth-child(even){border-right:none}
.perf-list-item:hover{background:rgba(201,150,42,.03)}
.perf-list-item h4{
    font-family:'Playfair Display',serif;font-size:1rem;
    color:var(--maroon);margin-bottom:.4rem;
}
.perf-list-item p{font-size:.83rem;color:var(--muted);line-height:1.6}
.perf-list-item .year{
    font-size:.65rem;letter-spacing:.2em;color:var(--gold);
    text-transform:uppercase;margin-bottom:.5rem;
}

/* ===== AKS SOCIETY PAGE ===== */
.aks-hero{background:linear-gradient(160deg,var(--teal) 0%,#0a1a0a 50%,var(--deep) 100%);}
.aks-intro-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.aks-intro-img img{width:100%;border:1px solid rgba(201,150,42,.2)}
.aks-intro-text h2{
    font-family:'Playfair Display',serif;font-size:clamp(2rem,3.5vw,3rem);
    color:var(--ivory);font-weight:700;margin-bottom:1.5rem;line-height:1.2;
}
.aks-intro-text h2 em{color:var(--gold2);font-style:italic}
.aks-intro-text p{color:rgba(245,237,216,.7);line-height:1.85;margin-bottom:1rem;font-size:.95rem}
.aks-intro-text p strong{color:var(--gold2)}

.initiatives-section{padding:5rem 0;background:var(--deep)}
.initiatives-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;
    margin-top:3rem;
}
.init-card{
    padding:2.5rem 2rem;
    background:rgba(255,255,255,.02);
    border:1px solid rgba(201,150,42,.1);
    transition:all .3s;position:relative;overflow:hidden;
}
.init-card::before{
    content:'';position:absolute;top:0;left:0;
    width:3px;height:0;background:var(--gold);transition:height .4s;
}
.init-card:hover::before{height:100%}
.init-card:hover{border-color:rgba(201,150,42,.3);background:rgba(201,150,42,.03)}
.init-icon{font-size:1.8rem;margin-bottom:1rem}
.init-title{
    font-family:'Playfair Display',serif;font-size:1.05rem;
    color:var(--gold2);margin-bottom:.6rem;
}
.init-desc{font-size:.85rem;color:rgba(245,237,216,.55);line-height:1.7}

.associates{padding:5rem 0;background:var(--ivory)}
.associates h2{
    font-family:'Playfair Display',serif;font-size:2rem;
    color:var(--maroon);margin-bottom:2rem;
}
.assoc-list{display:flex;flex-wrap:wrap;gap:1rem}
.assoc-chip{
    padding:.5rem 1.2rem;border:1px solid rgba(122,16,32,.2);
    font-size:.8rem;color:var(--maroon);background:white;
    border-radius:2px;
}

.awardees-section{padding:5rem 0;background:var(--cream)}
.awardees-img{width:100%;max-width:900px;margin:0 auto;display:block;border:1px solid rgba(201,150,42,.2)}

/* ===== GALLERY PAGE ===== */
.gallery-filters{
    display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:3rem;
}
.filter-btn{
    padding:.45rem 1.2rem;font-size:.7rem;letter-spacing:.15em;
    text-transform:uppercase;border:1px solid rgba(201,150,42,.3);
    color:rgba(240,200,74,.7);background:transparent;cursor:pointer;
    font-family:'Nunito',sans-serif;transition:all .25s;border-radius:1px;
}
.filter-btn.active,.filter-btn:hover{
    background:var(--gold);color:var(--deep);border-color:var(--gold);
}

.gallery-masonry{
    columns:3;gap:4px;
}
.gallery-item{
    break-inside:avoid;margin-bottom:4px;position:relative;overflow:hidden;cursor:pointer;
}
.gallery-item img{width:100%;display:block;transition:transform .4s}
.gallery-item:hover img{transform:scale(1.04)}
.gallery-item-overlay{
    position:absolute;inset:0;background:rgba(13,10,2,0);
    display:flex;align-items:flex-end;padding:1rem;
    transition:background .3s;
}
.gallery-item:hover .gallery-item-overlay{background:rgba(13,10,2,.65)}
.gallery-item-caption{
    font-size:.72rem;color:var(--ivory);opacity:0;
    transition:opacity .3s;letter-spacing:.05em;line-height:1.4;
}
.gallery-item:hover .gallery-item-caption{opacity:1}

/* Lightbox */
#lightbox{
    display:none;position:fixed;inset:0;z-index:9999;
    background:rgba(0,0,0,.93);align-items:center;justify-content:center;
}
#lightbox.open{display:flex}
#lightbox img{max-width:90vw;max-height:90vh;object-fit:contain}
#lightbox-close{
    position:absolute;top:1.5rem;right:2rem;
    font-size:2rem;color:var(--gold);cursor:pointer;background:none;border:none;
    font-family:'Playfair Display',serif;line-height:1;
}
#lightbox-caption{
    position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);
    font-size:.8rem;color:rgba(245,237,216,.6);text-align:center;
    letter-spacing:.1em;max-width:600px;
}

/* ===== CONTACT PAGE ===== */
.contact-section{padding:5rem 0;background:var(--cream)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.contact-info h3{
    font-family:'Playfair Display',serif;font-size:1.6rem;
    color:var(--maroon);margin-bottom:1rem;
}
.contact-info p{color:var(--muted);line-height:1.85;margin-bottom:1.5rem}
.contact-details{margin-top:2rem}
.contact-item{
    display:flex;align-items:center;gap:1rem;margin-bottom:1rem;
}
.contact-icon{
    width:40px;height:40px;background:var(--gold);display:flex;
    align-items:center;justify-content:center;border-radius:50%;
}
.contact-icon svg{width:20px;height:20px;fill:var(--deep)}
.contact-item span{font-size:.9rem;color:var(--text)}

.contact-form{background:white;padding:3rem;border:1px solid rgba(201,150,42,.15)}
.contact-form h3{
    font-family:'Playfair Display',serif;font-size:1.4rem;
    color:var(--maroon);margin-bottom:1.5rem;
}
.form-group{margin-bottom:1.5rem}
.form-group label{
    display:block;font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;
    color:var(--muted);margin-bottom:.5rem;
}
.form-group input,.form-group textarea{
    width:100%;padding:.8rem 1rem;font-size:.95rem;
    border:1px solid rgba(201,150,42,.2);background:var(--cream);
    font-family:'Nunito',sans-serif;color:var(--text);
    transition:border-color .25s;
}
.form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--gold)}
.form-group textarea{height:120px;resize:vertical}
.form-success{
    display:none;padding:1rem;background:rgba(201,150,42,.1);
    border:1px solid var(--gold);color:var(--text);margin-top:1rem;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
    .hero-content{grid-template-columns:1fr;gap:3rem}
    .hero-ring{display:none}
    .featured-grid{grid-template-columns:repeat(2,1fr)}
    .about-preview-grid,.about-bio-grid,.aks-intro-grid,.contact-grid{grid-template-columns:1fr;gap:3rem}
    .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
    .nav-links{display:none}
    .nav-hamburger{display:flex}
    .hero-stats{flex-wrap:wrap;gap:1.5rem}
    .hero-stat{width:calc(50% - 1rem)}
    .featured-grid,.perf-grid,.gallery-preview-grid{grid-template-columns:1fr 1fr}
    .expertise-grid,.initiatives-grid,.news-all-grid{grid-template-columns:1fr}
    .about-stats-row{grid-template-columns:repeat(2,1fr)}
    .perf-list{grid-template-columns:1fr}
    .gallery-masonry{columns:2}
    .footer-grid{grid-template-columns:1fr}
    .contact-form{padding:2rem}
}
@media(max-width:480px){
    .container{padding:0 1.5rem}
    .section{padding:4rem 0}
    .hero-content{padding:0 1.5rem}
    .hero-stats{margin:1.5rem 1.5rem 0;flex-direction:column}
    .featured-grid,.perf-grid,.gallery-preview-grid{grid-template-columns:1fr}
    .about-stats-row{grid-template-columns:1fr 1fr}
    .gallery-masonry{columns:1}
    .hero-cta{flex-direction:column}
    .btn-primary,.btn-outline{width:100%;justify-content:center}
}
