        .about-hero {
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 40px 80px;
            position: relative;
            background: url('../images/about-hero.jpg') center/cover no-repeat;
            color: var(--cream);
        }

        .about-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(30, 22, 10, 0.85);
            z-index: 0;
            pointer-events: none;
        }

        .about-hero > * {
            position: relative;
            z-index: 1;
        }

        [data-theme="dark"] .about-hero::before {
            background: rgba(8, 6, 3, 0.78);
        }

        .about-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 2px 2px 0 rgba(212, 160, 74, 0.15);
        }

        .about-hero h1 em {
            font-style: italic;
            color: var(--gold-light);
            text-shadow: 2px 3px 0 rgba(198, 93, 42, 0.15);
        }

        .about-hero .subtitle {
            font-size: 1.05rem;
            color: var(--tan);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ==========================================
           CONTENT SECTIONS
        ========================================== */
        .about-section {
            padding: 80px 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .about-section + .about-section {
            border-top: 1px solid var(--cream-dark);
        }

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

        .about-grid.reverse {
            direction: rtl;
        }

        .about-grid.reverse > * {
            direction: ltr;
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 4vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .about-text h2 em {
            font-style: italic;
            color: var(--terracotta);
        }

        /* Decorative underline */
        .about-text h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold));
            margin-top: 12px;
            border-radius: 2px;
        }

        .about-text p {
            font-size: 0.95rem;
            color: var(--brown-light);
            line-height: 1.9;
            margin-bottom: 15px;
        }

        .about-visual {
            border-radius: 12px;
            min-height: 320px;
            background-size: cover;
            background-position: center;
            box-shadow: 0 15px 40px rgba(42, 31, 16, 0.15), 0 0 0 1px rgba(42, 31, 16, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .about-visual:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(42, 31, 16, 0.2), 0 0 0 1px rgba(198, 93, 42, 0.1);
        }

        /* ==========================================
           CURATE — Photo background
        ========================================== */
        #curate {
            background: url('../images/vinyl101-playing.jpg') center/cover no-repeat;
            position: relative;
            max-width: none;
            padding: 80px 40px;
        }

        #curate::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(30, 22, 10, 0.88);
            z-index: 0;
            pointer-events: none;
        }

        [data-theme="dark"] #curate::before {
            background: rgba(8, 6, 3, 0.78);
        }

        #curate > * {
            position: relative;
            z-index: 1;
        }

        #curate .about-text h2,
        #curate .about-text p {
            color: #faf0dc;
        }
        #curate .about-text h2 em { color: var(--gold-light); }

        /* ==========================================
           VALUES — Plain cream background
        ========================================== */
        #values {
            background: var(--cream);
            position: relative;
            max-width: none;
            padding: 80px 40px;
        }

        #values > * {
            position: relative;
            z-index: 1;
        }

        #values + .about-section {
            border-top: none;
        }

        .section-center-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-center-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
        }

        .section-center-title h2 em {
            font-style: italic;
            color: var(--terracotta);
        }

        .section-center-title h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--terracotta), var(--gold));
            margin: 12px auto 0;
            border-radius: 2px;
        }

        #values .section-center-title h2 {
            color: var(--brown);
        }

        #values .section-center-title h2 em {
            color: var(--terracotta);
        }

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

        .value-card {
            background: var(--warm-white);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(42, 31, 16, 0.05);
            box-shadow: 0 4px 15px rgba(42, 31, 16, 0.06);
        }

        [data-theme="dark"] .value-card { background: var(--cream-dark); border-color: rgba(255,255,255,0.05); }

        #values .value-card {
            background: var(--warm-white);
            border: 1px solid var(--cream-dark);
        }

        #values .value-card h3 { color: var(--brown); }
        #values .value-card p { color: var(--brown-light); }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(42, 31, 16, 0.12);
        }

        .value-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            margin: 0 auto 16px;
            border: 3px solid var(--gold);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .value-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .value-card p {
            font-size: 0.85rem;
            color: var(--brown-light);
            line-height: 1.7;
        }

        /* ==========================================
           STATS — Photo background
        ========================================== */
        #stats {
            background: url('../images/about-stats-bg.jpg') center/cover no-repeat;
            position: relative;
            color: var(--cream);
            max-width: none;
            padding: 80px 40px;
        }

        #stats::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(30, 22, 10, 0.88);
            z-index: 0;
            pointer-events: none;
        }

        [data-theme="dark"] #stats::before {
            background: rgba(8, 6, 3, 0.78);
        }

        #stats > * {
            position: relative;
            z-index: 1;
        }

        #stats + .about-section,
        #stats + #team {
            border-top: none;
        }

        .stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .stat-item {
            background: rgba(42, 31, 16, 0.5);
            padding: 30px 20px;
            text-align: center;
        }

        [data-theme="dark"] .stat-item { background: rgba(20, 15, 8, 0.6); }

        .stat-number {
            font-family: 'Space Mono', monospace;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold-light);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--tan);
        }

        /* ==========================================
           TEAM — Photo background
        ========================================== */
        #team {
            background: var(--cream);
            position: relative;
            max-width: none;
            padding: 80px 40px;
            text-align: center;
        }

        #team > * {
            position: relative;
            z-index: 1;
        }

        #team .section-center-title h2 {
            color: var(--brown);
        }

        #team .section-center-title h2 em {
            color: var(--terracotta);
        }

        #team .section-center-title h2::after {
            background: linear-gradient(90deg, var(--gold), var(--mustard));
        }

        #team > p {
            color: var(--tan);
            margin-bottom: 40px;
            font-size: 0.95rem;
        }

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

        .team-card {
            background: var(--warm-white);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--cream-dark);
            box-shadow: 0 4px 15px rgba(42, 31, 16, 0.06);
        }

        [data-theme="dark"] .team-card { background: var(--cream-dark); border-color: rgba(255,255,255,0.05); }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .team-avatar {
            height: 220px;
            background-size: cover;
            background-position: center;
        }

        .team-info {
            padding: 20px;
        }

        .team-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 4px;
            color: var(--brown);
        }

        .team-info .role {
            font-family: 'Space Mono', monospace;
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--terracotta);
            margin-bottom: 10px;
        }

        .team-info p {
            font-size: 0.8rem;
            color: var(--brown-light);
            line-height: 1.6;
        }

        /* ==========================================
           CTA — Photo background
        ========================================== */
        .cta-section {
            background: var(--brown);
            position: relative;
            color: var(--cream);
            max-width: none;
            text-align: center;
            padding: 80px 40px;
        }

        [data-theme="dark"] .cta-section {
            background: #15120d;
        }

        .cta-section > * {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
        }

        .cta-section h2 em {
            font-style: italic;
            color: var(--gold-light);
        }

        .cta-section p {
            color: var(--tan);
            margin-bottom: 30px;
            line-height: 1.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 30px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 30px;
            background: linear-gradient(135deg, var(--terracotta) 0%, var(--rust) 100%);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(181, 50, 42, 0.3), inset 0 1px 0 rgba(255,255,255,0.15);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--mustard) 0%, var(--gold) 100%);
            color: var(--brown);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 160, 74, 0.35);
        }

        /* ==========================================
           FOOTER
        ========================================== */
        footer {
            background: var(--brown);
            color: var(--cream);
            padding: 60px 50px 30px;
            transition: background 0.3s, color 0.3s;
        }

        [data-theme="dark"] footer { background: #111; color: #f5f0e6; }

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

        .footer-brand .logo {
            color: var(--cream);
            font-size: 2rem;
            margin-bottom: 15px;
            display: block;
            text-shadow: 1px 1px 0 rgba(212, 160, 74, 0.3);
        }

        .footer-brand p {
            color: var(--tan);
            font-size: 0.85rem;
            line-height: 1.8;
        }

        .footer-column h4 {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 20px;
            color: var(--tan);
        }

        .footer-column ul { list-style: none; }
        .footer-column li { margin-bottom: 12px; }

        .footer-column a {
            color: var(--cream);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
        }

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

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

        .footer-bottom p {
            font-size: 0.75rem;
            color: var(--tan);
        }

        .social-links { display: flex; gap: 15px; }
        .social-links a { color: var(--tan); transition: color 0.2s; }
        .social-links a:hover { color: var(--cream); }

        /* ==========================================
           RESPONSIVE
        ========================================== */
        @media (max-width: 768px) {
            .about-hero { padding: 70px 20px 50px; }
            .about-section { padding: 50px 20px; }
            #values, #stats, #team, .cta-section { padding: 50px 20px; }
            .about-grid { grid-template-columns: 1fr; gap: 30px; }
            .about-grid.reverse { direction: ltr; }
            .values-grid { grid-template-columns: 1fr; }
            .stats-bar { grid-template-columns: repeat(2, 1fr); }
            .team-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 25px; }
            footer { padding: 40px 20px 70px; }
        }
        @media (max-width: 480px) {
            .about-hero { padding: 60px 15px 40px; }
            .about-section { padding: 40px 15px; }
            #values, #stats, #team, .cta-section { padding: 40px 15px; }
            .about-grid { gap: 20px; }
            .stats-bar { grid-template-columns: 1fr 1fr; gap: 15px; }
            footer { padding: 30px 15px 70px; }
        }
