:root {
    --about-gold: #ffb800;
    --about-dark: #0f1114;
    --about-muted: #6c7a89;
    --about-bg: #f7f6f2;
}

html { -webkit-text-size-adjust: 100%; }
body.about-page {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: radial-gradient(900px 380px at 10% -10%, rgba(255,184,0,0.12), transparent 60%),
        linear-gradient(180deg, #f7f6f2 0%, #ffffff 40%, #f7f6f2 100%);
    color: var(--about-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body.about-page h1,
body.about-page h2 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
}

/* Page reveal + splash */
.page-reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
.page-loaded .page-reveal { opacity: 1; transform: translateY(0); }
/* --- SPLASH SCREEN --- */
/* --- SPLASH SCREEN --- */
/* --- SPLASH SCREEN --- */
.splash-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #fff8e6 0%, #f1ebdf 42%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    animation: splash-auto-hide 0.6s ease forwards;
    animation-delay: 2.6s;
    overflow: hidden;
}

.splash-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,184,0,0.18), transparent 55%),
        radial-gradient(circle at 80% 90%, rgba(255,184,0,0.18), transparent 55%),
        linear-gradient(120deg, rgba(255,255,255,0.65), rgba(255,255,255,0.15));
    animation: splash-veil 6s ease-in-out infinite;
}

.splash-beam {
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255,184,0,0.0), rgba(255,184,0,0.28), rgba(255,184,0,0.0));
    filter: blur(6px);
    animation: splash-beam 6s linear infinite;
    opacity: 0.9;
}

.splash-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes splash-auto-hide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.splash-stage {
    position: relative;
    text-align: center;
    padding: 12px 18px;
    max-width: min(720px, 92vw);
    display: grid;
    gap: 10px;
    justify-items: center;
}

.splash-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.splash-logo-img {
    height: 260px;
    width: auto;
    filter: drop-shadow(0 12px 24px rgba(255, 184, 0, 0.35));
    animation: splash-pulse 2.2s ease-in-out infinite, splash-float 3.6s ease-in-out infinite;
}

.splash-copy {
    font-size: 12px;
    letter-spacing: 0.6px;
    color: #5f6b7a;
}

.splash-loader {
    position: relative;
    width: 190px;
    height: 190px;
    margin: 2px auto 0;
}

.splash-loader::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px dashed rgba(255, 184, 0, 0.45);
    animation: splash-rotate 4.8s linear infinite;
}

.splash-loader::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    border: 4px solid rgba(255, 184, 0, 0.3);
    border-top-color: #ffb800;
    box-shadow: 0 0 28px rgba(255, 184, 0, 0.35);
    animation: splash-spin 1s linear infinite;
}

.splash-orbit {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 184, 0, 0.35);
    animation: splash-rotate 6s linear infinite;
}

.splash-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 184, 0, 0.25);
    box-shadow: inset 0 0 60px rgba(255, 184, 0, 0.25);
    animation: splash-expand 2.8s ease-in-out infinite;
}

.splash-particles {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.25) 0 2px, transparent 3px);
    background-size: 22px 22px;
    animation: splash-rotate 14s linear infinite reverse;
    opacity: 0.6;
}

.splash-screen::before,
.splash-screen::after {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,184,0,0.22), transparent 65%);
    animation: splash-glow 6s ease-in-out infinite;
}
.splash-screen::before { top: -120px; left: -120px; }
.splash-screen::after { bottom: -140px; right: -140px; animation-delay: 1.8s; }

@keyframes splash-rotate {
    to {
        transform: rotate(360deg);
    }
}
@keyframes splash-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes splash-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}
@keyframes splash-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes splash-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.08); }
}
@keyframes splash-expand {
    0%, 100% { transform: scale(0.98); opacity: 0.45; }
    50% { transform: scale(1.06); opacity: 0.9; }
}
@keyframes splash-veil {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.95; }
}
@keyframes splash-beam {
    0% { transform: translate(-40%, -40%) rotate(0deg); }
    100% { transform: translate(-40%, -40%) rotate(360deg); }
}
@keyframes splash-shimmer {
    0% { transform: translateX(-60%) rotate(6deg); }
    100% { transform: translateX(60%) rotate(6deg); }
}

@media (max-width: 575px) {
    .splash-logo {
        font-size: 18px;
    }
}

/* Reveal classes */
.reveal-raw { opacity: 0; transform: translateY(30px) scale(0.98); transition: 0.7s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-40px) rotateY(6deg); transition: 0.7s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(40px) rotateY(-6deg); transition: 0.7s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal-raw.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translateY(0) translateX(0) rotateY(0); }

/* Hero */
.about-hero {
    padding: 110px 0 80px;
    background:
        radial-gradient(700px 380px at 15% 0%, rgba(255,184,0,0.25), transparent 60%),
        radial-gradient(700px 380px at 85% 10%, rgba(34,197,94,0.2), transparent 60%),
        linear-gradient(120deg, #1f2a22 0%, #3a4b3f 55%, #63766a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(200px 200px at 20% 20%, rgba(255,184,0,0.25), transparent 70%);
    opacity: 0.6;
}
.about-hero::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -60px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(255,184,0,0.35), transparent 70%);
    filter: blur(10px);
}
.hero-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.hero-rail-vertical {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    letter-spacing: 6px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(255,184,0,0.7);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}
.hero-rail-vertical::before {
    content: "";
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,184,0,0.85), rgba(255,184,0,0));
}
.hero-rail-vertical:hover {
    color: rgba(255,184,0,1);
}
.hero-kicker { color: var(--about-gold); text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 800; }
.hero-copy h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 900; margin: 12px 0; }
.hero-copy h1 span { color: #ffd27a; }
.hero-copy p { color: #dbe7dd; max-width: 520px; }
.hero-copy p strong { color: #fff; font-weight: 800; }
.hero-crumbs { margin-top: 16px; font-weight: 700; }
.hero-crumbs a { color: #fff; text-decoration: none; }
.hero-crumbs .crumb-sep { color: #ffb800; margin: 0 8px; }
.hero-contact {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #f9f4e8;
    font-weight: 700;
    font-size: 13px;
}
.hero-contact i { color: var(--about-gold); margin-right: 6px; }
.hero-rail {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.hero-rail div {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 10px 12px;
    text-align: center;
    font-weight: 800;
}
.hero-rail strong {
    display: block;
    font-size: 18px;
    color: #ffd27a;
}
.hero-rail span {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f1efe6;
}
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-collage {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-auto-rows: 150px;
    gap: 14px;
    background: rgba(255,255,255,0.12);
    padding: 12px;
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    position: relative;
}
.collage-tile {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    position: relative;
}
.collage-tile.tall { grid-row: span 2; }
.collage-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-caption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(6px);
    transition: 0.3s ease;
}
.collage-tile:hover .collage-caption {
    opacity: 1;
    transform: translateY(0);
}
.collage-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: #fff;
    color: #111;
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.hero-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    color: #111;
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.hero-panel {
    position: absolute;
    right: -40px;
    bottom: 20px;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.2);
    max-width: 240px;
}
.panel-kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--about-gold);
    font-weight: 900;
    margin-bottom: 8px;
}
.hero-panel p { color: #3f3f3f; font-size: 13px; margin-bottom: 10px; }
.panel-sign { font-weight: 900; color: #111; }
.panel-sign small { display: block; font-weight: 600; color: #777; }
.hero-ring {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px dashed rgba(255,184,0,0.4);
    top: -30px;
    right: 40px;
    animation: splash-rotate 10s linear infinite;
}

/* Story */
.about-story { padding: 80px 0; }
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.story-images { position: relative; min-height: 420px; }
.story-img { position: absolute; border-radius: 22px; overflow: hidden; box-shadow: 0 20px 55px rgba(0,0,0,0.18); }
.story-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-img:first-child { width: 60%; height: 320px; left: 0; top: 0; }
.story-img:last-child { width: 55%; height: 300px; right: 0; bottom: 0; }
.story-float {
    position: absolute;
    left: 20px;
    bottom: 40px;
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    font-weight: 800;
    box-shadow: 0 16px 45px rgba(0,0,0,0.16);
}
.story-float span { display: block; font-size: 26px; color: var(--about-gold); }
.story-copy h2 { font-weight: 900; margin: 12px 0; }
.story-copy p { color: var(--about-muted); }
.story-pills { display: grid; gap: 16px; margin: 20px 0; }
.pill { display: flex; gap: 12px; align-items: flex-start; background: #fff; border-radius: 16px; padding: 14px; box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.pill i { color: var(--about-gold); font-size: 20px; }
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffb800, #ff9800);
    color: #000;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(255,184,0,0.3);
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(255,184,0,0.38); }

/* Journey */
.about-journey { padding: 70px 0 30px; background: #fff; }
.journey-head { text-align: center; margin-bottom: 30px; }
.journey-track { position: relative; height: 40px; margin: 20px auto 30px; max-width: 720px; }
.track-line { position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #ffb800, #22c55e); }
.track-dot { position: absolute; top: 50%; width: 12px; height: 12px; background: #fff; border: 2px solid #ffb800; border-radius: 50%; transform: translate(-50%, -50%); }
.dot-1 { left: 0%; }
.dot-2 { left: 33%; }
.dot-3 { left: 66%; }
.dot-4 { left: 100%; }
.journey-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.journey-card { background: #f9fafb; border-radius: 18px; padding: 18px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.journey-card i { font-size: 22px; color: var(--about-gold); margin-bottom: 10px; }
.journey-card h4 { font-weight: 800; }
.journey-card p { color: var(--about-muted); font-size: 13px; }
.journey-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

/* Values */
.about-values { padding: 70px 0; background: #f9fafb; }
.values-head { text-align: center; max-width: 760px; margin: 0 auto 30px; }
.values-head p { color: var(--about-muted); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { background: #fff; border-radius: 18px; padding: 18px; text-align: center; box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.value-icon { width: 52px; height: 52px; margin: 0 auto 10px; border-radius: 14px; background: rgba(255,184,0,0.15); display: inline-flex; align-items: center; justify-content: center; color: var(--about-gold); font-size: 20px; }
.value-card h4 { font-weight: 800; }
.value-card p { color: var(--about-muted); font-size: 13px; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.12); }
.value-icon { animation: floatIcon 4s ease-in-out infinite; }
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Timeline */
.about-timeline { padding: 70px 0; background: #ffffff; }
.timeline-head { text-align: center; max-width: 760px; margin: 0 auto 30px; }
.timeline-head p { color: var(--about-muted); }
.timeline-line {
    position: relative;
    height: 3px;
    max-width: 900px;
    margin: 0 auto 30px;
    background: rgba(255,184,0,0.2);
    border-radius: 999px;
    overflow: hidden;
}
.timeline-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,184,0,0.85), transparent);
    animation: timeline-scan 4s ease-in-out infinite;
}
.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.timeline-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}
.timeline-year {
    font-size: 20px;
    font-weight: 900;
    color: var(--about-gold);
    margin-bottom: 6px;
}
.timeline-card h4 { font-weight: 900; margin-bottom: 8px; }
.timeline-card p { color: var(--about-muted); font-size: 13px; }

@keyframes timeline-scan {
    0% { transform: translateX(-60%); }
    50% { transform: translateX(60%); }
    100% { transform: translateX(-60%); }
}

/* Gallery */
.about-gallery { padding: 60px 0 20px; }
.gallery-head { text-align: center; margin-bottom: 24px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-card { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,0.12); }
.gallery-card img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: #fff;
    color: #111;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.gallery-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 46px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(6px);
    transition: 0.35s ease;
}
.gallery-card:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Stats + CTA */
.about-stats { padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: #fff; border-radius: 18px; padding: 18px; text-align: center; box-shadow: 0 12px 30px rgba(0,0,0,0.08); font-weight: 800; }
.stat span { display: block; font-size: 26px; color: var(--about-gold); }
.stat .count { font-size: 26px; }

/* Founder */
.about-founder { padding: 60px 0; }
.founder-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 22px 70px rgba(0,0,0,0.12);
}
.founder-photo { position: relative; overflow: hidden; border-radius: 18px; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: #fff;
    color: #111;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.founder-copy h2 { font-weight: 900; margin-bottom: 8px; }
.founder-copy p { color: var(--about-muted); }
.founder-sign {
    margin-top: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 24px;
    color: #111;
}
.founder-sign small { display: block; font-size: 12px; color: var(--about-muted); font-family: 'Plus Jakarta Sans', sans-serif; }

/* Video */
.about-video { padding: 50px 0 20px; }
.video-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(0,0,0,0.18);
}
.video-card img { width: 100%; height: 420px; object-fit: cover; display: block; }
.video-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #111;
    font-size: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.video-play:hover { transform: scale(1.05); }
.video-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    max-width: 420px;
}
.video-caption h3 { font-weight: 900; margin-bottom: 4px; }
.video-caption p { color: #e5e7eb; margin: 0; font-size: 13px; }

/* Video modal */
.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.video-modal.open { display: flex !important; }
.video-modal * { box-sizing: border-box; }
.video-modal.open { display: flex; }
.video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
}
.video-frame {
    position: relative;
    z-index: 2;
    width: min(92vw, 960px) !important;
    height: min(70vh, 54vw) !important;
    min-height: 240px;
    background: #000;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    overflow: hidden;
    transform: translateZ(0);
    pointer-events: auto;
}
.video-frame { background: #000; }
.video-frame iframe { background: #000; }
.video-frame { max-height: 80vh; }
.video-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.video-close {
    position: absolute;
    right: 12px;
    top: 8px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.about-cta { padding: 40px 0 90px; }
.cta-card { background: linear-gradient(135deg, #111, #2a2a2a); color: #fff; padding: 30px; border-radius: 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.cta-card p { color: #d1d5db; margin: 6px 0 0; }
 .cta-card { position: relative; overflow: hidden; }
 .cta-card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,184,0,0.35), transparent 70%);
    filter: blur(10px);
 }

@media (max-width: 991px) {
    .hero-wrap, .story-grid { grid-template-columns: 1fr; }
    .hero-ring { display: none; }
    .hero-panel { position: static; max-width: 100%; margin-top: 12px; }
    .hero-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hero-rail-vertical { display: none; }
    .story-images { min-height: 360px; }
    .journey-steps, .stats-grid, .values-grid, .timeline-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-card { flex-direction: column; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .founder-card { grid-template-columns: 1fr; }
    .video-card img { height: 320px; }
}
@media (max-width: 575px) {
    .story-images { min-height: 320px; }
    .story-img:first-child { width: 70%; height: 260px; }
    .story-img:last-child { width: 65%; height: 240px; }
    .journey-steps, .stats-grid, .values-grid, .timeline-grid { grid-template-columns: 1fr; }
    .video-card img { height: 260px; }
}



