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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f2e8;
    color: #2b211b;
    line-height: 1.7;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.header {
    background: #211812;
    color: #fff;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0,0,0,.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.site-logo {
    width: 150px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 700px) {
    .site-logo {
        width: 120px;
        max-width: 45vw;
        height: auto;
    }
}

.navigation {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navigation a {
    font-size: 14px;
    transition: .3s;
}

.navigation a:hover {
    color: #d9a441;
}

.nav-button,
.btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 3px;
    font-weight: bold;
    transition: .3s;
}

.nav-button {
    border: 1px solid #d9a441;
    color: #d9a441;
    font-size: 13px;
}

.nav-button:hover {
    background: #d9a441;
    color: #211812;
}


/* HERO */

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(rgba(30,18,12,.65), rgba(30,18,12,.75)),
        url("images/new1.jpg") center/cover no-repeat;
    color: white;
}

.hero-content {
    padding: 100px 0;
}

.eyebrow,
.section-label {
    color: #c99636;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 88px);
    line-height: 1;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.hero h1 span,
h2 span {
    color: #d9a441;
}

.hero-text {
    max-width: 650px;
    font-size: 18px;
    color: #eee;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #d9a441;
    color: #211812;
}

.btn-primary:hover {
    background: #efc76b;
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #211812;
}


/* INTRO */

.intro {
    background: #211812;
    color: white;
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.intro h2 {
    font-size: 45px;
    line-height: 1.15;
}

.intro p {
    color: #ddd;
    margin-bottom: 18px;
}


/* COMMON SECTIONS */

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.about-content h2,
.music h2,
.recognition h2,
.contact-cta h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-heading p {
    color: #665a51;
}


/* ABOUT */

.about {
    background: #fffaf1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    min-height: 500px;
    background:
        linear-gradient(rgba(45,30,20,.25), rgba(45,30,20,.25)),
        url("images/new12.jpg") center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
}

.about-content p {
    color: #665a51;
    margin-bottom: 20px;
}

.text-link {
    color: #8b641f;
    font-weight: bold;
}


/* HERITAGE */

.heritage {
    background: #eee5d5;
}

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

.heritage-card {
    background: #fffaf1;
    padding: 35px 25px;
    min-height: 280px;
    border-bottom: 3px solid #d9a441;
    transition: .3s;
}

.heritage-card:hover {
    transform: translateY(-8px);
}

.card-number {
    color: #c99636;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 35px;
}

.heritage-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.heritage-card p {
    color: #6c6056;
}


/* ARTISTS */

.artists {
    background: #fffaf1;
}

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

.artist-card {
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.artist-photo {
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    color: white;
    font-weight: bold;
    letter-spacing: 2px;
    background:
        linear-gradient(rgba(40,25,15,.15), rgba(40,25,15,.35)),
        url("images/new1.jpg") center/cover no-repeat;
}

.artist-card:nth-child(2) .artist-photo {
    background:
        linear-gradient(rgba(40,25,15,.15), rgba(40,25,15,.35)),
        url("images/new12.jpg") center/cover no-repeat;
}

.artist-info {
    padding: 25px;
}

.artist-info h3 {
    font-size: 24px;
}

.artist-info p {
    color: #74675d;
}


/* MUSIC */

.music {
    background: #211812;
    color: white;
}

.music-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}

.music p {
    color: #ddd;
    max-width: 650px;
    margin-bottom: 30px;
}

.music-symbol {
    font-size: 220px;
    text-align: center;
    color: #d9a441;
    line-height: 1;
}


/* VIDEO */

.video-section {
    background: #f7f2e8;
}

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

.video-card {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.video-placeholder {
    height: 230px;
    background: #30241d;
    color: #d9a441;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
}

.video-card h3 {
    padding: 20px;
}


/* GALLERY */

.gallery {
    background: #fffaf1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 230px;
    gap: 15px;
}

.gallery-item {
    background: #d8c8b1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #695a4d;
    font-weight: bold;
}

.gallery-item.large {
    grid-row: span 2;
}


/* RECOGNITION */

.recognition {
    background: #eee5d5;
}

.recognition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.recognition p {
    color: #665a51;
}


/* CONTACT */

.contact-cta {
    background:
        linear-gradient(rgba(32,20,14,.85), rgba(32,20,14,.9)),
        url("images/new1.jpg") center/cover no-repeat;
    color: white;
    padding: 110px 0;
    text-align: center;
}

.contact-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #ddd;
}

.contact-cta .section-label {
    color: #d9a441;
}


/* FOOTER */

.footer {
    background: #18110d;
    color: white;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 3px;
    line-height: 1.1;
}

.footer-logo span {
    font-size: 11px;
    letter-spacing: 3px;
}

.footer p {
    color: #aaa;
    margin-top: 15px;
}

.footer h4 {
    color: #d9a441;
    margin-bottom: 15px;
}

.footer a {
    display: block;
    color: #aaa;
    margin-bottom: 8px;
}

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

.footer-bottom {
    border-top: 1px solid #342921;
    padding: 20px 5%;
    color: #888;
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 900px) {

    .navigation {
        display: none;
    }

    .nav-button {
        display: none;
    }

    .intro-grid,
    .about-grid,
    .recognition-grid,
    .music-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .gallery-item.large {
        grid-row: span 1;
    }

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

    .hero {
        min-height: 600px;
    }
}


@media (max-width: 600px) {

    .logo-main {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 45px;
    }

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

    .section {
        padding: 70px 0;
    }

    .section-heading h2,
    .about-content h2,
    .music h2,
    .recognition h2,
    .contact-cta h2,
    .intro h2 {
        font-size: 34px;
    }

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

    .about-image {
        min-height: 350px;
    }

    .artist-photo {
        height: 330px;
    }

    .music-symbol {
        font-size: 130px;
    }
}/* ================= ABOUT PAGE ================= */

.page-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(30,18,12,.72), rgba(30,18,12,.78)),
        url("images/new1.jpg") center/cover no-repeat;
    color: white;
}

.page-hero h1 {
    font-size: clamp(48px, 7vw, 78px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.page-hero h1 span {
    color: #d9a441;
}

.page-hero > .container > p:last-child {
    max-width: 650px;
    font-size: 18px;
    color: #ddd;
}

.about-page-image {
    min-height: 500px;
}


/* ABOUT PAGE RESPONSIVE */

@media (max-width: 900px) {

    .page-hero {
        min-height: 450px;
    }

}

@media (max-width: 600px) {

    .page-hero {
        min-height: 400px;
    }

    .page-hero h1 {
        font-size: 44px;
    }
/* ================= GALLERY PAGE ================= */

.gallery-page-hero {
    background:
        linear-gradient(rgba(30,18,12,.72), rgba(30,18,12,.78)),
        url("images/header/new1.jpg") center/cover no-repeat;
}

.new-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
}

.gallery-photo {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    background-size: cover;
    background-position: center;
    transition: .35s ease;
}

.gallery-photo:hover {
    transform: translateY(-5px);
}

.gallery-photo span {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

.gallery-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 35%,
        rgba(0,0,0,.75)
    );
}

..gallery-photo {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    border-radius: 4px;
}

.gallery-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 40%,
        rgba(0,0,0,.75)
    );
}

.gallery-photo span {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.photo-1 {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 900px) {
    .photo-1 {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .photo-1 {
        grid-column: span 1;
    }
}


/* GALLERY MOBILE */

@media (max-width: 900px) {

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

    .photo-1 {
        grid-column: span 2;
        grid-row: span 1;
    }

}

@media (max-width: 600px) {

    .new-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .photo-1 {
        grid-column: span 1;
    }

}.gallery-photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
    z-index: 0;
}

.gallery-photo span {
    z-index: 3;
}.gallery-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}/* SIMPLE 6 PHOTO GALLERY */

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

.new-gallery .gallery-photo {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.new-gallery .gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.new-gallery .gallery-photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(transparent, rgba(0,0,0,.8));
}

.new-gallery .gallery-photo span {
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 2;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 800px) {
    .new-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .new-gallery {
        grid-template-columns: 1fr;
    }
}/* GALLERY - EQUAL SIZE */

.new-gallery {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    width: 100%;
}

.new-gallery .gallery-photo {
    position: relative !important;
    width: 100% !important;
    height: 350px !important;
    min-height: 350px !important;
    overflow: hidden !important;
    border-radius: 8px;
}

.new-gallery .gallery-photo img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.new-gallery .gallery-photo span {
    position: absolute !important;
    left: 20px !important;
    bottom: 18px !important;
    z-index: 5 !important;
    color: white !important;
}/* GALLERY STORY */

.gallery-story {
    padding: 100px 0;
    text-align: center;
    background: #17110d;
    color: white;
}

.gallery-story .container {
    max-width: 850px;
}

.gallery-story h2 {
    font-size: 48px;
    line-height: 1.15;
    margin: 15px 0 25px;
}

.gallery-story h2 span {
    color: #d9a441;
}

.gallery-story p:not(.section-label) {
    color: #cfcfcf;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}.logo img {
    width: 150px;
    height: auto;
    display: block;
    object-fit: contain;
}/* Asharaf Khan Section */
.asharaf-section {
    padding: 70px 20px;
    background: #f7f3ec;
}

.asharaf-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.asharaf-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.asharaf-content .section-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.asharaf-content h2 {
    margin: 0 0 20px;
    font-size: 34px;
}

.asharaf-content p {
    font-size: 17px;
    line-height: 1.8;
    margin: 0 auto 18px;
}

.asharaf-role {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.asharaf-role strong {
    font-size: 18px;
}

.asharaf-role span {
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 600px) {
    .asharaf-section {
        padding: 45px 15px;
    }

    .asharaf-card {
        padding: 30px 20px;
    }

    .asharaf-content h2 {
        font-size: 28px;
    }

    .asharaf-content p {
        font-size: 16px;
    }
}/* =================================
   ASHARAF KHAN SECTION
================================= */

.asharaf-section {
    padding: 80px 20px;
    background: #f5f1e8;
}

.asharaf-container {
    max-width: 1000px;
    margin: 0 auto;
}

.asharaf-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.asharaf-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
    background: #f1dfb9;
    color: #76531d;
}

.asharaf-card h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.2;
    color: #29231c;
}

.asharaf-divider {
    width: 70px;
    height: 3px;
    margin: 22px auto 30px;
    background: #c9973e;
    border-radius: 10px;
}

.asharaf-card p {
    max-width: 780px;
    margin: 0 auto 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #5b554d;
}

.asharaf-card .asharaf-main-text {
    font-size: 18px;
    color: #37322c;
}

.asharaf-role {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0 38px;
}

.asharaf-role span {
    padding: 10px 18px;
    border: 1px solid #d8c7a8;
    border-radius: 30px;
    font-size: 14px;
    color: #655333;
    background: #faf7f0;
}

.asharaf-connect {
    padding-top: 28px;
    border-top: 1px solid #e5ded3;
}

.asharaf-connect h3 {
    margin: 0 0 20px;
    font-size: 21px;
    color: #332c25;
}

.asharaf-instagram {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 24px;
    border-radius: 12px;
    text-decoration: none;
    background: #f3e6dc;
    color: #4c3027;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.asharaf-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.instagram-icon {
    font-size: 30px;
    line-height: 1;
}

.asharaf-instagram strong {
    display: block;
    text-align: left;
    font-size: 15px;
}

.asharaf-instagram small {
    display: block;
    margin-top: 3px;
    text-align: left;
    font-size: 13px;
}

/* Mobile */
@media (max-width: 700px) {

    .asharaf-section {
        padding: 50px 15px;
    }

    .asharaf-card {
        padding: 40px 20px;
        border-radius: 18px;
    }

    .asharaf-card h2 {
        font-size: 32px;
    }

    .asharaf-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .asharaf-card .asharaf-main-text {
        font-size: 17px;
    }

    .asharaf-role {
        gap: 8px;
    }

    .asharaf-role span {
        font-size: 13px;
        padding: 8px 14px;
    }

    .asharaf-instagram {
        width: 90%;
        max-width: 280px;
        justify-content: center;
        box-sizing: border-box;
    }
}/* =========================================
   ASHARAF KHAN - PROFILE SECTION
========================================= */

.asharaf-section {
    padding: 90px 20px;
    background: #f4efe6;
}

.asharaf-container {
    max-width: 1100px;
    margin: 0 auto;
}

.asharaf-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    overflow: hidden;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

/* Left visual */

.asharaf-visual {
    min-height: 520px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #2d2924;
    color: #fff;
}

.ak-circle {
    width: 155px;
    height: 155px;
    border: 2px solid #c99a4b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.ak-name {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 4px;
}

.ak-line {
    width: 55px;
    height: 2px;
    margin: 22px 0;
    background: #c99a4b;
}

.ak-small {
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.75;
}

/* Right content */

.asharaf-content {
    padding: 65px 60px;
}

.asharaf-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: #f3e5c9;
    color: #765522;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.asharaf-content h2 {
    margin: 20px 0 15px;
    font-size: 42px;
    line-height: 1.15;
    color: #2d2924;
}

.asharaf-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 18px;
    background: #c99a4b;
    border-radius: 5px;
}

.asharaf-content p {
    max-width: 650px;
    margin: 20px 0;
    color: #625d56;
    font-size: 16px;
    line-height: 1.8;
}

.asharaf-content .asharaf-main-text {
    color: #37322c;
    font-size: 17px;
}

/* Skills */

.asharaf-role {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.asharaf-role span {
    padding: 9px 14px;
    border: 1px solid #ded2bd;
    border-radius: 20px;
    color: #655238;
    background: #fbf8f2;
    font-size: 13px;
}

/* Instagram */

.asharaf-connect {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e7e0d5;
}

.connect-label {
    display: block;
    margin-bottom: 13px;
    color: #777067;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.asharaf-instagram {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 250px;
    padding: 13px 18px;
    box-sizing: border-box;
    border-radius: 12px;
    background: #f1e3d8;
    color: #493126;
    text-decoration: none;
    transition: all 0.25s ease;
}

.asharaf-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.instagram-icon {
    font-size: 30px;
    line-height: 1;
}

.instagram-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.instagram-text strong {
    font-size: 14px;
}

.instagram-text small {
    font-size: 12px;
    opacity: 0.75;
}

.arrow {
    margin-left: auto;
    font-size: 20px;
}

/* Mobile */

@media (max-width: 800px) {

    .asharaf-section {
        padding: 55px 15px;
    }

    .asharaf-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .asharaf-visual {
        min-height: 330px;
        padding: 35px 20px;
    }

    .ak-circle {
        width: 120px;
        height: 120px;
        font-size: 38px;
    }

    .ak-name {
        font-size: 23px;
    }

    .asharaf-content {
        padding: 40px 25px;
    }

    .asharaf-content h2 {
        font-size: 32px;
    }

    .asharaf-content p {
        font-size: 15px;
    }

    .asharaf-instagram {
        width: 100%;
        min-width: 0;
    }
}/* =========================================
   MANJOOR KHAN - ARTIST SECTION
   ========================================= */

.artist-section {
    padding: 80px 20px;
    background: #f5f0e7;
}

.artist-container {
    max-width: 1100px;
    margin: 0 auto;
}

.artist-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0;
    align-items: stretch;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

/* Manjoor Khan Photo */

.artist-photo-card img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 420px;

    display: block;
er

    object-fit: contain;
    object-position: center top;

    background: #211b16;
    border-radius: 11px;
}

/* Artist information */

.artist-content {
    padding: 55px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-content h2 {
    margin: 0 0 18px;
    font-size: 40px;
    line-height: 1.2;
}

.artist-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #5d574f;
    margin: 0 0 18px;
}

/* Mobile */

@media (max-width: 800px) {

    .artist-section {
        padding: 50px 15px;
    }

    .artist-grid {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .artist-photo {
        min-height: auto;
        height: 400px;
    }

    .artist-photo img {
        height: 400px;
        object-fit: cover;
        object-position: center top;
    }

    .artist-content {
        padding: 40px 25px;
    }

    .artist-content h2 {
        font-size: 32px;
    }

    .artist-content p {
        font-size: 16px;
    }
}/* =========================================
   MANJOOR KHAN - ARTIST SECTION
========================================= */

.artist-section {
    padding: 90px 20px;
    background: #f4efe6;
}

.artist-container {
    max-width: 1150px;
    margin: 0 auto;
}

.artist-grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

/* PHOTO */

/* =========================================
   MANJOOR KHAN - GLOSSY PHOTO CARD
========================================= */

.artist-photo {
    min-height: 650px;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: linear-gradient(145deg, #29231d, #4a3928);
}

.artist-photo-card {
    position: relative;
    width: 100%;
    max-width: 330px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #f5d99a,
        #9b6b28,
        #f0c875,
        #76501e
    );
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(220, 170, 75, 0.20);
}

/* Inner card */

.artist-photo-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 20px;
    background: #211b16;
    z-index: 0;
}

/* Photo */

.artist-photo-card img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 390px;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 17px;
}

/* Glossy shine */

.artist-photo-shine {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: -80%;
    width: 55%;
    height: 90%;
    transform: skewX(-20deg);
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

/* Caption */

.artist-photo-caption {
    position: relative;
    z-index: 4;
    padding: 18px 10px 12px;
    text-align: center;
    color: #ffffff;
}

.artist-photo-caption strong {
    display: block;
    font-size: 20px;
    letter-spacing: 1px;
}

.artist-photo-caption span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 1.5px;
    opacity: 0.75;
}

/* Mobile */

@media (max-width: 850px) {

    .artist-photo {
        min-height: auto;
        padding: 35px 25px;
    }

    .artist-photo-card {
        max-width: 300px;
    }

    .artist-photo-card img {
        height: 350px;
    }
}

/* CONTENT */

.artist-content {
    padding: 55px 60px;
}

.artist-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f0dfbc;
    color: #70501d;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.artist-content h2 {
    margin: 18px 0 0;
    font-size: 44px;
    line-height: 1.15;
    color: #2d2822;
}

.artist-divider {
    width: 65px;
    height: 3px;
    margin: 20px 0 28px;
    background: #c99742;
    border-radius: 5px;
}

.artist-content p {
    margin: 0 0 18px;
    color: #5c564e;
    font-size: 16px;
    line-height: 1.8;
}

/* HIGHLIGHTS */

.artist-highlight {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 32px;
    padding-top: 25px;
    border-top: 1px solid #e4ddd3;
}

.artist-highlight div {
    text-align: center;
    padding: 15px 8px;
    background: #faf7f0;
    border-radius: 12px;
}

.artist-highlight strong {
    display: block;
    color: #9a6c26;
    font-size: 20px;
    margin-bottom: 5px;
}

.artist-highlight span {
    display: block;
    color: #6b6359;
    font-size: 11px;
    line-height: 1.4;
}

/* MOBILE */

@media (max-width: 850px) {

    .artist-section {
        padding: 55px 15px;
    }

    .artist-grid {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .artist-photo {
        height: 450px;
        min-height: 0;
    }

    .artist-photo img {
        height: 450px;
        min-height: 0;
        object-fit: cover;
        object-position: center top;
    }

    .artist-content {
        padding: 40px 25px;
    }

    .artist-content h2 {
        font-size: 34px;
    }

    .artist-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .artist-highlight {
        grid-template-columns: 1fr;
    }
}.artist-tag {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 5px;
}

.artist-tag span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #a47732;
    text-transform: uppercase;
}

.artist-tag strong {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #6b4b20;
    text-transform: uppercase;
}.site-logo {
    width: 150px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 700px) {
    .site-logo {
        width: 120px;
        max-width: 45vw;
        height: auto;
    }
.about-page-image {
    width: 100%;
    max-width: 420px;
    height: 320px;
    overflow: hidden;
    border-radius: 18px;
}.about-page-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
}/* HERITAGE PHOTO - SMALL CARD */
.about.about-grid .about-page-image {
    width: 360px !important;
    max-width: 100% !important;
    height: 300px !important;
    min-height: 0 !important;
    margin: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.about.about-grid .about-page-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
}/* SMALL HERITAGE PHOTO CARD */

.about-grid .about-page-image {
    width: 360px !important;
    height: 300px !important;
    min-height: 0 !important;
    max-width: 360px !important;
    margin: auto !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border-radius: 16px !important;
}

.about-grid .about-page-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    border-radius: 10px !important;
}