:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2c2c2c;
    --accent-color: #d4af37;
    --text-color: #f0f0f0;
    --text-muted: #aaa;
    --background-color: #121212;
    --font-heading: 'Playfair Display',
        serif;
    --font-body: 'Inter',
        sans-serif;
    --transition-speed: 0.3s;
    --container-width: 1200px;
    --header-height: 80px;
}

/* Utilities */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--secondary-color);
}

.bg-dark {
    background-color: var(--primary-color);
}

.small-heading {
    color: var(--accent-color);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--accent-color);
}

.text-white {
    color: var(--text-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.mt-10 {
    margin-top: 10px;
}

/* Header */
header {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.site-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.logo:hover .site-logo-img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

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

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--accent-color);
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-links-col,
.footer-contact-col,
.footer-brand,
.footer-links,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links-col h4,
.footer-contact-col h4,
.footer-brand h4,
.footer-links h4,
.footer-contact h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links-col ul li,
.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links-col a,
.footer-links a,
.footer-contact-col p,
.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition-speed);
    line-height: 1.8;
}

.footer-links-col a:hover,
.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.3rem;
    transition: var(--transition-speed);
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Page Headers */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('asset/IMG-20240930-WA0000.jpg.webp');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    margin-top: var(--header-height);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    font-style: italic;
}

/* Life Story Styles */
.bio-content {
    max-width: 900px;
    margin: 0 auto;
}

.bio-chapter {
    margin-bottom: 60px;
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.chapter-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.bio-image {
    max-width: 40%;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 2px solid var(--accent-color);
    object-fit: cover;
}

.float-right {
    float: right;
    margin-left: 30px;
}

.float-left {
    float: left;
    margin-right: 30px;
}

/* Foundation Styles */
.foundation-grid {
    margin-bottom: 60px;
}

.foundation-details {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.address-box {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid var(--accent-color);
    display: inline-block;
    border-radius: 4px;
}

.address-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.member-category {
    margin-bottom: 40px;
}

.member-category h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.member-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.member-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 4px;
    border-left: 2px solid var(--accent-color);
}

/* Musical Achievements Styles */
.achievement-block {
    margin-bottom: 60px;
}

.achievement-block h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 15px;
    display: inline-block;
}

.achievement-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.achievement-list li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.album-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.musicians-list,
.tracklist {
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 4px;
}

.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.bodo-release {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    border-top: 3px solid var(--accent-color);
}

.highlight-block {
    background: linear-gradient(45deg, var(--secondary-color), #222);
    padding: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
}

/* Tributes Styles */
.tribute-form-container {
    max-width: 600px;
    margin: 0 auto 80px;
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 8px;
}

.tribute-form .form-group {
    margin-bottom: 20px;
}

.tribute-form input,
.tribute-form textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border-radius: 4px;
    font-family: var(--font-body);
}

.tribute-form input:focus,
.tribute-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.tribute-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.tribute-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tribute-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.tribute-author {
    font-weight: 700;
    color: var(--accent-color);
}

.tribute-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tribute-text {
    font-style: italic;
    color: #ccc;
}

/* 1. Hero Section (Split Layout) */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #080808;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(15%) brightness(0.55) contrast(1.1);
    z-index: 0;
    display: block;
    max-width: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(8, 8, 8, 0.92) 0%,
            rgba(8, 8, 8, 0.75) 40%,
            rgba(8, 8, 8, 0.35) 100%);
    z-index: 1;
}



.hero-container {
    max-width: 640px;
    margin-left: 80px;
    margin-right: auto;
    position: relative;
    z-index: 2;
    padding: 20px 20px;
    width: 100%;
}

.hero-text {
    text-align: left;
}

.artist-label {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-dates {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.7;
}

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

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    transition: var(--transition-speed);
}

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.hero-image-col {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-portrait {
    max-height: 80vh;
    width: auto;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    filter: brightness(0.9) contrast(1.1);
    transition: var(--transition-speed);
}

.hero-portrait:hover {
    transform: scale(1.02);
    filter: brightness(1);
}

/* 2. About Section */
.about-summary {
    max-width: 700px;
    margin: 0 auto 40px;
}

.summary-list {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.summary-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    color: var(--text-color);
}

.summary-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1rem;
}

.btn-outline {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition-speed);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #000;
}

/* 3. Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-speed);
}

.achievement-box:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.achievement-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.achievement-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.achievement-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 4. Timeline Section */
.timeline-section {
    background: #0e0e0e;
}

.timeline {
    position: relative;
    max-width: 860px;
    margin: 50px auto 0;
    padding: 10px 0;
}

/* Centre vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5) 10%, rgba(212, 175, 55, 0.5) 90%, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
    margin-bottom: 48px;
    position: relative;
}

/* Even items go to the right side */
.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 40px);
}

/* Dot on the centre line */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 2px solid #0e0e0e;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
    z-index: 2;
}

/* Card */
.timeline-item .year,
.timeline-item .event {
    /* reset old absolute/width styles */
    position: static;
    transform: none;
    width: auto;
}

.timeline-item {
    /* wrap year+event in a card-like block */
    align-items: stretch;
}

/* Re-style year pill */
.timeline-item .year {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
    border: none;
}

/* Event card */
.timeline-item .event {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 16px 22px;
    max-width: 320px;
    text-align: left;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Remove old order/padding overrides */
.timeline-item:nth-child(even) .event {
    order: unset;
    text-align: left;
    padding-right: 22px;
    padding-left: 22px;
}

.timeline-item:nth-child(odd) .event {
    margin-right: 0;
    text-align: right;
}

/* ── Mobile: single column, line on left ── */
@media (max-width: 680px) {
    .timeline::before {
        left: 16px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 52px;
        padding-right: 0;
    }

    .timeline-item::before {
        left: 16px;
        top: 24px;
        transform: translate(-50%, 0);
    }

    .timeline-item .event {
        max-width: 100%;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .event {
        text-align: left;
    }
}


/* 5. Featured Works */
.works-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px auto;
    max-width: 900px;
}

.work-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-speed);
}

.work-tag:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
}

/* 6. Legacy Section */
.legacy-section {
    background: url('asset/hero.png') no-repeat center center/cover;
    position: relative;
    padding: 150px 0;
    background-attachment: fixed;
}

.legacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.legacy-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.legacy-text {
    font-size: 1.25rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

/* 7. Gallery Preview */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition-speed);
    filter: grayscale(0.5);
    cursor: pointer;
}

.gallery-grid img:hover {
    filter: grayscale(0);
    transform: scale(1.03);
}

.btn-outline-white {
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

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

/* 8. Tribute CTA */
.tribute-cta-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Clearfix for floats */
.chapter-content::after {
    content: "";
    display: table;
    clear: both;
}

/* ═══════════════════════════════════════
   RESPONSIVE — Tablet (≤ 900px)
═══════════════════════════════════════ */
@media (max-width: 900px) {

    /* Hero */
    .hero-container {
        margin-left: 40px;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-content {
        gap: 30px;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Global layout ── */
    .section {
        padding: 50px 0;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* ── Mobile Nav ── */
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        background-color: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(12px);
        height: calc(100vh - var(--header-height));
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 999;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* ── Hero Section ── */
    .hero-section {
        min-height: 100svh;
        align-items: center;
    }

    .hero-container {
        margin-left: 0;
        margin-right: 0;
        padding: calc(var(--header-height) + 20px) 24px 40px;
        width: 100%;
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(8, 8, 8, 0.85) 0%,
                rgba(8, 8, 8, 0.70) 100%);
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* ── About Section ── */
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-summary {
        padding: 0 10px;
    }

    /* ── Gallery Preview ── */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-grid img {
        height: 220px;
    }

    /* ── Legacy Section ── */
    .legacy-section {
        background-attachment: scroll;
        /* Fix iOS fixed-bg bug */
        padding: 80px 0;
    }

    .legacy-title {
        font-size: 2rem;
    }

    .legacy-text {
        font-size: 1.05rem;
        padding: 0 10px;
    }

    /* ── Featured Works ── */
    .works-list {
        gap: 10px;
        margin: 25px auto;
    }

    .featured-video-container {
        padding: 0 10px;
    }

    /* ── Page Headers ── */
    .page-title {
        font-size: 1.9rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    /* ── Life Story ── */
    .bio-chapter {
        padding: 25px 20px;
    }

    .bio-image {
        width: 100%;
        float: none;
        margin: 0 0 20px 0;
        max-width: 100%;
    }

    /* ── Musical Achievements ── */
    .discography-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .achievement-block h2 {
        font-size: 1.5rem;
    }

    .highlight-block {
        padding: 30px 20px;
    }

    /* ── Foundation / Member list ── */
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .member-list {
        grid-template-columns: 1fr;
    }

    /* ── Footer ── */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        min-width: auto;
        width: 100%;
    }

    footer {
        padding: 50px 0 25px;
    }

    /* ── Tributes ── */
    .tribute-wall {
        grid-template-columns: 1fr;
    }

    .tribute-form-container {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .legacy-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .achievement-box {
        padding: 25px 15px;
    }

    .btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}