/* ===== MANJULA GAVIT — UNIQUE DESIGN #4 ===== */
/* MAROON & GOLD | Libre Baskerville + Nunito | Top-stripe cards | Diagonal hero */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
    --maroon-50: #fff1f2;
    --maroon-100: #ffe4e6;
    --maroon-200: #fecdd3;
    --maroon-500: #be123c;
    --maroon-600: #9f1239;
    --maroon-700: #881337;
    --maroon-800: #6b0f2a;
    --maroon-900: #4a0d1e;
    --gold-300: #fcd34d;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --pearl: #fef7f8;
    --pearl-2: #fdf2f4;
    --white: #ffffff;
    --g50: #fafafa;
    --g100: #f5f5f5;
    --g200: #e5e5e5;
    --g300: #d4d4d4;
    --g500: #737373;
    --g600: #525252;
    --g700: #404040;
    --g800: #262626;
    --g900: #171717;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10);
    --tr: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--pearl);
    color: var(--g600);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Libre Baskerville', serif;
    color: var(--g900);
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--tr);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--g200);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--g900);
}

.logo-name em {
    font-style: normal;
    color: var(--maroon-600);
}

.logo-tag {
    background: var(--maroon-600);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

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

.nav-links a {
    color: var(--g600);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--tr);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--maroon-700);
    background: var(--maroon-50);
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--g800);
    border-radius: 4px;
    transition: var(--tr);
}

/* ===== HERO — diagonal split ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--maroon-700);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--pearl), transparent);
    z-index: 3;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-left {
    flex: 1;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.hero-chip .chip-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-400);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero-title .accent {
    color: var(--gold-400);
    font-style: italic;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
}

.metric .metric-num {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.metric .metric-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-btns {
    display: flex;
    gap: 14px;
}

.hero-right {
    flex-shrink: 0;
}

.hero-portrait {
    width: 360px;
    height: 440px;
    border-radius: 24px 24px 24px 80px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--tr);
    border: none;
}

.btn-gold {
    background: var(--gold-500);
    color: #fff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
    background: var(--gold-600);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-maroon {
    background: var(--maroon-600);
    color: #fff;
}

.btn-maroon:hover {
    background: var(--maroon-700);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 96px 0;
}

.sec-pearl {
    background: var(--pearl);
}

.sec-white {
    background: var(--white);
}

.sec-maroon {
    background: var(--maroon-700);
    color: rgba(255, 255, 255, 0.8);
}

.sec-maroon h2,
.sec-maroon h3 {
    color: #fff;
}

.sec-blush {
    background: var(--pearl-2);
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.pill-tag {
    display: inline-block;
    background: var(--maroon-50);
    border: 1px solid var(--maroon-200);
    color: var(--maroon-600);
    font-size: 0.68rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.sec-maroon .pill-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--gold-300);
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--g500);
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.98rem;
}

.sec-maroon .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== TOP-STRIPE CARDS ===== */
.stripe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stripe-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--tr);
    position: relative;
}

.stripe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--maroon-600), var(--gold-500));
}

.stripe-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stripe-card-body {
    padding: 32px 24px;
}

.stripe-card .card-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.stripe-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.stripe-card p {
    font-size: 0.88rem;
    color: var(--g500);
    line-height: 1.7;
}

/* ===== SPLIT LAYOUT ===== */
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.duo-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.duo-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.5s ease;
}

.duo-img:hover img {
    transform: scale(1.04);
}

.duo-text h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}

.duo-text p {
    margin-bottom: 14px;
    line-height: 1.8;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tag-chip {
    background: var(--maroon-50);
    border: 1px solid var(--maroon-200);
    color: var(--maroon-600);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ===== STATS RIBBON ===== */
.stats-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.rib-item {
    text-align: center;
    padding: 36px 20px;
    border-right: 1px solid var(--g200);
}

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

.rib-item .rib-num {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--maroon-600);
    line-height: 1;
}

.rib-item .rib-label {
    font-size: 0.72rem;
    color: var(--g500);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

/* ===== ZIGZAG TIMELINE ===== */
.zz-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.zz-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold-400), transparent);
    transform: translateX(-50%);
}

.zz-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.zz-item:nth-child(odd) {
    padding-right: calc(50% + 32px);
    text-align: right;
}

.zz-item:nth-child(even) {
    padding-left: calc(50% + 32px);
}

.zz-dot {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold-400);
    border: 3px solid var(--maroon-700);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
}

.zz-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
}

.zz-year {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-400);
    margin-bottom: 6px;
}

.zz-card h3 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 6px;
}

.zz-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ===== CONSTITUENCY PAGE ===== */
.constituency-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--maroon-800), var(--maroon-700));
    position: relative;
    overflow: hidden;
}

.constituency-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06), transparent 70%);
    border-radius: 50%;
}

.constituency-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #fff;
    margin-bottom: 12px;
}

.constituency-hero h1 span {
    color: var(--gold-400);
}

.constituency-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.02rem;
    max-width: 520px;
    margin: 0 auto;
}

.info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.info-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-sm);
    font-size: 0.88rem;
    color: var(--g700);
}

.info-pill .pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--maroon-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===== WORK & ACHIEVEMENTS ===== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.work-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 18px;
    box-shadow: var(--shadow-md);
    transition: var(--tr);
    border-left: 4px solid var(--maroon-600);
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.work-num {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maroon-100);
    line-height: 1;
    min-width: 50px;
}

.work-info h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.work-info p {
    font-size: 0.85rem;
    color: var(--g500);
    line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 7px 20px;
    border-radius: 50px;
    border: 1px solid var(--g200);
    background: var(--white);
    color: var(--g600);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--tr);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--maroon-600);
    color: #fff;
    border-color: var(--maroon-600);
}

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

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-xs);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 13, 30, 0.85), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    opacity: 0;
    transition: var(--tr);
}

.gallery-item:hover .gallery-ov {
    opacity: 1;
}

.gallery-ov h4 {
    color: #fff;
    font-size: 0.92rem;
    font-family: 'Libre Baskerville', serif;
}

.gallery-ov p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--tr);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}

.lb-close:hover {
    background: var(--maroon-600);
    border-color: transparent;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fg label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--g600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fg input,
.fg textarea {
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--g200);
    background: var(--white);
    color: var(--g800);
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    transition: var(--tr);
    outline: none;
}

.fg input:focus,
.fg textarea:focus {
    border-color: var(--maroon-600);
    box-shadow: 0 0 0 3px rgba(159, 18, 57, 0.08);
}

.fg textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cs-card {
    background: var(--white);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--maroon-600);
}

.cs-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--maroon-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.cs-card h4 {
    font-size: 0.9rem;
    color: var(--g800);
    margin-bottom: 2px;
}

.cs-card p {
    color: var(--g500);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 140px 0 70px;
    text-align: center;
    background: linear-gradient(135deg, var(--maroon-800), var(--maroon-700));
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06), transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #fff;
    margin-bottom: 12px;
}

.page-header h1 span {
    color: var(--gold-400);
}

.page-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.02rem;
    max-width: 520px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--gold-400);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--maroon-900);
    padding: 32px 0;
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
}

.footer-right {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-right a {
    color: var(--gold-400);
    font-weight: 700;
    transition: var(--tr);
}

.footer-right a:hover {
    color: var(--gold-300);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 0 0;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.45);
    transition: var(--tr);
}

.footer-social a:hover {
    background: var(--gold-500);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.footer-social a svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* ===== ANIMATIONS ===== */
.ao {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ao.vis {
    opacity: 1;
    transform: translateY(0);
}

.ao-l {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ao-l.vis {
    opacity: 1;
    transform: translateX(0);
}

.ao-r {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ao-r.vis {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 36px;
    }

    .hero-metrics {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-portrait {
        width: 300px;
        height: 360px;
    }

    .duo,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .work-grid {
        grid-template-columns: 1fr;
    }

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

    .rib-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width:768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px;
        gap: 4px;
        transition: var(--tr);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .stripe-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .hero-metrics {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-portrait {
        width: 240px;
        height: 300px;
        border-radius: 16px 16px 16px 60px;
    }

    .zz-timeline::before {
        left: 16px;
    }

    .zz-item:nth-child(odd),
    .zz-item:nth-child(even) {
        padding-left: 52px;
        padding-right: 0;
        text-align: left;
    }

    .zz-dot {
        left: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .footer .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width:480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}