/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --gold-700: #b45309;
    --cream: #fefcf3;
    --cream-dark: #f8f5ec;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--gray-600);
    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,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--gray-900);
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(254, 252, 243, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

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

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-text span {
    color: var(--green-700);
}

.logo-badge {
    background: var(--green-700);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

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

.nav-links a {
    color: var(--gray-600);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
}

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

.nav-links a.active {
    color: var(--green-700);
    background: var(--green-50);
    font-weight: 600;
}

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

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

/* ===== HERO — fullscreen with overlay text ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--green-900);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 83, 45, 0.92) 0%, rgba(22, 101, 52, 0.7) 50%, rgba(21, 128, 61, 0.5) 100%);
}

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

.hero-content {
    flex: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green-200);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: normal;
    color: var(--gold-400);
    position: relative;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-400);
    border-radius: 2px;
    opacity: 0.4;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-stats-row {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.hero-stat-item .stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-item .stat-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.hero-portrait {
    flex-shrink: 0;
    width: 380px;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background: var(--gold-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--green-800);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline-w {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-green {
    background: var(--green-700);
    color: var(--white);
}

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

/* ===== SECTION HELPERS ===== */
.section {
    padding: 100px 0;
}

.section-light {
    background: var(--white);
}

.section-cream {
    background: var(--cream);
}

.section-green {
    background: var(--green-800);
    color: rgba(255, 255, 255, 0.8);
}

.section-green h2,
.section-green h3 {
    color: var(--white);
}

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

.section-tag {
    display: inline-block;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    color: var(--green-700);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.section-green .section-tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--green-200);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 14px;
}

.section-desc {
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.02rem;
}

.section-green .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

/* ===== FEATURE CARDS (white cards with left border) ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 28px;
    border-left: 4px solid var(--green-600);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.feature-card .card-emoji {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ===== ABOUT/SPLIT SECTION ===== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

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

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

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.split-text p {
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.tag-pill {
    background: var(--green-50);
    border: 1px solid var(--green-200);
    color: var(--green-700);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--green-700);
    border-radius: 16px;
    overflow: hidden;
}

.stats-bar .sbar-item {
    text-align: center;
    padding: 40px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-bar .sbar-item:last-child {
    border-right: none;
}

.sbar-item .sbar-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.sbar-item .sbar-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== TIMELINE (horizontal) ===== */
.timeline-h {
    display: flex;
    gap: 0;
    position: relative;
    overflow-x: auto;
    padding: 40px 0 20px;
}

.timeline-h::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.tl-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.tl-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold-400);
    border: 4px solid var(--green-800);
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
}

.tl-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-400);
    margin-bottom: 8px;
}

.tl-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
}

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

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

.filter-btn {
    padding: 8px 22px;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--green-700);
}

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

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 83, 45, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 0.95rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

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

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

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

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

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

.ach-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 3px solid var(--green-600);
}

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

.ach-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--green-100);
    line-height: 1;
    min-width: 55px;
}

.ach-info h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.ach-info p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-800);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

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

.c-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--green-600);
}

.c-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.c-card h4 {
    font-size: 0.95rem;
    color: var(--gray-800);
    margin-bottom: 3px;
}

.c-card p {
    color: var(--gray-500);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== VISION CARDS ===== */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.v-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 36px 28px;
    transition: var(--transition);
}

.v-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.v-card .card-emoji {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.v-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.v-card p {
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ===== INFOGRAPHIC SECTION ===== */
.infographic-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.infographic-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.infographic-details h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.infographic-details p {
    margin-bottom: 18px;
    line-height: 1.8;
}

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

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

.page-header h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 14px;
}

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

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

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

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

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

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

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

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

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

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

.footer-right a:hover {
    color: var(--gold-500);
    text-decoration: underline;
}

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

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

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

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

/* ===== ANIMATIONS ===== */
.anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.anim-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.anim-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-stats-row {
        justify-content: center;
    }

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

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

    .split-section,
    .infographic-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .stats-bar .sbar-item:nth-child(2) {
        border-right: none;
    }
}

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

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

    .nav-toggle {
        display: flex;
    }

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

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

    .hero-stats-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-portrait {
        width: 260px;
        height: 320px;
    }

    .timeline-h {
        flex-direction: column;
        gap: 32px;
    }

    .timeline-h::before {
        display: none;
    }

    .section {
        padding: 64px 0;
    }

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

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

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

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