/* =========================================================
   VILAS SANDIPANRAO BHUMRE - OFFICIAL WEBSITE
   Premium Political Leadership Platform
   ========================================================= */

:root {
    --saffron: #FF6B1A;
    --saffron-deep: #E85D15;
    --saffron-glow: #FF8A3D;
    --gold: #C9A961;
    --gold-light: #E5C687;
    --gold-dark: #9A7F3F;
    --charcoal: #0F1419;
    --charcoal-soft: #1A1F26;
    --charcoal-light: #2A2F36;
    --ink: #0A0D10;
    --cream: #FAF7F2;
    --off-white: #F5F1EB;
    --grey-soft: #E8E4DE;
    --grey-mid: #8A8680;
    --grey-deep: #4A4640;
    --white: #FFFFFF;

    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    --nav-height: 82px;
    --transition-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-slow: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--saffron); color: var(--white); }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: rgba(10, 13, 16, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.4s var(--transition-smooth);
    border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}

.nav-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.brand-mark {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(255, 107, 26, 0.35);
    letter-spacing: -0.5px;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: 0.3px; }
.brand-role { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-top: 3px; }

.nav-menu { display: flex; align-items: center; gap: 2px; }

.nav-link {
    position: relative;
    padding: 10px 18px;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px; right: 18px;
    height: 1px;
    background: var(--saffron);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--transition-smooth);
}

.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::before, .nav-link.active::before { transform: scaleX(1); transform-origin: left; }

.nav-cta {
    margin-left: 16px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 22px rgba(255, 107, 26, 0.28);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,26,0.45); }

.hamburger {
    display: none;
    width: 32px; height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
    padding: var(--nav-height) 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    opacity: 0.55;
    transform: scale(1.05);
    animation: kenburns 20s var(--transition-slow) forwards;
}

@keyframes kenburns { to { transform: scale(1); } }

.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(100deg, rgba(10,13,16,0.95) 0%, rgba(10,13,16,0.55) 50%, rgba(10,13,16,0.8) 100%),
        linear-gradient(180deg, rgba(10,13,16,0.7) 0%, transparent 30%, transparent 70%, rgba(10,13,16,0.85) 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content { max-width: 720px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}
.eyebrow::before {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 6.5vw, 92px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
}
.hero h1 .accent { color: var(--saffron); font-style: italic; }
.hero h1 .thin { font-weight: 300; }

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 36px;
    max-width: 620px;
    line-height: 1.4;
}

.hero-lede {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    margin-bottom: 44px;
    max-width: 560px;
    line-height: 1.75;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    border: none;
    border-radius: 2px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
    color: var(--white);
    box-shadow: 0 10px 32px rgba(255, 107, 26, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(255, 107, 26, 0.5); }
.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); color: var(--gold); }
.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}
.btn-dark:hover { background: var(--saffron); }

.btn .arrow {
    display: inline-block;
    transition: transform 0.3s;
}
.btn:hover .arrow { transform: translateX(4px); }

/* Hero portrait card */
.hero-portrait {
    position: relative;
    aspect-ratio: 3 / 4;
    max-width: 420px;
    margin-left: auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,169,97,0.2);
}
.hero-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.hero-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10,13,16,0.7) 100%);
}
.portrait-tag {
    position: absolute;
    bottom: 28px; left: 28px; right: 28px;
    z-index: 2;
    color: var(--white);
}
.portrait-tag .pname {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.3px;
}
.portrait-tag .prole {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 6px;
}

.hero-frame-lines {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(201,169,97,0.3);
    top: 24px; left: 24px; right: 24px; bottom: 24px;
    pointer-events: none;
    display: none;
}

.hero-scroll {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ===== SECTION BASE ===== */
section { position: relative; }

.section {
    padding: 120px 0;
    position: relative;
}
.section-dark {
    background: var(--charcoal);
    color: var(--white);
}
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}
.container-narrow { max-width: 1100px; }

.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: end;
}

.section-head.center { text-align: center; grid-template-columns: 1fr; max-width: 780px; margin-left: auto; margin-right: auto; }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 24px;
}
.kicker::before { content: ''; width: 32px; height: 1px; background: var(--saffron); }
.section-dark .kicker { color: var(--gold); }
.section-dark .kicker::before { background: var(--gold); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--charcoal);
}
.section-dark .section-title { color: var(--white); }
.section-title .italic { font-style: italic; font-weight: 400; color: var(--saffron); }

.section-sub {
    font-size: 17px;
    color: var(--grey-deep);
    line-height: 1.75;
    max-width: 520px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

/* ===== COUNTERS / STATS ===== */
.stats-band {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
    color: var(--white);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.stats-band::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,107,26,0.08) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
}
.stat-card {
    text-align: center;
    padding: 20px 28px;
    border-right: 1px solid rgba(201,169,97,0.15);
}
.stat-card:last-child { border-right: none; }

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 500;
    color: var(--saffron);
    line-height: 1;
    letter-spacing: -1px;
}
.stat-plus { color: var(--gold); }

.stat-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 14px;
    font-weight: 500;
}

/* ===== PRIORITY / FEATURE CARDS ===== */
.priority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.priority-card {
    padding: 48px 40px;
    background: var(--white);
    border: 1px solid var(--grey-soft);
    border-right: none;
    border-bottom: none;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    cursor: default;
}
.priority-card:last-child { border-right: 1px solid var(--grey-soft); }
.priority-grid .priority-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--grey-soft); }

.priority-card:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-4px);
    z-index: 2;
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.pc-icon {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, rgba(255,107,26,0.1) 0%, rgba(255,107,26,0.02) 100%);
    border: 1px solid rgba(255,107,26,0.2);
    border-radius: 50%;
    margin-bottom: 28px;
    color: var(--saffron);
    font-size: 22px;
    transition: all 0.4s;
}
.priority-card:hover .pc-icon {
    background: var(--saffron);
    border-color: var(--saffron);
    color: var(--white);
    transform: rotate(-10deg);
}

.pc-num {
    position: absolute;
    top: 28px; right: 32px;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--grey-mid);
    font-style: italic;
    letter-spacing: 1px;
}
.priority-card:hover .pc-num { color: var(--gold); }

.pc-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.pc-desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--grey-deep);
}
.priority-card:hover .pc-desc { color: rgba(255,255,255,0.75); }

.pc-more {
    margin-top: 24px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.priority-card:hover .pc-more { color: var(--gold-light); }

/* ===== LEADER MESSAGE ===== */
.leader-message {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.lm-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 50px 120px rgba(0,0,0,0.25);
}
.lm-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.lm-visual::before {
    content: '';
    position: absolute;
    top: -24px; left: -24px;
    width: 120px; height: 120px;
    border: 1px solid var(--saffron);
    z-index: -1;
}
.lm-visual::after {
    content: '';
    position: absolute;
    bottom: -24px; right: -24px;
    width: 140px; height: 140px;
    border: 1px solid var(--gold);
    z-index: -1;
}

.lm-quote {
    font-family: var(--font-display);
    font-size: 110px;
    line-height: 0.6;
    color: var(--saffron);
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.lm-text {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 32px;
    font-style: italic;
}
.lm-text p + p { margin-top: 20px; }
.lm-sig {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--grey-soft);
}
.lm-sig-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
}
.lm-sig-role {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 600;
    margin-top: 4px;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding-left: 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 160px; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, var(--saffron) 10%, var(--saffron) 90%, transparent 100%);
}
.tl-item {
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 60px;
    padding: 48px 0;
    align-items: start;
}
.tl-item::before {
    content: '';
    position: absolute;
    left: 156px; top: 58px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--saffron);
    box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px var(--saffron);
}
.section-white .tl-item::before { box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--saffron); }

.tl-year {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    color: var(--saffron);
    line-height: 1;
    letter-spacing: -0.5px;
    text-align: right;
    padding-right: 24px;
}
.tl-content { padding-left: 40px; }
.tl-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.tl-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--grey-deep);
    max-width: 680px;
}

/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.value-card {
    padding: 36px 28px;
    background: var(--white);
    border-top: 2px solid var(--saffron);
    text-align: left;
    transition: all 0.4s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); }
.value-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 14px 0 10px;
}
.value-card p { font-size: 14.5px; color: var(--grey-deep); line-height: 1.7; }
.value-icon { font-size: 24px; color: var(--saffron); }

/* ===== PROGRESS / ACHIEVEMENT CARDS ===== */
.prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--grey-soft);
    border: 1px solid var(--grey-soft);
}
.prog-card {
    background: var(--white);
    padding: 56px 40px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    cursor: default;
}
.prog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition-smooth);
}
.prog-card:hover { background: var(--cream); }
.prog-card:hover::before { transform: scaleX(1); }

.prog-icon {
    width: 64px; height: 64px;
    display: grid; place-items: center;
    background: var(--charcoal);
    color: var(--saffron);
    border-radius: 50%;
    margin-bottom: 28px;
    font-size: 26px;
    transition: all 0.4s;
}
.prog-card:hover .prog-icon {
    background: var(--saffron);
    color: var(--white);
    transform: scale(1.05);
}

.prog-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}
.prog-card p { font-size: 15px; line-height: 1.75; color: var(--grey-deep); margin-bottom: 22px; }
.prog-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--grey-soft);
}
.prog-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--saffron);
    line-height: 1;
}
.prog-stat-lbl {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-mid);
    font-weight: 500;
}

/* ===== CONSTITUENCY / PAITHAN ===== */
.paithan-hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 80px;
    color: var(--white);
    overflow: hidden;
    background: var(--ink);
}
.ph-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
}
.ph-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,13,16,0.9) 0%, rgba(10,13,16,0.4) 40%, rgba(10,13,16,0.95) 100%);
}
.ph-inner {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
}
.ph-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 9vw, 140px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 20px;
}
.ph-title .italic { font-style: italic; color: var(--saffron); }
.ph-meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.ph-meta-item small {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.ph-meta-item span {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
}

/* Constituency facts grid */
.const-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.const-visual {
    aspect-ratio: 1 / 1.2;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}
.const-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.const-text h2 { margin-bottom: 24px; }
.const-text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--grey-deep);
    margin-bottom: 18px;
}
.const-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--grey-soft);
}
.cf-num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 500;
    color: var(--saffron);
    line-height: 1;
}
.cf-lbl {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-top: 10px;
    font-weight: 500;
}

/* Priority list */
.priority-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 60px; }
.pl-item { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--grey-soft); }
.pl-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 500;
    color: var(--saffron);
    line-height: 1;
    font-style: italic;
    flex-shrink: 0;
    width: 60px;
}
.pl-content h4 {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 8px;
}
.pl-content p { font-size: 14.5px; color: var(--grey-deep); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery-hero {
    padding: calc(var(--nav-height) + 100px) 0 60px;
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
}
.gh-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 500;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 20px;
}
.gh-title .italic { font-style: italic; color: var(--saffron); }
.gh-sub {
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    color: var(--gold-light);
    max-width: 620px;
    margin: 0 auto;
}

.masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 160px;
    gap: 14px;
    padding: 80px 48px;
    max-width: 1600px;
    margin: 0 auto;
}
.mi {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: var(--charcoal);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s var(--transition-smooth);
}
.mi img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}
.mi:hover { transform: translateY(-4px); box-shadow: 0 30px 70px rgba(0,0,0,0.18); }
.mi:hover img { transform: scale(1.06); }

.mi::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,13,16,0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}
.mi:hover::after { opacity: 1; }

.mi-cap {
    position: absolute;
    bottom: 20px; left: 24px; right: 24px;
    z-index: 2;
    color: var(--white);
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s;
}
.mi:hover .mi-cap { transform: translateY(0); opacity: 1; }
.mi-cap small {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}
.mi-cap h5 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
}

/* Masonry layout sizes */
.mi.w4 { grid-column: span 4; } .mi.w3 { grid-column: span 3; }
.mi.w5 { grid-column: span 5; } .mi.w6 { grid-column: span 6; }
.mi.w8 { grid-column: span 8; } .mi.w7 { grid-column: span 7; }
.mi.h2 { grid-row: span 2; } .mi.h3 { grid-row: span 3; }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5,8,10,0.96);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.lb-close {
    position: absolute;
    top: 30px; right: 30px;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: transparent;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
}
.lb-close:hover { background: var(--saffron); border-color: var(--saffron); }
.lb-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 54px; height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
}
.lb-prev { left: 30px; }
.lb-next { right: 30px; }
.lb-nav:hover { background: var(--saffron); border-color: var(--saffron); }

/* ===== VISION (TOMORROW MAHARASHTRA) ===== */
.vision-hero {
    padding: calc(var(--nav-height) + 100px) 0 100px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.vision-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(255,107,26,0.15) 0%, transparent 50%);
}
.vh-inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
.vh-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 30px;
}
.vh-title .italic { font-style: italic; color: var(--saffron); }
.vh-sub {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    max-width: 540px;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--grey-soft);
    background: var(--grey-soft);
}
.vp {
    padding: 56px 34px;
    background: var(--white);
    color: var(--charcoal);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.vp h4 { color: var(--charcoal); }
.vp:hover { background: var(--charcoal); color: var(--white); }
.vp-num {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--grey-mid);
    font-style: italic;
    letter-spacing: 1px;
}
.vp:hover .vp-num { color: var(--gold); }
.vp-icon {
    font-size: 32px;
    color: var(--saffron);
    transition: all 0.4s;
}
.vp:hover .vp-icon { color: var(--gold); transform: scale(1.1); }
.vp h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
}
.vp p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--grey-deep);
}
.vp:hover p { color: rgba(255,255,255,0.75); }

/* ===== CONTACT ===== */
.contact-hero {
    padding: calc(var(--nav-height) + 80px) 0 60px;
    background: var(--charcoal);
    color: var(--white);
}
.ch-inner { max-width: 1440px; margin: 0 auto; padding: 0 48px; text-align: center; }
.ch-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 500;
    letter-spacing: -1.5px;
    line-height: 1.05;
}
.ch-title .italic { font-style: italic; color: var(--saffron); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 0;
}
.contact-info h2 { margin-bottom: 30px; }
.ci-item {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--grey-soft);
}
.ci-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--saffron);
    display: grid; place-items: center;
    font-size: 20px;
    flex-shrink: 0;
}
.ci-text small {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey-mid);
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}
.ci-text a, .ci-text span {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.3s;
    display: block;
}
.ci-text a:hover { color: var(--saffron); }

.form-card {
    background: var(--white);
    padding: 56px 48px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    border: 1px solid var(--grey-soft);
}
.fc-title {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.fc-sub { color: var(--grey-deep); margin-bottom: 36px; font-size: 14.5px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin-bottom: 10px;
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--grey-soft);
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    color: var(--charcoal);
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--saffron);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    position: relative;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { color: var(--white); }
.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    margin-top: 24px;
    color: rgba(255,255,255,0.6);
    max-width: 340px;
}
.footer-col h5 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 14px; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--saffron); }

.socials { display: flex; gap: 12px; margin-top: 20px; }
.soc-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: grid; place-items: center;
    transition: all 0.3s;
    color: rgba(255,255,255,0.7);
}
.soc-icon:hover { background: var(--saffron); border-color: var(--saffron); color: var(--white); transform: translateY(-3px); }

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--gold); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--saffron); }

/* ===== PAGE HEADER (inner pages) ===== */
.page-hero {
    padding: calc(var(--nav-height) + 100px) 0 100px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; top: 0; right: -200px; bottom: 0; width: 60%;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    mask-image: linear-gradient(90deg, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 30%);
}
.page-hero.has-bg-image::before { background-image: var(--hero-img); }
.ph-inner-narrow {
    position: relative; z-index: 2;
    max-width: 1440px; margin: 0 auto;
    padding: 0 48px;
}
.ph-label {
    font-size: 11px; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 24px;
    display: inline-flex; align-items: center; gap: 14px;
}
.ph-label::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

.ph-big {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -2px;
    max-width: 960px;
    margin-bottom: 28px;
}
.ph-big .italic { font-style: italic; color: var(--saffron); }
.ph-lead {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    max-width: 620px;
}

/* ===== BREAKING LAYOUT SECTION ===== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.split-media {
    position: relative;
    overflow: hidden;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.split-text {
    padding: 100px 80px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== MARQUEE / RIBBON ===== */
.ribbon {
    overflow: hidden;
    background: var(--saffron);
    color: var(--white);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.ribbon-track {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
}
.ribbon-item {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 80px;
}
.ribbon-item::after { content: '✦'; color: var(--gold-light); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== LATEST UPDATES / NEWS ===== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.news-card {
    background: var(--white);
    border: 1px solid var(--grey-soft);
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,0.1); }

.news-media {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}
.news-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform 0.6s; }
.news-card:hover .news-media img { transform: scale(1.05); }

.news-body { padding: 32px 28px; flex-grow: 1; display: flex; flex-direction: column; }
.news-date {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 14px;
}
.news-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.3px;
    margin-bottom: 14px;
    min-height: 60px;
}
.news-excerpt {
    font-size: 14.5px;
    color: var(--grey-deep);
    line-height: 1.7;
    flex-grow: 1;
}
.news-more {
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 600;
}

/* ===== PASSWORD GATE ===== */
.gate {
    min-height: 100vh;
    background: var(--ink);
    display: grid;
    place-items: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}
.gate-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center 20%;
    opacity: 0.28;
    filter: grayscale(30%);
    transform: scale(1.08);
    animation: kenburns 30s ease-out infinite alternate;
}
.gate::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at center, rgba(10,13,16,0.4) 0%, rgba(10,13,16,0.95) 80%);
    z-index: 1;
}

.gate-card {
    position: relative;
    z-index: 2;
    background: rgba(26, 31, 38, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(201,169,97,0.2);
    padding: 72px 64px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 50px 120px rgba(0,0,0,0.6);
}

.gate-mark {
    width: 72px; height: 72px;
    margin: 0 auto 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 10px 40px rgba(255,107,26,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.gate-kicker {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}
.gate h1 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}
.gate h1 .italic { font-style: italic; color: var(--saffron); }
.gate-sub {
    font-family: var(--font-heading);
    font-size: 17px;
    font-style: italic;
    color: rgba(255,255,255,0.65);
    margin-bottom: 44px;
}

.gate-form {
    position: relative;
    margin-bottom: 28px;
}
.gate-input {
    width: 100%;
    padding: 20px 60px 20px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
    letter-spacing: 4px;
    text-align: center;
    border-radius: 2px;
    transition: all 0.3s;
}
.gate-input::placeholder { color: rgba(255,255,255,0.35); letter-spacing: 2px; }
.gate-input:focus {
    outline: none;
    border-color: var(--saffron);
    background: rgba(255,107,26,0.06);
    box-shadow: 0 0 0 3px rgba(255,107,26,0.12);
}

.gate-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255,107,26,0.35);
    font-family: inherit;
}
.gate-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,107,26,0.5); }
.gate-btn:active { transform: translateY(0); }

.gate-msg {
    margin-top: 18px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #ff6b6b;
    opacity: 0;
    transition: opacity 0.3s;
    min-height: 20px;
}
.gate-msg.show { opacity: 1; animation: shake 0.4s ease-in-out; }
.gate-msg.ok { color: var(--gold); }
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.gate-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ===== REVEAL / SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--transition-slow), transform 1s var(--transition-slow);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .nav-menu { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: rgba(10,13,16,0.98); flex-direction: column; align-items: stretch; padding: 24px; backdrop-filter: blur(20px); max-height: calc(100vh - var(--nav-height)); overflow-y: auto; }
    .nav-menu.open { display: flex; }
    .nav-link { padding: 16px 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-link::before { display: none; }
    .nav-cta { margin: 16px 12px 0; text-align: center; justify-content: center; }
    .hamburger { display: flex; }

    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-portrait { max-width: 340px; margin: 0 auto; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card:nth-child(2) { border-right: none; }
    .stat-card:nth-child(1), .stat-card:nth-child(2) { border-bottom: 1px solid rgba(201,169,97,0.15); padding-bottom: 40px; margin-bottom: 20px; }

    .priority-grid, .news-grid, .vision-pillars, .prog-grid { grid-template-columns: repeat(2, 1fr); }

    .leader-message, .const-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }

    .vh-inner { grid-template-columns: 1fr; }

    .timeline::before { left: 6px; }
    .tl-item { grid-template-columns: 1fr; gap: 10px; padding-left: 36px; }
    .tl-item::before { left: 2px; top: 10px; }
    .tl-year { text-align: left; padding-right: 0; font-size: 32px; }
    .tl-content { padding-left: 0; }

    .section-head { grid-template-columns: 1fr; gap: 24px; }

    .values-grid { grid-template-columns: repeat(2, 1fr); }

    .split-section { grid-template-columns: 1fr; }
    .split-media { min-height: 400px; }
    .split-text { padding: 60px 40px; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

    .masonry { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; padding: 60px 24px; }
    .mi.w8, .mi.w6, .mi.w5, .mi.w4, .mi.w7 { grid-column: span 3; }
    .mi.w3 { grid-column: span 2; }

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

@media (max-width: 680px) {
    :root { --nav-height: 72px; }
    .nav-inner, .container, .hero-grid, .vh-inner, .ph-inner-narrow, .ph-inner, .ch-inner { padding: 0 24px; }
    .section { padding: 80px 0; }
    .section-head { margin-bottom: 50px; }

    .priority-grid, .news-grid, .vision-pillars, .prog-grid, .stats-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    .priority-card { border-right: 1px solid var(--grey-soft); border-bottom: none; }
    .priority-grid .priority-card:last-child { border-bottom: 1px solid var(--grey-soft); }
    .stat-card { border-right: none; border-bottom: 1px solid rgba(201,169,97,0.15); padding: 30px 0; }
    .stat-card:last-child { border-bottom: none; }

    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 36px 28px; }
    .split-text { padding: 40px 24px; }

    .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; padding: 40px 16px; }
    .mi.w8, .mi.w6, .mi.w5, .mi.w4, .mi.w7, .mi.w3 { grid-column: span 1; }
    .mi.h3 { grid-row: span 2; }

    .gate-card { padding: 48px 28px; }

    .footer-top { grid-template-columns: 1fr; }

    .hero-lede { font-size: 15px; }
    .btn { padding: 14px 24px; font-size: 11px; }

    .tl-year { font-size: 26px; }
    .tl-title { font-size: 22px; }
}
