/* ===========================
   MAHENDRAJAALA INFOTAINMENT
   CSS - Cinematic Dark Theme
   =========================== */

:root {
    --gold: #c9a84c;
    --gold-light: #f5d98b;
    --gold-dark: #8a6a1a;
    --deep: #050a0f;
    --dark: #0a1220;
    --mid: #111e30;
    --panel: #0d1826;
    --text: #e8dfc8;
    --text-muted: #8a9ab0;
    --accent: #1a4a7a;
    --accent-glow: rgba(26, 74, 122, 0.4);
    --border: rgba(201, 168, 76, 0.2);
    --radius: 2px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: var(--deep);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Particle Canvas */
#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

/* ---- HEADER ---- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 4vw;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(5, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-emblem svg { width: 48px; height: 48px; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    letter-spacing: 0.05em;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
}

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

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

.nav-toggle span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

/* ---- HERO / PAGE HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/web_circle_centre_bg.png?w=1800&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.68) saturate(1.4);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
        linear-gradient(to bottom, transparent 40%, var(--deep) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 2rem 4rem;
    max-width: 900px;
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-eyebrow1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.0rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}


.hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero-divider {
    width: 80px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 2rem auto;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}

.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s 1.4s forwards;
}

.scroll-hint span {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
    height: 540px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 3rem;
    filter: brightness(0.8) saturate(1.3);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.8) saturate(1.3);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--deep) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-content h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    color: var(--gold-light);
}

.page-hero-content p {
    font-style: italic;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ---- SECTIONS ---- */
.section {
    position: relative;
    z-index: 1;
    padding: 6rem 4vw;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    color: var(--text);
    margin-bottom: 1rem;
}

.section-line {
    width: 60px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1.2rem auto 0;
}

/* ---- ABOUT / HOME ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: saturate(0.7) brightness(0.8);
    border: 1px solid var(--border);
}

.about-frame {
    position: absolute;
    inset: -12px;
    border: 1px solid var(--border);
    pointer-events: none;
}

.about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-badge span:first-child {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    color: var(--deep);
    font-weight: 900;
    line-height: 1;
}

.about-badge span:last-child {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--deep);
}

.about-text .section-eyebrow { text-align: left; }
.about-text .section-title { text-align: left; font-size: clamp(1.3rem, 2.5vw, 2.2rem); }
.about-text .section-line { margin-left: 0; }

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-top: 1.5rem;
}

.about-text p + p { margin-top: 1rem; }

/* ---- STATS STRIP ---- */
.stats-strip {
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 4vw;
    position: relative;
    z-index: 1;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.8rem;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-top: 0.5rem;
}

/* ---- CONTENT TYPES GRID (Home) ---- */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
}

.content-card {
    background: var(--panel);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background var(--transition);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.content-card:hover { background: var(--mid); }
.content-card:hover::before { transform: scaleX(1); }

.content-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.content-card h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.content-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- FOCUS AREAS ---- */
.platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: var(--panel);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(201,168,76,0.1);
}

.platform-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.platform-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.7);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.platform-card:hover .platform-card-img img {
    transform: scale(1.08);
    filter: saturate(0.9) brightness(0.85);
}

.platform-tag {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--gold);
    color: var(--deep);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 4px 10px;
    font-weight: 600;
}

.platform-card-body {
    padding: 2rem;
}

.platform-card-body h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.platform-card-body p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.platform-features {
    list-style: none;
    margin-top: 1.2rem;
}

.platform-features li {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.platform-features li::before {
    content: '';
    width: 16px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

/* ---- PORTFOLIO ---- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-item {
    background: var(--panel);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform var(--transition);
}

.portfolio-item:hover { transform: translateY(-4px); }

.portfolio-thumb {
    height: 480px;
    overflow: hidden;
    position: relative;
}

.portfolio-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.65) saturate(0.8);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.06);
    filter: brightness(0.8) saturate(1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.view-btn {
    background: var(--gold);
    color: var(--deep);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 10px 24px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.portfolio-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
    padding: 3px 8px;
    margin-top: 0.6rem;
}

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.lightbox-overlay.active { display: flex; }

.lightbox-content {
    background: var(--panel);
    border: 1px solid var(--border);
    max-width: 900px;
    width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: fadeUp 0.3s ease;
}

.lightbox-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lightbox-header h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    color: var(--gold-light);
}

.lightbox-close {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 36px; height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.lightbox-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lightbox-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
}

.lightbox-images img {
    width: 100%;
    aspect-ratio: 3/3;
    object-fit: cover;
    display: block;
}

.lightbox-desc {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    border-top: 1px solid var(--border);
}

/* ---- TEAM ---- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--panel);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    gap: 0;
    transition: transform var(--transition);
}

.team-card:hover { transform: translateY(-4px); }

.team-photo {
    width: 180px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: saturate(0.5) brightness(0.85);
    transition: filter 0.8s ease;
}

.team-card:hover .team-photo img {
    filter: saturate(0.8) brightness(0.95);
}

.team-body {
    padding: 1.8rem;
    flex: 1;
}

.team-body h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 0.2rem;
}

.team-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ---- CONTACT ---- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.contact-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.contact-block:last-child { border-bottom: none; }

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-block p, .contact-block a {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-decoration: none;
}

.contact-block a:hover { color: var(--gold-light); }

.map-container {
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 480px;
    display: block;
    border: none;
    filter: invert(0.9) hue-rotate(180deg) saturate(0.5);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 14px 36px;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--deep);
    font-weight: 600;
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 0 30px rgba(201,168,76,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--deep);
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 4vw;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
}

.site-footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.6rem; }

.site-footer ul li a {
    font-size: 0.92rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer ul li a:hover { color: var(--gold-light); }

.footer-platforms ul li {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.footer-contact p, .footer-contact a {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-contact a { text-decoration: none; display: block; }
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.5rem 4vw;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    max-width: 100%;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 500px; margin: 0 auto; }
    .team-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2,1fr); }
    .footer-inner { grid-template-columns: repeat(2,1fr); }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { 
        display: none; 
        position: fixed;
        top: 80px; left: 0; right: 0;
        background: rgba(5,10,15,0.98);
        padding: 2rem;
        border-bottom: 1px solid var(--border);
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 1.5rem; }
    .nav-toggle { display: flex; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .team-card { flex-direction: column; }
    .team-photo { width: 100%; height: 240px; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .lightbox-images { grid-template-columns: 1fr; }
}
