/* ===== NILESH RANE — DESIGN #6 ===== */
/* KONKAN COAST STORY-DRIVEN | Teal & Coral | Space Grotesk + Lora | Parallax + Wave Dividers */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --teal-950: #042f2e;
    --teal-900: #134e4a;
    --teal-800: #115e59;
    --teal-700: #0f766e;
    --teal-600: #0d9488;
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    --teal-300: #5eead4;
    --teal-100: #ccfbf1;
    --teal-50: #f0fdfa;
    --coral-500: #f97066;
    --coral-400: #fb7185;
    --coral-300: #fda4af;
    --sand: #faf8f5;
    --sand-dark: #f3f0eb;
    --white: #fff;
    --n50: #fafafa;
    --n100: #f5f5f5;
    --n200: #e5e5e5;
    --n300: #d4d4d4;
    --n500: #737373;
    --n600: #525252;
    --n700: #404040;
    --n800: #262626;
    --n900: #171717;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --tr: 0.35s ease;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Lora', serif;
    background: var(--sand);
    color: var(--n600);
    line-height: 1.8;
    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: 'Space Grotesk', sans-serif;
    color: var(--n900);
    font-weight: 700
}

.container {
    max-width: 1100px;
    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.95);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--n200)
}

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

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

.logo-t {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--n900)
}

.logo-t span {
    color: var(--teal-700)
}

.logo-b {
    background: var(--teal-700);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .48rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .14em
}

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

.nav-links a {
    color: var(--n500);
    font-family: 'Space Grotesk', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 6px;
    transition: var(--tr)
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal-800);
    background: var(--teal-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(--n800);
    border-radius: 4px;
    transition: var(--tr)
}

/* ===== IMMERSIVE HERO — fullscreen photo with parallax ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden
}

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

.hero-bg img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    will-change: transform
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 47, 46, 0.92) 0%, rgba(4, 47, 46, 0.5) 40%, rgba(4, 47, 46, 0.15) 100%)
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 80px
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    color: var(--teal-300);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 20px
}

.hero-eyebrow .pulse {
    width: 6px;
    height: 6px;
    background: var(--coral-500);
    border-radius: 50%;
    animation: pulse 2s ease infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: #fff;
    line-height: 1.06;
    margin-bottom: 20px;
    letter-spacing: -.03em
}

.hero h1 em {
    font-family: 'Lora', serif;
    font-style: italic;
    color: var(--coral-400);
    font-weight: 400
}

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

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

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: .65rem;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: .12em
}

.hero-scroll .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--coral-400), transparent);
    animation: scrollLine 2s ease infinite
}

@keyframes scrollLine {
    0% {
        opacity: 1;
        transform: scaleY(1)
    }

    50% {
        opacity: .4;
        transform: scaleY(.5)
    }

    100% {
        opacity: 1;
        transform: scaleY(1)
    }
}

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

.btn-coral {
    background: var(--coral-500);
    color: #fff;
    box-shadow: 0 4px 16px rgba(249, 112, 102, 0.25)
}

.btn-coral:hover {
    background: #e5645b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 112, 102, 0.35)
}

.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-teal {
    background: var(--teal-700);
    color: #fff
}

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

/* ===== WAVE DIVIDER ===== */
.wave-divider {
    position: relative;
    overflow: hidden;
    line-height: 0
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: auto
}

.wave-top {
    margin-bottom: -2px
}

.wave-bottom {
    margin-top: -2px
}

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

.sec-sand {
    background: var(--sand)
}

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

.sec-teal {
    background: var(--teal-900);
    color: rgba(255, 255, 255, 0.7)
}

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

.sec-dark {
    background: var(--teal-950);
    color: rgba(255, 255, 255, 0.7)
}

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    color: var(--teal-700);
    font-family: 'Space Grotesk', sans-serif;
    font-size: .65rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 14px
}

.sec-teal .eyebrow,
.sec-dark .eyebrow {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--teal-300)
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 12px;
    letter-spacing: -.02em
}

.section-desc {
    color: var(--n500);
    max-width: 540px;
    margin: 0 auto;
    font-size: 1rem
}

.sec-teal .section-desc,
.sec-dark .section-desc {
    color: rgba(255, 255, 255, 0.55)
}

/* ===== STORY CARDS (photo + text immersive blocks) ===== */
.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    align-items: stretch;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg)
}

.story.reverse {
    direction: rtl
}

.story.reverse>* {
    direction: ltr
}

.story-img {
    position: relative;
    overflow: hidden
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease
}

.story:hover .story-img img {
    transform: scale(1.05)
}

.story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
    background: var(--white)
}

.story-text .eyebrow {
    align-self: flex-start
}

.story-text h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    letter-spacing: -.01em
}

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

.story-text .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px
}

.chip {
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    color: var(--teal-700);
    padding: 4px 12px;
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .72rem;
    font-weight: 600
}

/* ===== PARALLAX PHOTO SECTION ===== */
.parallax-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden
}

.parallax-bg {
    position: absolute;
    inset: -20% 0;
    z-index: 0
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform
}

.parallax-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(4, 47, 46, 0.8)
}

.parallax-section .container {
    position: relative;
    z-index: 2
}

.parallax-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.p-stat {
    text-align: center;
    padding: 32px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: var(--tr)
}

.p-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px)
}

.p-stat .p-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block
}

.p-stat .p-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.p-stat .p-lbl {
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-family: 'Space Grotesk', sans-serif
}

/* ===== HIGHLIGHT CARDS ===== */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

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

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

.h-card-img {
    height: 200px;
    overflow: hidden
}

.h-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease
}

.h-card:hover .h-card-img img {
    transform: scale(1.07)
}

.h-card-body {
    padding: 24px
}

.h-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.h-card-body p {
    font-size: .85rem;
    color: var(--n500);
    line-height: 1.7
}

/* ===== TIMELINE (cinematic vertical) ===== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0
}

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

.tl-entry {
    display: flex;
    margin-bottom: 48px;
    position: relative
}

.tl-entry:nth-child(odd) {
    padding-right: calc(50% + 36px);
    text-align: right
}

.tl-entry:nth-child(even) {
    padding-left: calc(50% + 36px)
}

.tl-dot {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--coral-500);
    border: 3px solid var(--teal-900);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(249, 112, 102, 0.15)
}

.tl-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px
}

.tl-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    color: var(--coral-400);
    margin-bottom: 6px
}

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

.tl-card p {
    font-size: .82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7
}

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

.w-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--teal-600);
    transition: var(--tr)
}

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

.w-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--teal-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.w-card h3 {
    font-size: .95rem;
    margin-bottom: 6px
}

.w-card p {
    font-size: .84rem;
    color: var(--n500);
    line-height: 1.7
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.gal-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3
}

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

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

.gal-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 47, 46, 0.85), transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--tr)
}

.gal-item:hover .gal-ov {
    opacity: 1
}

.gal-ov h4 {
    color: #fff;
    font-size: .88rem;
    font-family: 'Space Grotesk', sans-serif
}

.gal-item.wide {
    grid-column: span 2
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(4, 47, 46, 0.95);
    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-x {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr)
}

.lb-x:hover {
    background: var(--coral-500);
    border-color: transparent
}

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

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

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

.fg label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    color: var(--n500);
    text-transform: uppercase;
    letter-spacing: .1em
}

.fg input,
.fg textarea {
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--n200);
    background: var(--white);
    color: var(--n800);
    font-family: 'Lora', serif;
    font-size: .92rem;
    transition: var(--tr);
    outline: none
}

.fg input:focus,
.fg textarea:focus {
    border-color: var(--teal-600);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.08)
}

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

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

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

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

.c-card h4 {
    font-size: .9rem;
    color: var(--n800);
    margin-bottom: 2px;
    font-family: 'Space Grotesk', sans-serif
}

.c-card p {
    color: var(--n500);
    font-size: .82rem;
    line-height: 1.5
}

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

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

.page-header .container {
    position: relative;
    z-index: 2
}

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

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

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

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: .78rem;
    font-family: 'Space Grotesk', sans-serif
}

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

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

/* ===== FOOTER ===== */
.footer {
    background: var(--teal-950);
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04)
}

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

.footer-left {
    color: rgba(255, 255, 255, 0.4);
    font-size: .78rem;
    font-family: 'Space Grotesk', sans-serif
}

.footer-right {
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Space Grotesk', sans-serif
}

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

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

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

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

.footer-social a:hover {
    background: var(--coral-500);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(249, 112, 102, 0.25)
}

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

/* ===== ANIMATIONS ===== */
.rv {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

.rv-l {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .7s ease, transform .7s ease
}

.rv-l.on {
    opacity: 1;
    transform: translateX(0)
}

.rv-r {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .7s ease, transform .7s ease
}

.rv-r.on {
    opacity: 1;
    transform: translateX(0)
}

.rv-s {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .6s ease, transform .6s ease
}

.rv-s.on {
    opacity: 1;
    transform: scale(1)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .story {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .story.reverse {
        direction: ltr
    }

    .story-img {
        height: 300px
    }

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

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

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

@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
    }

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

    .gal-item.wide {
        grid-column: span 1
    }

    .parallax-stats {
        grid-template-columns: 1fr 1fr
    }

    .timeline::before {
        left: 16px
    }

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

    .tl-dot {
        left: 16px
    }

    .section {
        padding: 64px 0
    }

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

@media(max-width:480px) {
    .hero h1 {
        font-size: 2.4rem
    }

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

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

    .parallax-stats {
        grid-template-columns: 1fr
    }
}