/* ============================================
   SAYA KHAN - High Fashion Website Styles
   Inspired by Zendaya's Minimalist Editorial Design
   ============================================ */

/* CSS Variables */
:root {
    --color-bg: #F5F2EB;
    --color-bg-alt: #EDE8E0;
    --color-text: #1A1A1A;
    --color-text-light: #4A4A4A;
    --color-text-muted: #7A7A7A;
    --color-accent: #C4A574;
    --color-white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --border-radius: 8px;
    --max-width: 1400px;
    --spacing-unit: 8px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Selection */
::selection {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* ============================================
   Navigation
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(245, 242, 235, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.main-nav.scrolled {
    padding: 1rem 3rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
}

.nav-logo a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-light);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-text);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-text);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition-smooth);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text);
}

/* ============================================
   Section Container
   ============================================ */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--color-accent);
    margin-top: 1.5rem;
}

.section-header.centered .section-title::after {
    margin: 1.5rem auto 0;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-bg);
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    right: -5vw;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 30vw;
    font-weight: 600;
    color: rgba(196, 165, 116, 0.06);
    line-height: 1;
    letter-spacing: -0.02em;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text {
    max-width: 700px;
}

.hero-title {
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding-left: 0;
    position: relative;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: var(--color-accent);
    display: none;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 2.5rem 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    white-space: nowrap;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    width: fit-content;
    min-width: 240px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-text);
    transition: var(--transition-smooth);
    z-index: -1;
}

.hero-cta:hover {
    color: var(--color-white);
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta span {
    flex-shrink: 0;
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 48%;
    height: 100vh;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--color-accent);
    z-index: 3;
    pointer-events: none;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-bg) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}


/* ============================================
   About Section
   ============================================ */
.about {
    padding: 10rem 0;
    background-color: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius);
    z-index: -1;
}

.about-image img {
    width: 100%;
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content {
    padding: 2rem 0;
}

.about-text {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* ============================================
   Quote Section
   ============================================ */
.quote-section {
    padding: 8rem 0;
    background-color: var(--color-bg-alt);
}

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

.quote-content blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
}

.quote-content blockquote::before {
    content: '"';
    display: block;
    font-size: 4rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
}

/* ============================================
   Empowerment Section
   ============================================ */
.empowerment {
    padding: 10rem 0;
    background-color: var(--color-bg);
}

.empowerment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.empowerment-text p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.empowerment-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.feature-icon {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.empowerment-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.empowerment-image img {
    width: 100%;
    transition: var(--transition-smooth);
}

.empowerment-image:hover img {
    transform: scale(1.03);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ============================================
   Business Section
   ============================================ */
.business {
    padding: 10rem 0;
    background-color: var(--color-bg-alt);
}

.business-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.business-content {
    padding: 2rem 0;
}

.business-text {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.business-quote {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--color-accent);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-text);
}

.business-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.business-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius);
    z-index: -1;
}

.business-image img {
    width: 100%;
    transition: var(--transition-smooth);
}

.business-image:hover img {
    transform: scale(1.03);
}

/* ============================================
   Music Section
   ============================================ */
.music {
    padding: 10rem 0;
    background-color: var(--color-bg);
}

.music-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.music-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.music-image img {
    width: 100%;
    transition: var(--transition-smooth);
}

.music-image:hover img {
    transform: scale(1.03);
}

.music-info h3 {
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

.music-info p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.9;
}


/* ============================================
   Style Section
   ============================================ */
.style {
    padding: 10rem 0;
    background-color: var(--color-bg-alt);
}

.style-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.9;
}

.style-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    grid-auto-flow: row dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 3/4;
}

.gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 3/4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition-smooth);
}

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

.style-actions {
    display: none;
    justify-content: center;
    margin-top: 2.5rem;
}

.style-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.style-view-more:hover,
.style-view-more:focus {
    color: var(--color-white);
    background-color: var(--color-text);
}

/* ============================================
   Challenges Section
   ============================================ */
.challenges {
    padding: 10rem 0;
    background-color: var(--color-bg);
}

.challenges-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.challenges-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.challenges-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--color-accent);
    border-radius: var(--border-radius);
    z-index: -1;
}

.challenges-image img {
    width: 100%;
    transition: var(--transition-smooth);
}

.challenges-image:hover img {
    transform: scale(1.03);
}

.challenges-text p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

/* ============================================
   Lifestyle Section
   ============================================ */
.lifestyle {
    padding: 10rem 0;
    background-color: var(--color-bg-alt);
}

.lifestyle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.lifestyle-text p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.lifestyle-aspects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.aspect {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--color-bg);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.aspect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.aspect h4 {
    font-family: var(--font-display);
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.aspect p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.lifestyle-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.lifestyle-image img {
    width: 100%;
    transition: var(--transition-smooth);
}

.lifestyle-image:hover img {
    transform: scale(1.03);
}

/* ============================================
   Future Section
   ============================================ */
.future {
    padding: 10rem 0;
    background-color: var(--color-bg);
}

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

.future .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.future-content p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.future-plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

.plan {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.plan:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.plan-icon {
    font-size: 1.25rem;
}

/* ============================================
   Final Quote Section
   ============================================ */
.final-quote {
    padding: 10rem 0;
    background-color: var(--color-text);
    color: var(--color-white);
}

.final-quote .quote-content blockquote {
    color: var(--color-white);
}

.final-quote .quote-content blockquote::before {
    color: var(--color-accent);
}

.final-quote cite {
    display: block;
    margin-top: 2rem;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    padding: 6rem 0 3rem;
    background-color: var(--color-text);
    color: var(--color-white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .section-container {
        padding: 0 2rem;
    }

    .hero-content {
        padding: 0 3rem;
    }

    .about-grid,
    .empowerment-content,
    .business-grid,
    .music-content,
    .challenges-content,
    .lifestyle-content {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-bg-text {
        font-size: 25vw;
        right: -8vw;
    }

    .hero-content {
        padding: 7rem 3rem 3rem;
        align-items: center;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-cta {
        margin: 0 auto;
    }

    .hero {
        flex-direction: column-reverse;
    }

    .hero-content {
        padding: 7rem 3rem 3rem;
        align-items: center;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        height: 60vh;
    }

    .hero-image::after {
        display: none;
    }

    .hero-image::before {
        display: none;
    }

    .about-grid,
    .empowerment-content,
    .business-grid,
    .music-content,
    .challenges-content,
    .lifestyle-content {
        grid-template-columns: 1fr;
    }

    .about-image,
    .business-image,
    .challenges-image,
    .lifestyle-image {
        order: -1;
    }

    .about-stats,
    .lifestyle-aspects {
        grid-template-columns: repeat(3, 1fr);
    }

    .style-gallery {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 3/4;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 1rem 1.5rem;
    }

    .section-container {
        padding: 0 1.5rem;
    }

    .hero-content {
        padding: 5rem 1.5rem 2.5rem;
    }

    .hero-bg-text {
        font-size: 30vw;
        right: -10vw;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 2rem;
        padding-top: 1.25rem;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    h1 {
        font-size: inherit;
    }

    h2 {
        font-size: 1.75rem;
    }

    .about {
        padding: 5rem 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat {
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 1rem;
    }

    .stat-number::after {
        content: '';
        display: inline;
    }

    .empowerment,
    .business,
    .music,
    .challenges,
    .lifestyle,
    .future {
        padding: 5rem 0;
    }

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

    .gallery-item.large {
        grid-column: span 1;
        aspect-ratio: 3/4;
    }

    .style-gallery.is-collapsed .gallery-item:nth-child(n + 7) {
        display: none;
    }

    .lifestyle-aspects {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .future-plans {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 4.5rem 1rem 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }

    .hero-cta {
        padding: 0.875rem 1.5rem 0.875rem 1.25rem;
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        min-width: 200px;
    }

    .hero-cta svg {
        width: 16px;
        height: 16px;
    }

    .hero {
        flex-direction: column-reverse;
    }

    .hero-content {
        padding: 2rem 1.5rem 2rem;
        align-items: center;
        text-align: center;
    }

    .hero-bg-text {
        display: none;
    }

    .hero-image {
        width: 100%;
        height: auto;
        min-height: 65vh;
        margin: 0;
    }

    .hero-image::after {
        display: none;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        min-height: 65vh;
        object-fit: cover;
        object-position: center center;
    }

    .section-label {
        font-size: 0.65rem;
    }

    .quote-content blockquote {
        font-size: 1.25rem;
    }

    .music-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ============================================
   Loading Animation
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
